├── .gitignore ├── README.md ├── coder ├── bind_shell.py ├── call_exit_func.py ├── egghunter.py ├── exec_command.py ├── find_and_call.py ├── reverse_shell.py └── util.py ├── requirements.txt ├── runner └── __init__.py ├── stones ├── __init__.py └── replace_instruction.py ├── tests ├── test_bind_shell.py ├── test_egghunter.py ├── test_exec_command.py ├── test_replace_instructions.py ├── test_revese_shell.py └── test_util.py └── win_x86_shellcoder.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/README.md -------------------------------------------------------------------------------- /coder/bind_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/coder/bind_shell.py -------------------------------------------------------------------------------- /coder/call_exit_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/coder/call_exit_func.py -------------------------------------------------------------------------------- /coder/egghunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/coder/egghunter.py -------------------------------------------------------------------------------- /coder/exec_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/coder/exec_command.py -------------------------------------------------------------------------------- /coder/find_and_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/coder/find_and_call.py -------------------------------------------------------------------------------- /coder/reverse_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/coder/reverse_shell.py -------------------------------------------------------------------------------- /coder/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/coder/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/requirements.txt -------------------------------------------------------------------------------- /runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/runner/__init__.py -------------------------------------------------------------------------------- /stones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/stones/__init__.py -------------------------------------------------------------------------------- /stones/replace_instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/stones/replace_instruction.py -------------------------------------------------------------------------------- /tests/test_bind_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/tests/test_bind_shell.py -------------------------------------------------------------------------------- /tests/test_egghunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/tests/test_egghunter.py -------------------------------------------------------------------------------- /tests/test_exec_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/tests/test_exec_command.py -------------------------------------------------------------------------------- /tests/test_replace_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/tests/test_replace_instructions.py -------------------------------------------------------------------------------- /tests/test_revese_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/tests/test_revese_shell.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /win_x86_shellcoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ommadawn46/win-x86-shellcoder/HEAD/win_x86_shellcoder.py --------------------------------------------------------------------------------