├── .gitignore ├── LICENSE ├── README.md ├── TODO ├── analysis.db.empty ├── checksum.db.empty ├── cveupdate ├── data ├── binwalk ├── illuminati.txt ├── kun.txt ├── lotr_cz.txt ├── lotr_cz_ascii.txt ├── lotr_en.txt └── rot_cipher.txt ├── dict.db.empty ├── examples ├── binwalk_extract ├── cryptopals │ └── 1.txt ├── language ├── loaddict ├── lotr_lang └── lotr_results.txt ├── icon.png ├── install_debian.sh ├── install_rhel.sh ├── iot ├── iotdiff ├── iotlocal ├── iotssh ├── locasploit.py ├── module.db.empty ├── profiling.sh ├── source ├── __init__.py ├── libs │ ├── __init__.py │ ├── author.py │ ├── commands.py │ ├── connection.py │ ├── db.py │ ├── define.py │ ├── include.py │ ├── io.py │ ├── kb_todel.py │ ├── log.py │ ├── parameters.py │ ├── scheduler.py │ ├── search.py │ └── statistics.py ├── modules │ ├── __init__.py │ ├── _generic_module.py │ ├── analysis_iot.py │ ├── connection_constr.py │ ├── connection_ssh.py │ ├── crypto_bruteforce.py │ ├── crypto_frequency.py │ ├── crypto_frequency_etaoins.py │ ├── crypto_frequency_sorted.py │ ├── crypto_language.py │ ├── crypto_rot.py │ ├── crypto_words_upload.py │ ├── crypto_xor.py │ ├── file_checksums_upload.py │ ├── iot_binwalk_extract.py │ ├── iot_binwalk_scan.py │ ├── linux_enumeration_cron.py │ ├── linux_enumeration_distribution.py │ ├── linux_enumeration_kernel.py │ ├── linux_enumeration_users.py │ ├── locasploit_change_system.py │ ├── locasploit_cleanup.py │ ├── locasploit_db_query.py │ ├── locasploit_dictionary_delete.py │ ├── locasploit_dictionary_export.py │ ├── locasploit_dictionary_import.py │ ├── locasploit_update_cve.py │ ├── locasploit_update_exploit.py │ ├── locasploit_update_vulnerabilities.py │ ├── miscellaneous_encoding_base64.py │ ├── miscellaneous_encoding_hex.py │ ├── miscellaneous_encoding_nodiacritic.py │ ├── miscellaneous_multimedia_subtitlematch.py │ ├── miscellaneous_shell_bash.py │ ├── miscellaneous_shell_python.py │ ├── miscellaneous_time_timer.py │ ├── network_enumeration_interfaces.py │ ├── network_scanner_passive.py │ ├── network_scanner_ports.py │ ├── packages_dpkg_installed.py │ ├── packages_ipkg_installed.py │ ├── packages_opkg_installed.py │ ├── report_iot.py │ ├── report_iot_diff.py │ ├── ssl_ca_create.py │ ├── ssl_certificate_view.py │ ├── ssl_csr_generate.py │ ├── ssl_key_decode.py │ ├── tb_insert.py │ ├── tb_move.py │ ├── tb_readfile.py │ ├── templates │ │ ├── basic.py │ │ ├── basic_commented.py │ │ └── thread.py │ └── windows_enumeration_users.py └── support │ ├── __init__.py │ ├── myscapy.py │ └── package_aliases.csv ├── test └── vuln.db.empty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/TODO -------------------------------------------------------------------------------- /analysis.db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/analysis.db.empty -------------------------------------------------------------------------------- /checksum.db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/checksum.db.empty -------------------------------------------------------------------------------- /cveupdate: -------------------------------------------------------------------------------- 1 | use locasploit.update.vulnerabilities 2 | run 3 | -------------------------------------------------------------------------------- /data/binwalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/data/binwalk -------------------------------------------------------------------------------- /data/illuminati.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/data/illuminati.txt -------------------------------------------------------------------------------- /data/kun.txt: -------------------------------------------------------------------------------- 1 | Příliš žluťoučký kůň úpěl ďábelské ódy. 2 | PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ ÓDY. 3 | -------------------------------------------------------------------------------- /data/lotr_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/data/lotr_cz.txt -------------------------------------------------------------------------------- /data/lotr_cz_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/data/lotr_cz_ascii.txt -------------------------------------------------------------------------------- /data/lotr_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/data/lotr_en.txt -------------------------------------------------------------------------------- /data/rot_cipher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/data/rot_cipher.txt -------------------------------------------------------------------------------- /dict.db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/dict.db.empty -------------------------------------------------------------------------------- /examples/binwalk_extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/examples/binwalk_extract -------------------------------------------------------------------------------- /examples/cryptopals/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/examples/cryptopals/1.txt -------------------------------------------------------------------------------- /examples/language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/examples/language -------------------------------------------------------------------------------- /examples/loaddict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/examples/loaddict -------------------------------------------------------------------------------- /examples/lotr_lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/examples/lotr_lang -------------------------------------------------------------------------------- /examples/lotr_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/examples/lotr_results.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/icon.png -------------------------------------------------------------------------------- /install_debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/install_debian.sh -------------------------------------------------------------------------------- /install_rhel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/install_rhel.sh -------------------------------------------------------------------------------- /iot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/iot -------------------------------------------------------------------------------- /iotdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/iotdiff -------------------------------------------------------------------------------- /iotlocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/iotlocal -------------------------------------------------------------------------------- /iotssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/iotssh -------------------------------------------------------------------------------- /locasploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/locasploit.py -------------------------------------------------------------------------------- /module.db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/module.db.empty -------------------------------------------------------------------------------- /profiling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/profiling.sh -------------------------------------------------------------------------------- /source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/libs/author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/author.py -------------------------------------------------------------------------------- /source/libs/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/commands.py -------------------------------------------------------------------------------- /source/libs/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/connection.py -------------------------------------------------------------------------------- /source/libs/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/db.py -------------------------------------------------------------------------------- /source/libs/define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/define.py -------------------------------------------------------------------------------- /source/libs/include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/include.py -------------------------------------------------------------------------------- /source/libs/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/io.py -------------------------------------------------------------------------------- /source/libs/kb_todel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/kb_todel.py -------------------------------------------------------------------------------- /source/libs/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/log.py -------------------------------------------------------------------------------- /source/libs/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/parameters.py -------------------------------------------------------------------------------- /source/libs/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/scheduler.py -------------------------------------------------------------------------------- /source/libs/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/search.py -------------------------------------------------------------------------------- /source/libs/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/libs/statistics.py -------------------------------------------------------------------------------- /source/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/modules/_generic_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/_generic_module.py -------------------------------------------------------------------------------- /source/modules/analysis_iot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/analysis_iot.py -------------------------------------------------------------------------------- /source/modules/connection_constr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/connection_constr.py -------------------------------------------------------------------------------- /source/modules/connection_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/connection_ssh.py -------------------------------------------------------------------------------- /source/modules/crypto_bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_bruteforce.py -------------------------------------------------------------------------------- /source/modules/crypto_frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_frequency.py -------------------------------------------------------------------------------- /source/modules/crypto_frequency_etaoins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_frequency_etaoins.py -------------------------------------------------------------------------------- /source/modules/crypto_frequency_sorted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_frequency_sorted.py -------------------------------------------------------------------------------- /source/modules/crypto_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_language.py -------------------------------------------------------------------------------- /source/modules/crypto_rot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_rot.py -------------------------------------------------------------------------------- /source/modules/crypto_words_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_words_upload.py -------------------------------------------------------------------------------- /source/modules/crypto_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/crypto_xor.py -------------------------------------------------------------------------------- /source/modules/file_checksums_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/file_checksums_upload.py -------------------------------------------------------------------------------- /source/modules/iot_binwalk_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/iot_binwalk_extract.py -------------------------------------------------------------------------------- /source/modules/iot_binwalk_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/iot_binwalk_scan.py -------------------------------------------------------------------------------- /source/modules/linux_enumeration_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/linux_enumeration_cron.py -------------------------------------------------------------------------------- /source/modules/linux_enumeration_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/linux_enumeration_distribution.py -------------------------------------------------------------------------------- /source/modules/linux_enumeration_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/linux_enumeration_kernel.py -------------------------------------------------------------------------------- /source/modules/linux_enumeration_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/linux_enumeration_users.py -------------------------------------------------------------------------------- /source/modules/locasploit_change_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_change_system.py -------------------------------------------------------------------------------- /source/modules/locasploit_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_cleanup.py -------------------------------------------------------------------------------- /source/modules/locasploit_db_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_db_query.py -------------------------------------------------------------------------------- /source/modules/locasploit_dictionary_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_dictionary_delete.py -------------------------------------------------------------------------------- /source/modules/locasploit_dictionary_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_dictionary_export.py -------------------------------------------------------------------------------- /source/modules/locasploit_dictionary_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_dictionary_import.py -------------------------------------------------------------------------------- /source/modules/locasploit_update_cve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_update_cve.py -------------------------------------------------------------------------------- /source/modules/locasploit_update_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_update_exploit.py -------------------------------------------------------------------------------- /source/modules/locasploit_update_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/locasploit_update_vulnerabilities.py -------------------------------------------------------------------------------- /source/modules/miscellaneous_encoding_base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/miscellaneous_encoding_base64.py -------------------------------------------------------------------------------- /source/modules/miscellaneous_encoding_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/miscellaneous_encoding_hex.py -------------------------------------------------------------------------------- /source/modules/miscellaneous_encoding_nodiacritic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/miscellaneous_encoding_nodiacritic.py -------------------------------------------------------------------------------- /source/modules/miscellaneous_multimedia_subtitlematch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/miscellaneous_multimedia_subtitlematch.py -------------------------------------------------------------------------------- /source/modules/miscellaneous_shell_bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/miscellaneous_shell_bash.py -------------------------------------------------------------------------------- /source/modules/miscellaneous_shell_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/miscellaneous_shell_python.py -------------------------------------------------------------------------------- /source/modules/miscellaneous_time_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/miscellaneous_time_timer.py -------------------------------------------------------------------------------- /source/modules/network_enumeration_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/network_enumeration_interfaces.py -------------------------------------------------------------------------------- /source/modules/network_scanner_passive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/network_scanner_passive.py -------------------------------------------------------------------------------- /source/modules/network_scanner_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/network_scanner_ports.py -------------------------------------------------------------------------------- /source/modules/packages_dpkg_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/packages_dpkg_installed.py -------------------------------------------------------------------------------- /source/modules/packages_ipkg_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/packages_ipkg_installed.py -------------------------------------------------------------------------------- /source/modules/packages_opkg_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/packages_opkg_installed.py -------------------------------------------------------------------------------- /source/modules/report_iot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/report_iot.py -------------------------------------------------------------------------------- /source/modules/report_iot_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/report_iot_diff.py -------------------------------------------------------------------------------- /source/modules/ssl_ca_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/ssl_ca_create.py -------------------------------------------------------------------------------- /source/modules/ssl_certificate_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/ssl_certificate_view.py -------------------------------------------------------------------------------- /source/modules/ssl_csr_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/ssl_csr_generate.py -------------------------------------------------------------------------------- /source/modules/ssl_key_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/ssl_key_decode.py -------------------------------------------------------------------------------- /source/modules/tb_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/tb_insert.py -------------------------------------------------------------------------------- /source/modules/tb_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/tb_move.py -------------------------------------------------------------------------------- /source/modules/tb_readfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/tb_readfile.py -------------------------------------------------------------------------------- /source/modules/templates/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/templates/basic.py -------------------------------------------------------------------------------- /source/modules/templates/basic_commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/templates/basic_commented.py -------------------------------------------------------------------------------- /source/modules/templates/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/templates/thread.py -------------------------------------------------------------------------------- /source/modules/windows_enumeration_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/modules/windows_enumeration_users.py -------------------------------------------------------------------------------- /source/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/support/myscapy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/support/myscapy.py -------------------------------------------------------------------------------- /source/support/package_aliases.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/source/support/package_aliases.csv -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /vuln.db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightfaith/locasploit/HEAD/vuln.db.empty --------------------------------------------------------------------------------