mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-21 12:40:04 +00:00
Cross-platform RAT, written in Modern C
CPunch
3316c77667
- for debug builds, the LAIKA_DEBUG_BUILD macro will be defined in lconfig.h - LAIKA_OBFUSCATE now controls the winobf IAT obfuscation as well |
||
---|---|---|
.github/workflows | ||
bot | ||
cnc | ||
lib | ||
libsodium@a606dc79ed | ||
shell | ||
tools | ||
.clang-format | ||
.gitignore | ||
.gitmodules | ||
CMakeLists.txt | ||
CONTRIBUTING.md | ||
LICENSE.md | ||
README.md | ||
server.ini | ||
shell.ini |
Laika
Laika is a simple cross-platform Remote Access Toolkit stack for educational purposes. It allows encrypted communication across a custom binary protocol. The bot client supports both Windows & Linux environments, while the shell & CNC server specifically target Linux environments. Laika is meant to be small and discreet, Laika believes in hiding in plain sight.
Some notable features thus far:
- Lightweight, the bot alone is 183kb (
MinSizeRel
) and uses very little resources minimizing Laika's footprint. - Authentication & packet encryption using LibSodium and a predetermined public CNC key. (generated with
bin/genKey
) - Server and Shell configuration through
.ini
files. - Ability to open shells remotely on the victim's machine.
- Persistence across reboot: (toggled with
-DLAIKA_PERSISTENCE=On
)- Persistence via Cron on Linux-based systems.
- Persistence via Windows Registry.
- Uses obfuscation techniques also seen in the wild (string obfuscation, tiny VMs executing sensitive operations, etc.)
- Simple configuration using CMake:
- Setting keypairs (
-DLAIKA_PUBKEY=? -DLAIKA_PRIVKEY=?
, etc.) - Obfuscation modes
- Setting keypairs (
How do I use this?
Please refer to the Wiki for any questions relating to deployment, compilation & setup.
Looking to contribute?
Read CONTRIBUTING.md