├── LICENSE ├── README.rst ├── bin ├── compile_pwnd_sh.sh └── pwnd.sh └── pwnd ├── _bootstrap.bash ├── _pwnd.bash ├── assets └── priv_keys.bash ├── c2 ├── bindshell.bash └── reverseshell.bash ├── exfiltration └── over_socket.bash ├── persistence └── rootshell.bash └── reconnaissance └── portscanner.bash /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/README.rst -------------------------------------------------------------------------------- /bin/compile_pwnd_sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/bin/compile_pwnd_sh.sh -------------------------------------------------------------------------------- /bin/pwnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/bin/pwnd.sh -------------------------------------------------------------------------------- /pwnd/_bootstrap.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/_bootstrap.bash -------------------------------------------------------------------------------- /pwnd/_pwnd.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/_pwnd.bash -------------------------------------------------------------------------------- /pwnd/assets/priv_keys.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/assets/priv_keys.bash -------------------------------------------------------------------------------- /pwnd/c2/bindshell.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/c2/bindshell.bash -------------------------------------------------------------------------------- /pwnd/c2/reverseshell.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/c2/reverseshell.bash -------------------------------------------------------------------------------- /pwnd/exfiltration/over_socket.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/exfiltration/over_socket.bash -------------------------------------------------------------------------------- /pwnd/persistence/rootshell.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/persistence/rootshell.bash -------------------------------------------------------------------------------- /pwnd/reconnaissance/portscanner.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/pwndsh/HEAD/pwnd/reconnaissance/portscanner.bash --------------------------------------------------------------------------------