Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pdxjohnny/hack
- Owner: pdxjohnny
- Created: 2015-07-14T06:21:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-14T06:37:03.000Z (over 9 years ago)
- Last Synced: 2024-03-16T06:51:34.954Z (8 months ago)
- Language: Python
- Size: 113 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)