Bonus

Bonus


Delayed execution

All commands that you send to bots are saved on the server before being sent and then deleted. This can be used for deferred commands. Let's take an "offline bot" and open it cmd. In the open console write the command start http://site.com and submit it. Then the control panel can be closed. As soon as the bot goes online, it will receive the command and execute it.

This applies not only to CMD, but also to all other functions.


"External" crashes when launching its shellcode

Possible situation: when loading shellcode and after execution, the bot crashes. This is because they run on a separate thread. And if your shell doesn't start all the time (never exits), then exiting the program (return;) means completely exiting the program. Use "_endthread(); " at the end of the main function.


Hidden dll run

There are many ways to run a DLL. From injecting into a third party process to executing run32 from the command line. Let's consider a way to launch using a COM server.

Create a .ps1 script to register a new COM server. Open the bot's file manager and load this file and dll file into it in the path you need.

To run the dll, the user must open explorer and enter shell ::: {55555555-5555-5555-5555-555555555555}
The second option is to run it in the same way from CMD: start shell ::: {55555555-5555-5555-5555-555555555555}


This page will be updated. More information about Ripter 0.1

Report Page