├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── avain.py ├── config ├── default.txt ├── exhaustive.txt └── fast.txt ├── core ├── __init__.py ├── controller.py ├── module_manager.py ├── result_processor.py ├── result_types.py ├── scan_result_processor.py ├── utility.py ├── visualizer.py ├── vuln_score_processor.py └── webserver_map_processor.py ├── images ├── demo_thumbnail.png └── usage_info.png ├── install.sh ├── modules ├── __init__.py ├── cve_correlation │ ├── avain_build.sh │ ├── avain_cve_correlation.py │ ├── db_creation_src │ │ ├── CMakeLists.txt │ │ └── create_db.cpp │ └── module_updater.py ├── login_bruteforce │ ├── hydra_ssh │ │ └── avain.py │ ├── hydra_telnet │ │ └── avain.py │ └── wordlists │ │ └── mirai_user_pass.txt ├── module_updater.py ├── nmap │ └── avain_nmap.py ├── smb │ ├── avain_build.sh │ └── avain_enum.py └── web │ ├── cms_scanner │ └── wpscan │ │ ├── avain.py │ │ └── avain_build.sh │ ├── crawler │ ├── avain.py │ ├── avain_build.sh │ ├── crawl_helper.py │ ├── crawler.py │ ├── ipc_operations.py │ └── requirements.txt │ ├── gobuster │ └── avain.py │ ├── sqlmap │ └── avain.py │ └── wordlists │ └── dirbuster │ ├── apache-user-enum-1.0.txt │ ├── apache-user-enum-2.0.txt │ ├── directory-list-1.0.txt │ ├── directory-list-2.3-big.txt │ ├── directory-list-2.3-medium.txt │ ├── directory-list-2.3-small.txt │ ├── directory-list-lowercase-2.3-big.txt │ ├── directory-list-lowercase-2.3-medium.txt │ └── directory-list-lowercase-2.3-small.txt ├── requirements.txt └── sample_result ├── avain.log ├── modules ├── cve_correlation │ ├── cve_summary.json │ ├── found_cves.json │ └── vuln_score_result.json ├── login_bruteforce │ ├── hydra_ssh │ │ ├── hydra_output.json │ │ ├── hydra_output.txt │ │ ├── targets.txt │ │ ├── valid_credentials.txt │ │ └── vuln_score_result.json │ └── hydra_telnet │ │ └── vuln_score_result.json ├── nmap │ ├── matching_string.txt │ ├── networks.list │ ├── os_selection_scores.json │ ├── potential_oss.json │ ├── raw_nmap_scan_results.txt │ ├── raw_nmap_scan_results.xml │ └── scan_result.json ├── smb │ ├── nmap_out.txt │ └── smbmap_out.txt └── web │ ├── cms_scanner │ └── wpscan │ │ ├── found_wp_sites.json │ │ ├── scan_result.json │ │ ├── wpscan_output.txt │ │ └── wpscan_output_color.txt │ ├── crawler │ ├── crawl_helper-kioptrix3.com.txt │ ├── crawl_helper-vtcsec.txt │ ├── discovered_comments.json │ ├── discovered_comments.txt │ ├── discovered_domains.json │ └── webserver_map_result.json │ ├── gobuster │ ├── gobuster_out.txt │ └── webserver_map_result.json │ └── sqlmap │ ├── found_sqli.json │ ├── sqlmap_out_dir │ ├── kioptrix3.com │ │ ├── log │ │ ├── session.sqlite │ │ └── target.txt │ └── vtcsec │ │ ├── log │ │ ├── session.sqlite │ │ └── target.txt │ ├── sqlmap_output.txt │ ├── sqlmap_output_color.txt │ └── vuln_score_result.json ├── network_vulnerability_ratings.json ├── scan_result_aggregation ├── aggregation_groups.json ├── aggregation_options.json └── scan_result.json ├── vuln_score_aggregation ├── host_scores.json ├── module_scores.json └── vuln_score_result.json └── webserver_map_aggregation ├── discovered_urls.txt └── webserver_map_result.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/README.md -------------------------------------------------------------------------------- /avain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/avain.py -------------------------------------------------------------------------------- /config/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/config/default.txt -------------------------------------------------------------------------------- /config/exhaustive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/config/exhaustive.txt -------------------------------------------------------------------------------- /config/fast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/config/fast.txt -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/controller.py -------------------------------------------------------------------------------- /core/module_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/module_manager.py -------------------------------------------------------------------------------- /core/result_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/result_processor.py -------------------------------------------------------------------------------- /core/result_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/result_types.py -------------------------------------------------------------------------------- /core/scan_result_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/scan_result_processor.py -------------------------------------------------------------------------------- /core/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/utility.py -------------------------------------------------------------------------------- /core/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/visualizer.py -------------------------------------------------------------------------------- /core/vuln_score_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/vuln_score_processor.py -------------------------------------------------------------------------------- /core/webserver_map_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/core/webserver_map_processor.py -------------------------------------------------------------------------------- /images/demo_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/images/demo_thumbnail.png -------------------------------------------------------------------------------- /images/usage_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/images/usage_info.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/install.sh -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/cve_correlation/avain_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/cve_correlation/avain_build.sh -------------------------------------------------------------------------------- /modules/cve_correlation/avain_cve_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/cve_correlation/avain_cve_correlation.py -------------------------------------------------------------------------------- /modules/cve_correlation/db_creation_src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/cve_correlation/db_creation_src/CMakeLists.txt -------------------------------------------------------------------------------- /modules/cve_correlation/db_creation_src/create_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/cve_correlation/db_creation_src/create_db.cpp -------------------------------------------------------------------------------- /modules/cve_correlation/module_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/cve_correlation/module_updater.py -------------------------------------------------------------------------------- /modules/login_bruteforce/hydra_ssh/avain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/login_bruteforce/hydra_ssh/avain.py -------------------------------------------------------------------------------- /modules/login_bruteforce/hydra_telnet/avain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/login_bruteforce/hydra_telnet/avain.py -------------------------------------------------------------------------------- /modules/login_bruteforce/wordlists/mirai_user_pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/login_bruteforce/wordlists/mirai_user_pass.txt -------------------------------------------------------------------------------- /modules/module_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/module_updater.py -------------------------------------------------------------------------------- /modules/nmap/avain_nmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/nmap/avain_nmap.py -------------------------------------------------------------------------------- /modules/smb/avain_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/smb/avain_build.sh -------------------------------------------------------------------------------- /modules/smb/avain_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/smb/avain_enum.py -------------------------------------------------------------------------------- /modules/web/cms_scanner/wpscan/avain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/cms_scanner/wpscan/avain.py -------------------------------------------------------------------------------- /modules/web/cms_scanner/wpscan/avain_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/cms_scanner/wpscan/avain_build.sh -------------------------------------------------------------------------------- /modules/web/crawler/avain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/crawler/avain.py -------------------------------------------------------------------------------- /modules/web/crawler/avain_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/crawler/avain_build.sh -------------------------------------------------------------------------------- /modules/web/crawler/crawl_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/crawler/crawl_helper.py -------------------------------------------------------------------------------- /modules/web/crawler/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/crawler/crawler.py -------------------------------------------------------------------------------- /modules/web/crawler/ipc_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/crawler/ipc_operations.py -------------------------------------------------------------------------------- /modules/web/crawler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/crawler/requirements.txt -------------------------------------------------------------------------------- /modules/web/gobuster/avain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/gobuster/avain.py -------------------------------------------------------------------------------- /modules/web/sqlmap/avain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/sqlmap/avain.py -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/apache-user-enum-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/apache-user-enum-1.0.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/apache-user-enum-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/apache-user-enum-2.0.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/directory-list-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/directory-list-1.0.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/directory-list-2.3-big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/directory-list-2.3-big.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/directory-list-2.3-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/directory-list-2.3-medium.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/directory-list-2.3-small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/directory-list-2.3-small.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/directory-list-lowercase-2.3-big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/directory-list-lowercase-2.3-big.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/directory-list-lowercase-2.3-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/directory-list-lowercase-2.3-medium.txt -------------------------------------------------------------------------------- /modules/web/wordlists/dirbuster/directory-list-lowercase-2.3-small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/modules/web/wordlists/dirbuster/directory-list-lowercase-2.3-small.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_result/avain.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/avain.log -------------------------------------------------------------------------------- /sample_result/modules/cve_correlation/cve_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/cve_correlation/cve_summary.json -------------------------------------------------------------------------------- /sample_result/modules/cve_correlation/found_cves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/cve_correlation/found_cves.json -------------------------------------------------------------------------------- /sample_result/modules/cve_correlation/vuln_score_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/cve_correlation/vuln_score_result.json -------------------------------------------------------------------------------- /sample_result/modules/login_bruteforce/hydra_ssh/hydra_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/login_bruteforce/hydra_ssh/hydra_output.json -------------------------------------------------------------------------------- /sample_result/modules/login_bruteforce/hydra_ssh/hydra_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/login_bruteforce/hydra_ssh/hydra_output.txt -------------------------------------------------------------------------------- /sample_result/modules/login_bruteforce/hydra_ssh/targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/login_bruteforce/hydra_ssh/targets.txt -------------------------------------------------------------------------------- /sample_result/modules/login_bruteforce/hydra_ssh/valid_credentials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/login_bruteforce/hydra_ssh/valid_credentials.txt -------------------------------------------------------------------------------- /sample_result/modules/login_bruteforce/hydra_ssh/vuln_score_result.json: -------------------------------------------------------------------------------- 1 | { 2 | "192.168.0.242": 9.8 3 | } -------------------------------------------------------------------------------- /sample_result/modules/login_bruteforce/hydra_telnet/vuln_score_result.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /sample_result/modules/nmap/matching_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/nmap/matching_string.txt -------------------------------------------------------------------------------- /sample_result/modules/nmap/networks.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/nmap/networks.list -------------------------------------------------------------------------------- /sample_result/modules/nmap/os_selection_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/nmap/os_selection_scores.json -------------------------------------------------------------------------------- /sample_result/modules/nmap/potential_oss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/nmap/potential_oss.json -------------------------------------------------------------------------------- /sample_result/modules/nmap/raw_nmap_scan_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/nmap/raw_nmap_scan_results.txt -------------------------------------------------------------------------------- /sample_result/modules/nmap/raw_nmap_scan_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/nmap/raw_nmap_scan_results.xml -------------------------------------------------------------------------------- /sample_result/modules/nmap/scan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/nmap/scan_result.json -------------------------------------------------------------------------------- /sample_result/modules/smb/nmap_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/smb/nmap_out.txt -------------------------------------------------------------------------------- /sample_result/modules/smb/smbmap_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/smb/smbmap_out.txt -------------------------------------------------------------------------------- /sample_result/modules/web/cms_scanner/wpscan/found_wp_sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/cms_scanner/wpscan/found_wp_sites.json -------------------------------------------------------------------------------- /sample_result/modules/web/cms_scanner/wpscan/scan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/cms_scanner/wpscan/scan_result.json -------------------------------------------------------------------------------- /sample_result/modules/web/cms_scanner/wpscan/wpscan_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/cms_scanner/wpscan/wpscan_output.txt -------------------------------------------------------------------------------- /sample_result/modules/web/cms_scanner/wpscan/wpscan_output_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/cms_scanner/wpscan/wpscan_output_color.txt -------------------------------------------------------------------------------- /sample_result/modules/web/crawler/crawl_helper-kioptrix3.com.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/crawler/crawl_helper-kioptrix3.com.txt -------------------------------------------------------------------------------- /sample_result/modules/web/crawler/crawl_helper-vtcsec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/crawler/crawl_helper-vtcsec.txt -------------------------------------------------------------------------------- /sample_result/modules/web/crawler/discovered_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/crawler/discovered_comments.json -------------------------------------------------------------------------------- /sample_result/modules/web/crawler/discovered_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/crawler/discovered_comments.txt -------------------------------------------------------------------------------- /sample_result/modules/web/crawler/discovered_domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/crawler/discovered_domains.json -------------------------------------------------------------------------------- /sample_result/modules/web/crawler/webserver_map_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/crawler/webserver_map_result.json -------------------------------------------------------------------------------- /sample_result/modules/web/gobuster/gobuster_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/gobuster/gobuster_out.txt -------------------------------------------------------------------------------- /sample_result/modules/web/gobuster/webserver_map_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/gobuster/webserver_map_result.json -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/found_sqli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/found_sqli.json -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_out_dir/kioptrix3.com/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/sqlmap_out_dir/kioptrix3.com/log -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_out_dir/kioptrix3.com/session.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/sqlmap_out_dir/kioptrix3.com/session.sqlite -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_out_dir/kioptrix3.com/target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/sqlmap_out_dir/kioptrix3.com/target.txt -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_out_dir/vtcsec/log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_out_dir/vtcsec/session.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/sqlmap_out_dir/vtcsec/session.sqlite -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_out_dir/vtcsec/target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/sqlmap_out_dir/vtcsec/target.txt -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/sqlmap_output.txt -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/sqlmap_output_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/modules/web/sqlmap/sqlmap_output_color.txt -------------------------------------------------------------------------------- /sample_result/modules/web/sqlmap/vuln_score_result.json: -------------------------------------------------------------------------------- 1 | { 2 | "192.168.0.242": 9.8 3 | } -------------------------------------------------------------------------------- /sample_result/network_vulnerability_ratings.json: -------------------------------------------------------------------------------- 1 | { 2 | "assessed_network": 9.8 3 | } -------------------------------------------------------------------------------- /sample_result/scan_result_aggregation/aggregation_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/scan_result_aggregation/aggregation_groups.json -------------------------------------------------------------------------------- /sample_result/scan_result_aggregation/aggregation_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/scan_result_aggregation/aggregation_options.json -------------------------------------------------------------------------------- /sample_result/scan_result_aggregation/scan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/scan_result_aggregation/scan_result.json -------------------------------------------------------------------------------- /sample_result/vuln_score_aggregation/host_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/vuln_score_aggregation/host_scores.json -------------------------------------------------------------------------------- /sample_result/vuln_score_aggregation/module_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/vuln_score_aggregation/module_scores.json -------------------------------------------------------------------------------- /sample_result/vuln_score_aggregation/vuln_score_result.json: -------------------------------------------------------------------------------- 1 | [ 2 | 9.8 3 | ] -------------------------------------------------------------------------------- /sample_result/webserver_map_aggregation/discovered_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/webserver_map_aggregation/discovered_urls.txt -------------------------------------------------------------------------------- /sample_result/webserver_map_aggregation/webserver_map_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ra1nb0rn/avain/HEAD/sample_result/webserver_map_aggregation/webserver_map_result.json --------------------------------------------------------------------------------