CrunchRAT currently supports the following features:
- File upload
- File download
- Command execution
It is currently single-threaded (only one task at a time), but multi-threading (or multi-tasking) is currently in the works. Additional features will be included at a later date.
Server
The server-side of the RAT uses PHP and MySQL. The server-side of the RAT has been tested and works on the following:
- Ubuntu 15.10 (Desktop or Server edition)
- Ubuntu 16.04 (Desktop or Server edition)
Once the latest RAT code has been downloaded, there will be three directories:
- Client - Contains implant code (ignore for the this section)
- Server - Contains server code
- Setup - Contains setup files
Dependencies Setup
- Within the
Setupdirectory, there are two dependencies setup shell scripts. If you are using Ubuntu 15.10 runsh 15_10_dependencies.sh, and if you're using Ubuntu 16.04 runsh 16_04_dependencies.sh. Note: This needs to be run as root. Failure to run with root privileges will result in an error. - When asked for a new MySQL root password, please choose one that is complex. This information is needed at a later step.
HTTPS Setup
- CrunchRAT uses a self-signed certificate to securely communicate between the server and implant. Run the
https_setup.shshell script with theSetupdirectory to automate the HTTPS setup. Note: This needs to be run as root. Failure to run with root privileges will result in an error. When asked to fill out the certificate information (Country Name, etc), please fill out all information. Snort rules already exist to alert on the dummy OpenSSL certificates. Don't be that guy that gets flagged by not filling out this information.
Database Setup
- Run the
database_setup.shshell script within theSetupdirectory to setup the MySQL database. - CrunchRAT creates a default RAT account with the
admin:changemecredentials. Please log into the web end of the RAT and change the default password. Once logged into the web end of the RAT, go toAccount Management-->Change Passwordto successfully change the default password to something more complex. Additional RAT users can be provisioned usingAccount Management-->Add Users.
Miscellaneous Setup
- Copy all files from the
Serverdirectory to the webroot. - You will want to create a
downloadsdirectory as well. Note: It is absolutely critical that you don't put this folder in the webroot. I typically create this directory in the/home/<USERNAME>directory. You will want to make sure thatwww-datacan access this directory with the following commandsudo chown www-data:www-data downloads. This directory will store all of the files downloaded from the infected system(s). - In the webroot, open the
config/config.phpfile. This is the main RAT configuration file. Make sure that you update all of the variables (downloadsPath, dbUser, dbPass, etc) to match your environment.
Client
CrunchRAT is written in C# for simplicity. The C# binary does not have a persistence mechanism in place, but plans to write a C++ stager are currently in the works.
Targeted Framework: .NET Framework 3.5 (enabled by default on Windows 7 systems)
- Create a new console project in Visual Studio
- Copy implant.cs code from
Clientdirectory and add it to the project. - Change
Output TypetoWindows Application(this will hide the command window) (Project-->Properties-->Output Type). - Make sure
Target Frameworkis.NET Framework 3.5. - In the actual code, there will be a variable called
c2- Change this variable to the IP address or domain name of the C2 server - Compile and your implant executable is ready to run.
