forked from NtDallas/Ulfberht
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,32 @@ | ||
# Ulfberht | ||
|
||
Shellcode loader | ||
|
||
Features : | ||
|
||
- Indirect syscall. | ||
- Module stomping. | ||
- Load a stomped module using APC. | ||
- Execute the payload with a direct jump (jmp) without creating a new thread. | ||
- API hashing implemented using the DJB2 algorithm. | ||
- Payload encrypted with RC4 and encoded in UUID format, implemented directly in the loader without loading rpcrt4.dll. | ||
- No CRT is used. | ||
|
||
How to use : | ||
|
||
``` | ||
python3 utils.py C:\Path\To\beacon.bin | ||
``` | ||
|
||
Copy the output in payload.h and build the project | ||
|
||
NB : | ||
|
||
- If your shellcode lacks evasion features (e.g., Cobalt Strike without UDRL), it can be detected by AV/EDR | ||
|
||
Credit : | ||
|
||
- https://www.x86matthew.com/view_post?id=writeprocessmemory_apc | ||
- https://institute.sektor7.net/ | ||
- https://github.com/trickster0/TartarusGate | ||
- [reactos](https://reactos.org/) |