Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pdxjohnny/hack

I hear you like shellcode
https://github.com/pdxjohnny/hack

Last synced: about 1 month ago
JSON representation

I hear you like shellcode

Awesome Lists containing this project

README

        

Shellcode Generator
---

Here is how one would create the shell code that launches python
```bash
python shellcode_gen.py "/usr/bin/python" > sh.s
source make.sh
./build/sh
```

Or of course bash, because why settle for sh
```bash
python shellcode_gen.py "/bin/bash" > sh.s
source make.sh
./build/sh
```

The build executable and source assembly file can be changed in make.sh

To Do
---
Add arguments to launched programs!

Helpful links
---
1. http://www.tenouk.com/Bufferoverflowc/Bufferoverflow6.html
2. http://insecure.org/stf/smashstack.html
3. https://www.offensive-security.com/metasploit-unleashed/binary-payloads/
4. https://gist.github.com/pdxjohnny/05439e9c54cbd04c0686 (oringinal of this)