pupy/README.md

105 lines
4.2 KiB
Markdown
Raw Normal View History

2015-09-21 20:24:27 +00:00
# Pupy
2018-08-17 04:36:54 +00:00
2018-10-31 10:55:40 +00:00
[![Build Status](https://api.travis-ci.org/n1nj4sec/pupy.svg?branch=unstable)](https://travis-ci.org/n1nj4sec/pupy)
2018-09-07 19:07:58 +00:00
2018-10-31 10:55:40 +00:00
## Installation
2018-09-07 19:07:58 +00:00
2018-10-31 10:55:40 +00:00
Installation instructions are on the wiki, in addition to all other documentation. For maximum compatibility, it is recommended to use Docker Compose.
[Refer to the wiki](https://github.com/n1nj4sec/pupy/wiki/Installation)
## Description
2018-08-17 04:36:54 +00:00
2018-10-31 10:55:40 +00:00
Pupy is a cross-platform, multi function RAT and post-exploitation tool mainly written in python. It features an all-in-memory execution guideline and leaves a very low footprint. Pupy can communicate using multiple transports, migrate into processes using reflective injection, and load remote python code, python packages and python C-extensions from memory.
2015-09-21 20:15:05 +00:00
2018-10-31 10:55:40 +00:00
## Features
2018-08-17 15:41:28 +00:00
2018-10-31 10:55:40 +00:00
- Windows payload can load the entire Python interpreter from memory using a reflective DLL.
- Pupy does not touch the disk.
2018-10-31 10:55:40 +00:00
- Can be packed into a single .py file and run without any dependencies other than the python standard library on all OSes.
- PyCrypto gets replaced by pure Python AES & RSA implementations when unavailable.
2018-08-17 15:41:28 +00:00
2018-10-31 10:55:40 +00:00
- Reflectively migrate into other processes.
- Remotely import pure python packages (.py, .pyc) and compiled python C extensions (.pyd, .so) from memory.
- Imported python modules do not touch the disk.
2015-10-30 22:20:37 +00:00
2018-10-31 10:55:40 +00:00
- Easily extensible, modules are simple to write and are sorted by os and category.
2018-08-17 15:41:28 +00:00
2018-10-31 10:55:40 +00:00
- Modules can directly access python objects on the remote client using [rpyc](https://github.com/tomerfiliba/rpyc).
2018-08-17 15:41:28 +00:00
2018-10-31 10:55:40 +00:00
- Access remote objects interactively from the pupy shell and get auto-completion of remote attributes.
- Communication transports are modular and stackable. Exfiltrate data using HTTP over HTTP over AES over XOR, or any combination of the available transports.
2015-09-21 20:50:01 +00:00
2018-10-31 10:55:40 +00:00
- Communicate using obfsproxy [pluggable transports.](https://www.torproject.org/docs/pluggable-transports.html.en)
2018-10-31 10:55:40 +00:00
- Execute noninteractive commands on multiple hosts at once.
- Commands and scripts running on remote hosts are interruptible.
- Auto-completion for commands and arguments.
- Custom config can be defined: command aliases, modules. automatically run at connection, etc.
- Multiple Target Platforms:
| Platform | Support Status |
|---|---|
Windows XP | Supported
Windows 7 | Supported
Windows 8 | Supported
Windows 10 | Supported
Linux | Supported
Mac OSX | Limited Support
Android | Limited Support
## Documentation
All documentation can be found on the wiki.
[Refer to the wiki](https://github.com/n1nj4sec/pupy/wiki)
2015-09-21 20:50:01 +00:00
2016-01-19 19:18:27 +00:00
## FAQ
2016-12-30 21:47:03 +00:00
2018-08-17 15:41:28 +00:00
> Does the server work on windows?
2016-12-30 21:47:03 +00:00
2018-10-31 10:55:40 +00:00
Pupy has not been tested on Windows. Theoretically, it should work on any platform that supports Docker and Docker Compose. However, you will need to adapt the Docker Compose installation instructions for the Windows platform.
> I can't install Pupy. The installation fails.
1. Please refer to the wiki. It is possible that your answer is there.
2. Search the Github issues and see if your issue was already solved.
3. If you issue was not solved, open a new issue following the [issue guidelines](https://github.com/n1nj4sec/pupy/wiki/Issue-Guidelines).
2016-12-30 21:47:03 +00:00
2018-10-31 10:55:40 +00:00
If you do not follow the steps, you issue will be closed.
2016-12-30 21:47:03 +00:00
2018-10-31 10:55:40 +00:00
> Android and/or Mac OSX payloads and modules don't work.
2016-12-30 21:47:03 +00:00
2018-10-31 10:55:40 +00:00
Pupy has _limited_ support for Android and OSX. Support for these platforms is not well maintained and may break intermittently. Some modules (i.e. keylogger) may be missing for these platforms.
2016-01-19 19:18:27 +00:00
2018-08-17 15:41:28 +00:00
## Development
2016-01-19 19:18:27 +00:00
2018-08-17 15:41:28 +00:00
If some of you want to participate to pupy development, don't hesitate ! All help is greatly appreciated and I will review every pull request.
2016-01-19 19:18:27 +00:00
2018-10-12 10:42:23 +00:00
Also there is small [note](https://github.com/n1nj4sec/pupy/wiki/Development) about development. Please run flake8 before doing any commits.
2018-08-17 15:41:28 +00:00
File with config is [here](pupy/tox.ini).
2016-01-19 19:18:27 +00:00
## Contact
2018-10-31 10:55:40 +00:00
| Platform | Contact Info |
|---|---|
Email | contact@n1nj4.eu
Twitter | https://twitter.com/n1nj4sec
2018-08-17 15:41:28 +00:00
This project is a [personal development](https://en.wikipedia.org/wiki/Personal_development), please respect its philosophy and don't use it for evil purposes!
2016-01-19 19:18:27 +00:00
2017-03-25 12:18:55 +00:00
## Special thanks
2017-02-10 22:39:51 +00:00
2018-08-17 15:41:28 +00:00
Special thanks to all contributors that helps me improve pupy and make it an even better tool ! :)
2018-10-31 10:55:40 +00:00
TAGS: ((Note: Remove this.)
post exploitation framework
RAT
remote administration tool
)