├── LICENSE ├── README.md ├── book_meterpreter_scripts ├── gather.rb ├── railgun_demo.rb └── urlmon.rb ├── book_non-msf ├── Chapter-1 │ └── 37292.c ├── Chapter-11 │ ├── 8081.cna │ ├── bind.cna │ ├── heartbeat.cna │ ├── keylogger_menu.cna │ └── ready.cna ├── Chapter-7 │ └── arduino_backdoor.ino └── Chapter-9 │ ├── decoder_stub.cpp │ └── encoder.cpp ├── book_resource_scripts └── chapter-8 │ ├── multi_scr.rc │ ├── multi_script.rc │ ├── resource_complete │ └── resource_complete2 ├── modules ├── auxiliary │ ├── auth │ │ └── Chapter-2 │ │ │ └── ssh_bruteforce.rb │ └── scanner │ │ └── Chapter-2 │ │ └── ftp_scanner.rb ├── exploits │ ├── chapter-1 │ │ └── 43519.rb │ ├── chapter-3 │ │ ├── bof-server.rb │ │ ├── easy-filesharing.rb │ │ └── rop-example.rb │ └── chapter-4 │ │ ├── bsplayer.rb │ │ ├── pcman.rb │ │ └── phputility.rb └── post │ ├── chapter-10 │ └── CleanTracks.rb │ └── chapter-2 │ ├── drive_disable.rb │ └── foxmail_decrypt.rb ├── msfrun.sh └── non_book_modules ├── Apex_Wordpress_Detector.rb ├── DVWA-SQL-INJECTION-PAWNAGE.rb ├── DVWA-SQLi-2-RCE.rb ├── Wordpress-1-Version-Detect.rb ├── Wordpress-2-Version-Detect-Refined.rb ├── Wordpress-3-User-Exists.rb ├── db_autopwn.rb ├── easy_chat_2point2.rb ├── ftp_version_scanner_final.rb └── server_scanner_0.2.rb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/README.md -------------------------------------------------------------------------------- /book_meterpreter_scripts/gather.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_meterpreter_scripts/gather.rb -------------------------------------------------------------------------------- /book_meterpreter_scripts/railgun_demo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_meterpreter_scripts/railgun_demo.rb -------------------------------------------------------------------------------- /book_meterpreter_scripts/urlmon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_meterpreter_scripts/urlmon.rb -------------------------------------------------------------------------------- /book_non-msf/Chapter-1/37292.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-1/37292.c -------------------------------------------------------------------------------- /book_non-msf/Chapter-11/8081.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-11/8081.cna -------------------------------------------------------------------------------- /book_non-msf/Chapter-11/bind.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-11/bind.cna -------------------------------------------------------------------------------- /book_non-msf/Chapter-11/heartbeat.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-11/heartbeat.cna -------------------------------------------------------------------------------- /book_non-msf/Chapter-11/keylogger_menu.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-11/keylogger_menu.cna -------------------------------------------------------------------------------- /book_non-msf/Chapter-11/ready.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-11/ready.cna -------------------------------------------------------------------------------- /book_non-msf/Chapter-7/arduino_backdoor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-7/arduino_backdoor.ino -------------------------------------------------------------------------------- /book_non-msf/Chapter-9/decoder_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-9/decoder_stub.cpp -------------------------------------------------------------------------------- /book_non-msf/Chapter-9/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_non-msf/Chapter-9/encoder.cpp -------------------------------------------------------------------------------- /book_resource_scripts/chapter-8/multi_scr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_resource_scripts/chapter-8/multi_scr.rc -------------------------------------------------------------------------------- /book_resource_scripts/chapter-8/multi_script.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_resource_scripts/chapter-8/multi_script.rc -------------------------------------------------------------------------------- /book_resource_scripts/chapter-8/resource_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_resource_scripts/chapter-8/resource_complete -------------------------------------------------------------------------------- /book_resource_scripts/chapter-8/resource_complete2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/book_resource_scripts/chapter-8/resource_complete2 -------------------------------------------------------------------------------- /modules/auxiliary/auth/Chapter-2/ssh_bruteforce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/auxiliary/auth/Chapter-2/ssh_bruteforce.rb -------------------------------------------------------------------------------- /modules/auxiliary/scanner/Chapter-2/ftp_scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/auxiliary/scanner/Chapter-2/ftp_scanner.rb -------------------------------------------------------------------------------- /modules/exploits/chapter-1/43519.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/exploits/chapter-1/43519.rb -------------------------------------------------------------------------------- /modules/exploits/chapter-3/bof-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/exploits/chapter-3/bof-server.rb -------------------------------------------------------------------------------- /modules/exploits/chapter-3/easy-filesharing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/exploits/chapter-3/easy-filesharing.rb -------------------------------------------------------------------------------- /modules/exploits/chapter-3/rop-example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/exploits/chapter-3/rop-example.rb -------------------------------------------------------------------------------- /modules/exploits/chapter-4/bsplayer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/exploits/chapter-4/bsplayer.rb -------------------------------------------------------------------------------- /modules/exploits/chapter-4/pcman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/exploits/chapter-4/pcman.rb -------------------------------------------------------------------------------- /modules/exploits/chapter-4/phputility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/exploits/chapter-4/phputility.rb -------------------------------------------------------------------------------- /modules/post/chapter-10/CleanTracks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/post/chapter-10/CleanTracks.rb -------------------------------------------------------------------------------- /modules/post/chapter-2/drive_disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/post/chapter-2/drive_disable.rb -------------------------------------------------------------------------------- /modules/post/chapter-2/foxmail_decrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/modules/post/chapter-2/foxmail_decrypt.rb -------------------------------------------------------------------------------- /msfrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/msfrun.sh -------------------------------------------------------------------------------- /non_book_modules/Apex_Wordpress_Detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/Apex_Wordpress_Detector.rb -------------------------------------------------------------------------------- /non_book_modules/DVWA-SQL-INJECTION-PAWNAGE.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/DVWA-SQL-INJECTION-PAWNAGE.rb -------------------------------------------------------------------------------- /non_book_modules/DVWA-SQLi-2-RCE.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/DVWA-SQLi-2-RCE.rb -------------------------------------------------------------------------------- /non_book_modules/Wordpress-1-Version-Detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/Wordpress-1-Version-Detect.rb -------------------------------------------------------------------------------- /non_book_modules/Wordpress-2-Version-Detect-Refined.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/Wordpress-2-Version-Detect-Refined.rb -------------------------------------------------------------------------------- /non_book_modules/Wordpress-3-User-Exists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/Wordpress-3-User-Exists.rb -------------------------------------------------------------------------------- /non_book_modules/db_autopwn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/db_autopwn.rb -------------------------------------------------------------------------------- /non_book_modules/easy_chat_2point2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/easy_chat_2point2.rb -------------------------------------------------------------------------------- /non_book_modules/ftp_version_scanner_final.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/ftp_version_scanner_final.rb -------------------------------------------------------------------------------- /non_book_modules/server_scanner_0.2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Complete-Metasploit-Guide/HEAD/non_book_modules/server_scanner_0.2.rb --------------------------------------------------------------------------------