# Pupy Pupy is an opensource, multi-platform Remote Administration Tool with an embedded Python interpreter, allowing its modules to load python packages from memory and transparently access remote python objects. Pupy can communicate using different transports and have a bunch of cool features & modules. On Windows, Pupy uses reflective dll injection and leaves no traces on disk. ## Features - On windows, the Pupy payload is compiled as a reflective DLL and the whole python interpreter is loaded from memory. Pupy does not touch the disk :) - Pupy can reflectively migrate into other processes - Pupy can remotely import, from memory, pure python packages (.py, .pyc) and compiled python C extensions (.pyd). The imported python modules do not touch the disk. (.pyd mem import currently work on Windows only, .so memory import is not implemented) - Modules are quite simple to write and pupy is easily extensible - A lot of awesome modules are already implemented! - Pupy uses [rpyc](https://github.com/tomerfiliba/rpyc) and a module can directly access python objects on the remote client - We can also access remote objects interactively from the pupy shell and you even get auto-completion of remote attributes! - Communication transports are modular and pupy can communicate using obfsproxy [pluggable transports](https://www.torproject.org/docs/pluggable-transports.html.en) - All the non interactive modules can be dispatched to multiple hosts in one command - Multi-platform (tested on windows 7, windows xp, kali linux, ubuntu, osx) - Modules can be executed as background jobs and their output be retrieved later - Commands and scripts running on remote hosts are interruptible - Auto-completion for commands and arguments - Nice colored output :-) - Command aliases can be defined in the config - Interactive python shells with auto-completion on the all in memory remote python interpreter can be opened - Interactive shells (cmd.exe, /bin/bash, ...) can be opened remotely. Remote shells on Unix clients have a real tty with all keyboard signals working fine just like a ssh shell - Pupy can execute PE exe remotely and from memory (cf. ex with mimikatz) - tons of other features, check out the implemented modules ## Implemented Transports - tcp_cleartext - A good example to look at, it's a protocol that does nothing - tcp_base64 - Another simple example - tcp_ssl (the default one) - obfs3 - [A protocol to keep a third party from telling what protocol is in use based on message contents](https://gitweb.torproject.org/pluggable-transports/obfsproxy.git/tree/doc/obfs3/obfs3-protocol-spec.txt) - scramblesuit - [A Polymorphic Network Protocol to Circumvent Censorship](http://www.cs.kau.se/philwint/scramblesuit/) ## Implemented Launchers Launchers allow pupy to run custom actions before starting the reverse connection - simple - Just connect back - auto_proxy - Retrieve a list of possible SOCKS/HTTP proxies and try each one of them. Proxy retriaval methods are: registry, WPAD requests, gnome settings, HTTP_PROXY env variable ## Implemented Modules - migrate - inter process architecture injection also works (x86->x64 and x64->x86) - command execution - interactive shell (cmd.exe, /bin/sh, /bin/bash, ...) - tty allocation is well supported on target running a unix system. Just looks like a ssh shell - interactive python shell - download - upload - persistence - screenshot - webcam snapshot - ~~to spy on your crush~~ - in memory execution of PE exe both x86 and x64! - works very well with [mimitakz](https://github.com/gentilkiwi/mimikatz) :-) - socks5 proxy - local and remote port forwarding - shellcode exec (thanks to @byt3bl33d3r) - keylogger - monitor keys and the titles of the windows the text is typed into, plus the clipboard! (thanks @golind for the updates) - mouselogger: - takes small screenshots around the mouse at each click and send them back to the server (thanks @golind) ##Installation [Check out the wiki !](https://github.com/n1nj4sec/pupy/wiki/Installation) ##Documentation [Check out the wiki !](https://github.com/n1nj4sec/pupy/wiki) ### Some screenshots #####list connected clients ![screenshot1](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/scr1.png "screenshot1") #####help ![screenshot3](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/help.png "screenshot3") #####execute python code on all clients ![screenshot2](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/scr2.png "screenshot2") #####execute a command on all clients, exception is retrieved in case the command does not exists ![screenshot4](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/scr3.png "screenshot4") #####use a filter to send a module only on selected clients ![screenshot5](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/filters.png "screenshot5") #####migrate into another process ![screenshot6](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/migrate.png "screenshot6") #####interactive shells ![screenshot7](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/interactive_shell.png "screenshot7") ![screenshot7bis](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/interactive_shell2.png "screenshot7bis") #####interactive python shell ![screenshot8](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/pyshell.png "screenshot8") #####upload and run another PE exe from memory ![screenshot9](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/memory_exec.png "screenshot9") ##Roadmap and ideas Some ideas without any priority order - [X] ~~make the PE memory execution works interactively~~ - [X] ~~handle tty in interactive shell~~ - [X] ~~exfiltration through obfsproxy obfuscated network stream?~~ - [X] ~~webcam snapshots~~ - [ ] bind payloads instead of reverse - [ ] make the network transports stackable (for example to encapsulate SSL over scramblesuit) - [ ] make the python compiled C extension load from memory on linux - [ ] make the migrate modules works on linux - [ ] add offline options to payloads like enable/disable certificate checking, embed offline modules (persistence, keylogger, ...), etc... - [X] add scapy support in windows :D (that would be fun) - [ ] then make some network attack/sniffing tools modules using scapy - [ ] work on stealthiness under unix systems - [ ] mic recording - [ ] socks5 udp support - [X] remote port forwarding - [X] add a wiki and write some documentation - [ ] split the README into the wiki - [ ] The backdoor factory? - [ ] Impacket? - [X] add auto-completion to the pyshell module - [X] support for https & socks proxy - [ ] HTTP transport - [ ] UDP transport - [ ] DNS transport - [ ] ICMP transport - [ ] bypass UAC module - [ ] privilege elevation module - ... - other cool ideas? ## FAQ > Does the server work on windows? Pupy server works best on linux. The server on windows has not been really tested and there is probably a lot of bugs. I try my best to code in a portable way but I don't always find the time to fix everything. If you find the courage to patch non-portable code, I will gladly accept pull requests! :) > I can't install it, how does it work? Have a look at the Installation section in the wiki > I was wondering if you had a BTC address I could send a tip over to ! Sure, here you go :) Bitcoin address: 12BKKN81RodiG9vxJn34Me9ky19ArqNQxC > hey c4n y0u add a DDOS module plzz? No. ## Contact by mail: contact@n1nj4.eu on Twitter: [Follow me on twitter](https://twitter.com/n1nj4sec) If some of you want to participate or send me a feedback, don't hesitate :-) This project is a personal project, please respect its philosophy and don't use it for evil purposes!