Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/7etsuo/shellcode-encoder
xorencode.c encode your shellcode
https://github.com/7etsuo/shellcode-encoder
exploit-development exploitation hacking shellcode shellcode-encoder
Last synced: 11 days ago
JSON representation
xorencode.c encode your shellcode
- Host: GitHub
- URL: https://github.com/7etsuo/shellcode-encoder
- Owner: 7etsuo
- Created: 2022-12-10T08:25:53.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T08:31:16.000Z (almost 2 years ago)
- Last Synced: 2024-05-20T23:08:17.926Z (6 months ago)
- Topics: exploit-development, exploitation, hacking, shellcode, shellcode-encoder
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# shellcode-encoder
[email protected]_xorencode.c - XOR encode your shellcode._
> Generates two files - xorshellcode.asm and xorshellcode.c
> - xorshellcode.c is a C file that can be compiled and executed to test your shellcode.
> - xorshellcode.asm is an assembly file to be used in your exploit.Usage:
```bash
make
make clean
```Usage without Makefile:
```bash
gcc xorencode.c -o xorencode
./xorencode
```Test your shellcode after it is generated:
```bash
gcc -g -z execstack -fno-stack-protector -no-pie xorshellcode.c -o xorshellcode
./xorshellcode
```