├── .gitignore ├── KNOWN_ISSUES ├── LICENSE ├── README.md ├── bin └── shellpop ├── extras ├── how-to-install-and-use.txt └── shell_to_meterpreter.rb ├── img ├── handler-meterpreter.gif ├── handler.gif ├── img-ipfuscation-example.JPG ├── img-random-variables.JPG ├── img-shell-autocomplete.JPG ├── img-shell-example-01.JPG ├── img-shell-example-02.JPG ├── img-shell-example-03.JPG ├── img-shell-example-04.JPG ├── img-shell-example-05.JPG ├── img-shell-example-06.JPG ├── img-shell-example-07.JPG ├── img-shell-example-08.JPG ├── img-shell-example-09.JPG ├── img-shell-help.JPG ├── img-shell-list.JPG ├── img-small-obfuscation.JPG └── stager.gif ├── requirements.txt ├── setup.py └── src ├── __init__.py ├── binary.py ├── bind.py ├── classes.py ├── encoders.py ├── handlers.py ├── obfuscators.py ├── reverse.py └── stagers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/.gitignore -------------------------------------------------------------------------------- /KNOWN_ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/KNOWN_ISSUES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/README.md -------------------------------------------------------------------------------- /bin/shellpop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/bin/shellpop -------------------------------------------------------------------------------- /extras/how-to-install-and-use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/extras/how-to-install-and-use.txt -------------------------------------------------------------------------------- /extras/shell_to_meterpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/extras/shell_to_meterpreter.rb -------------------------------------------------------------------------------- /img/handler-meterpreter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/handler-meterpreter.gif -------------------------------------------------------------------------------- /img/handler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/handler.gif -------------------------------------------------------------------------------- /img/img-ipfuscation-example.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-ipfuscation-example.JPG -------------------------------------------------------------------------------- /img/img-random-variables.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-random-variables.JPG -------------------------------------------------------------------------------- /img/img-shell-autocomplete.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-autocomplete.JPG -------------------------------------------------------------------------------- /img/img-shell-example-01.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-01.JPG -------------------------------------------------------------------------------- /img/img-shell-example-02.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-02.JPG -------------------------------------------------------------------------------- /img/img-shell-example-03.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-03.JPG -------------------------------------------------------------------------------- /img/img-shell-example-04.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-04.JPG -------------------------------------------------------------------------------- /img/img-shell-example-05.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-05.JPG -------------------------------------------------------------------------------- /img/img-shell-example-06.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-06.JPG -------------------------------------------------------------------------------- /img/img-shell-example-07.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-07.JPG -------------------------------------------------------------------------------- /img/img-shell-example-08.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-08.JPG -------------------------------------------------------------------------------- /img/img-shell-example-09.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-example-09.JPG -------------------------------------------------------------------------------- /img/img-shell-help.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-help.JPG -------------------------------------------------------------------------------- /img/img-shell-list.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-shell-list.JPG -------------------------------------------------------------------------------- /img/img-small-obfuscation.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/img-small-obfuscation.JPG -------------------------------------------------------------------------------- /img/stager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/img/stager.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyperclip 2 | netifaces 3 | argcomplete -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/binary.py -------------------------------------------------------------------------------- /src/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/bind.py -------------------------------------------------------------------------------- /src/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/classes.py -------------------------------------------------------------------------------- /src/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/encoders.py -------------------------------------------------------------------------------- /src/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/handlers.py -------------------------------------------------------------------------------- /src/obfuscators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/obfuscators.py -------------------------------------------------------------------------------- /src/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/reverse.py -------------------------------------------------------------------------------- /src/stagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x00-0x00/ShellPop/HEAD/src/stagers.py --------------------------------------------------------------------------------