├── .gitignore ├── LICENSE ├── README.md ├── images ├── logo.jpg └── output.jpg ├── index.html ├── index.md ├── links.md ├── linux ├── bash.md ├── blind.md ├── bulk.md ├── persistance.md └── privesc.md ├── mdwiki-0.5.8 ├── GPLv3.txt ├── LICENSE.txt ├── README.md ├── mdwiki-debug.html ├── mdwiki-slim.html └── mdwiki.html ├── mobile ├── android.md └── ios.md ├── msf ├── auxiliary.md ├── exploit.md ├── meterpreter.md ├── post.md ├── railgun.md └── tools.md ├── navigation.md ├── osx ├── bash.md ├── blind.md ├── bulk.md ├── persistance.md └── privesc.md ├── otheros ├── as400.md ├── cisco.md ├── juniper.md └── zos.md ├── references ├── internet_mssql.txt └── rosetta.htm ├── scripting ├── NodeJS.md ├── perl.md ├── python.md └── ruby.md └── windows ├── autostart.md ├── binary.md ├── blind.md ├── cmd.md ├── cover.md ├── files.md ├── find_files.md ├── mssql.md ├── persistance.md ├── powershell.md ├── privesc.md ├── remote.md ├── uac.md ├── windows_cmd_config.md └── windows_cmd_network.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/README.md -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /images/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/images/output.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/index.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/index.md -------------------------------------------------------------------------------- /links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/links.md -------------------------------------------------------------------------------- /linux/bash.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /linux/blind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/linux/blind.md -------------------------------------------------------------------------------- /linux/bulk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/linux/bulk.md -------------------------------------------------------------------------------- /linux/persistance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/linux/persistance.md -------------------------------------------------------------------------------- /linux/privesc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/linux/privesc.md -------------------------------------------------------------------------------- /mdwiki-0.5.8/GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mdwiki-0.5.8/GPLv3.txt -------------------------------------------------------------------------------- /mdwiki-0.5.8/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mdwiki-0.5.8/LICENSE.txt -------------------------------------------------------------------------------- /mdwiki-0.5.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mdwiki-0.5.8/README.md -------------------------------------------------------------------------------- /mdwiki-0.5.8/mdwiki-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mdwiki-0.5.8/mdwiki-debug.html -------------------------------------------------------------------------------- /mdwiki-0.5.8/mdwiki-slim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mdwiki-0.5.8/mdwiki-slim.html -------------------------------------------------------------------------------- /mdwiki-0.5.8/mdwiki.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mdwiki-0.5.8/mdwiki.html -------------------------------------------------------------------------------- /mobile/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mobile/android.md -------------------------------------------------------------------------------- /mobile/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/mobile/ios.md -------------------------------------------------------------------------------- /msf/auxiliary.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /msf/exploit.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /msf/meterpreter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/msf/meterpreter.md -------------------------------------------------------------------------------- /msf/post.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /msf/railgun.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /msf/tools.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/navigation.md -------------------------------------------------------------------------------- /osx/bash.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /osx/blind.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /osx/bulk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/osx/bulk.md -------------------------------------------------------------------------------- /osx/persistance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/osx/persistance.md -------------------------------------------------------------------------------- /osx/privesc.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /otheros/as400.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /otheros/cisco.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /otheros/juniper.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /otheros/zos.md: -------------------------------------------------------------------------------- 1 | # Place Holder 2 | 3 | Content coming. Feel free to submit ;-) 4 | -------------------------------------------------------------------------------- /references/internet_mssql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/references/internet_mssql.txt -------------------------------------------------------------------------------- /references/rosetta.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/references/rosetta.htm -------------------------------------------------------------------------------- /scripting/NodeJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/scripting/NodeJS.md -------------------------------------------------------------------------------- /scripting/perl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/scripting/perl.md -------------------------------------------------------------------------------- /scripting/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/scripting/python.md -------------------------------------------------------------------------------- /scripting/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/scripting/ruby.md -------------------------------------------------------------------------------- /windows/autostart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/autostart.md -------------------------------------------------------------------------------- /windows/binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/binary.md -------------------------------------------------------------------------------- /windows/blind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/blind.md -------------------------------------------------------------------------------- /windows/cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/cmd.md -------------------------------------------------------------------------------- /windows/cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/cover.md -------------------------------------------------------------------------------- /windows/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/files.md -------------------------------------------------------------------------------- /windows/find_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/find_files.md -------------------------------------------------------------------------------- /windows/mssql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/mssql.md -------------------------------------------------------------------------------- /windows/persistance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/persistance.md -------------------------------------------------------------------------------- /windows/powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/powershell.md -------------------------------------------------------------------------------- /windows/privesc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/privesc.md -------------------------------------------------------------------------------- /windows/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/remote.md -------------------------------------------------------------------------------- /windows/uac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/uac.md -------------------------------------------------------------------------------- /windows/windows_cmd_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/windows_cmd_config.md -------------------------------------------------------------------------------- /windows/windows_cmd_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubix/post-exploitation-wiki/HEAD/windows/windows_cmd_network.md --------------------------------------------------------------------------------