pupy/README.md

120 lines
6.6 KiB
Markdown
Raw Normal View History

2015-09-21 20:24:27 +00:00
# Pupy
2016-01-23 16:05:41 +00:00
Pupy is an opensource, multi-platform (Windows, Linux, OSX, Android) 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.
2015-09-21 20:15:05 +00:00
## Features
2015-09-21 20:15:05 +00:00
- 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!
2015-10-30 22:34:08 +00:00
- 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
2015-10-30 22:34:08 +00:00
- 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
2016-01-19 19:14:39 +00:00
- 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
2015-10-30 22:20:37 +00:00
## Implemented Transports
2015-10-30 22:20:37 +00:00
- tcp_cleartext
- A good example to look at, it's a protocol that does nothing
- tcp_base64
- Another simple example
2015-10-30 22:20:37 +00:00
- 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/)
2015-09-21 20:15:05 +00:00
## 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
2015-10-08 17:36:37 +00:00
- migrate
2015-09-21 20:15:05 +00:00
- inter process architecture injection also works (x86->x64 and x64->x86)
2015-10-30 22:05:36 +00:00
- 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
2015-10-08 17:36:37 +00:00
- persistence
- screenshot
2016-01-23 16:05:41 +00:00
- Text to speach for Android to say stuff out loud
- webcam snapshot (Windows & Android)
2015-10-30 22:34:08 +00:00
- ~~to spy on your crush~~
- in memory execution of PE exe both x86 and x64!
2015-10-30 22:05:36 +00:00
- works very well with [mimitakz](https://github.com/gentilkiwi/mimikatz) :-)
2015-09-21 20:15:05 +00:00
- socks5 proxy
2016-01-19 19:14:39 +00:00
- local and remote port forwarding
2015-09-22 20:18:56 +00:00
- shellcode exec (thanks to @byt3bl33d3r)
2015-10-30 22:05:36 +00:00
- keylogger
- monitor keys and the titles of the windows the text is typed into, plus the clipboard! (thanks @golind for the updates)
2015-10-30 22:05:36 +00:00
- mouselogger:
- takes small screenshots around the mouse at each click and send them back to the server (thanks @golind)
2015-09-21 20:15:05 +00:00
2016-01-19 19:14:39 +00:00
##Installation
2016-01-24 12:57:46 +00:00
[Refer to the wiki](https://github.com/n1nj4sec/pupy/wiki/Installation)
2016-01-19 19:14:39 +00:00
##Documentation
2016-01-24 12:57:46 +00:00
[Refer to the wiki](https://github.com/n1nj4sec/pupy/wiki)
2015-09-21 20:50:01 +00:00
### 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")
2016-01-11 18:17:06 +00:00
#####interactive shells
2015-09-21 21:12:18 +00:00
![screenshot7](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/interactive_shell.png "screenshot7")
2016-01-11 18:17:06 +00:00
![screenshot7bis](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/interactive_shell2.png "screenshot7bis")
2015-09-21 21:12:18 +00:00
#####interactive python shell
![screenshot8](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/pyshell.png "screenshot8")
2015-10-08 17:36:37 +00:00
#####upload and run another PE exe from memory
![screenshot9](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/memory_exec.png "screenshot9")
2016-01-23 16:55:46 +00:00
#####screenshot of a android session
![screenshot9](https://github.com/n1nj4sec/pupy/raw/master/docs/screenshots/android.png "screenshot10")
2015-09-21 20:50:01 +00:00
2016-01-19 19:18:27 +00:00
## 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!