mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-22 04:50:06 +00:00
update README
This commit is contained in:
parent
b190f5dd16
commit
062d8f1dd6
@ -18,7 +18,7 @@ Some notable features thus far:
|
|||||||
- [X] Persistence via Cron on Linux-based systems.
|
- [X] Persistence via Cron on Linux-based systems.
|
||||||
- [X] Persistence via Windows Registry.
|
- [X] Persistence via Windows Registry.
|
||||||
- [ ] Ability to relay socket connections to/from the victim's machine.
|
- [ ] 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:
|
- [ ] Simple configuration using CMake:
|
||||||
- [X] Setting keypairs (`-DLAIKA_PUBKEY=? -DLAIKA_PRIVKEY=?`, etc.)
|
- [X] Setting keypairs (`-DLAIKA_PUBKEY=? -DLAIKA_PRIVKEY=?`, etc.)
|
||||||
- [ ] Obfuscation modes
|
- [ ] Obfuscation modes
|
||||||
|
@ -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;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < sz; 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 */
|
buff[i++] = key; /* add the null terminator */
|
||||||
addPadding(buff, i);
|
addPadding(buff, i);
|
||||||
return buff;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MAKESKIDDATA(macro) \
|
#define MAKESKIDDATA(macro) \
|
||||||
|
Loading…
Reference in New Issue
Block a user