├── .gitignore ├── .idea └── workspace.xml ├── LICENSE ├── README.md ├── config.ini ├── docker ├── Dockerfile ├── README.md ├── build.sh ├── download_cves.py ├── gyoithon_setup │ └── config.ini ├── host.txt ├── msf_setup │ ├── database.yml │ ├── db.sql │ └── meterpreter.rc ├── run.sh └── timezonefix.sh ├── exclude_fqdn.txt ├── gyoithon.py ├── handout ├── BHA2018_handout.pdf ├── BHASIA2019_slide.pdf ├── BHUSA2018_handout.pdf └── DEFCON26_slide.pdf ├── host.txt ├── img ├── gyoi_logo.png ├── gyoi_report.png ├── gyoithon_logo.png ├── link_with_metasploit.png ├── overview.png └── processing_flow.png ├── inventory_list.txt ├── logs └── gyoithon.log ├── modules ├── Gyoi_Censys.py ├── Gyoi_CloudChecker.py ├── Gyoi_CommentChecker.py ├── Gyoi_ComputerVision.py ├── Gyoi_ContentExplorer.py ├── Gyoi_Creator.py ├── Gyoi_CveExplorerNVD.py ├── Gyoi_DomainTools.py ├── Gyoi_ErrorChecker.py ├── Gyoi_Exploit.py ├── Gyoi_GoogleHack.py ├── Gyoi_Inventory.py ├── Gyoi_PageTypeChecker.py ├── Gyoi_Report.py ├── Gyoi_Spider.py ├── Gyoi_SpiderControl.py ├── Gyoi_VersionChecker.py ├── Gyoi_VersionCheckerML.py ├── NaiveBayes.py ├── data │ ├── conversion_table.csv │ └── score_table.csv ├── train_data │ ├── train_cms_in.txt │ ├── train_framework_in.txt │ ├── train_os_in.txt │ ├── train_page_type.txt │ └── train_web_in.txt ├── trained_data │ ├── train_cms_out.pkl │ ├── train_framework_out.pkl │ ├── train_os_out.pkl │ ├── train_page_type.pkl │ └── train_web_out.pkl └── vuln_db │ └── README ├── report ├── report_template.html └── ~$sample_report.xlsx ├── report_merger.py ├── requirements.txt ├── signatures ├── exclude_fqdn.txt ├── signature_comment.txt ├── signature_default_content.txt ├── signature_error.txt ├── signature_page_type_from_url.txt ├── signature_product.txt └── signature_search_query.txt ├── sql.py ├── temp_signatures └── DUMMY └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/config.ini -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- 1 | docker build -t sst_api_gyoithon . 2 | -------------------------------------------------------------------------------- /docker/download_cves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/download_cves.py -------------------------------------------------------------------------------- /docker/gyoithon_setup/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/gyoithon_setup/config.ini -------------------------------------------------------------------------------- /docker/host.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/host.txt -------------------------------------------------------------------------------- /docker/msf_setup/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/msf_setup/database.yml -------------------------------------------------------------------------------- /docker/msf_setup/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/msf_setup/db.sql -------------------------------------------------------------------------------- /docker/msf_setup/meterpreter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/msf_setup/meterpreter.rc -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/run.sh -------------------------------------------------------------------------------- /docker/timezonefix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/docker/timezonefix.sh -------------------------------------------------------------------------------- /exclude_fqdn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/exclude_fqdn.txt -------------------------------------------------------------------------------- /gyoithon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/gyoithon.py -------------------------------------------------------------------------------- /handout/BHA2018_handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/handout/BHA2018_handout.pdf -------------------------------------------------------------------------------- /handout/BHASIA2019_slide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/handout/BHASIA2019_slide.pdf -------------------------------------------------------------------------------- /handout/BHUSA2018_handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/handout/BHUSA2018_handout.pdf -------------------------------------------------------------------------------- /handout/DEFCON26_slide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/handout/DEFCON26_slide.pdf -------------------------------------------------------------------------------- /host.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/host.txt -------------------------------------------------------------------------------- /img/gyoi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/img/gyoi_logo.png -------------------------------------------------------------------------------- /img/gyoi_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/img/gyoi_report.png -------------------------------------------------------------------------------- /img/gyoithon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/img/gyoithon_logo.png -------------------------------------------------------------------------------- /img/link_with_metasploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/img/link_with_metasploit.png -------------------------------------------------------------------------------- /img/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/img/overview.png -------------------------------------------------------------------------------- /img/processing_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/img/processing_flow.png -------------------------------------------------------------------------------- /inventory_list.txt: -------------------------------------------------------------------------------- 1 | https://xxx/ JPRSで検索可能な組織名 -------------------------------------------------------------------------------- /logs/gyoithon.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/logs/gyoithon.log -------------------------------------------------------------------------------- /modules/Gyoi_Censys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_Censys.py -------------------------------------------------------------------------------- /modules/Gyoi_CloudChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_CloudChecker.py -------------------------------------------------------------------------------- /modules/Gyoi_CommentChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_CommentChecker.py -------------------------------------------------------------------------------- /modules/Gyoi_ComputerVision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_ComputerVision.py -------------------------------------------------------------------------------- /modules/Gyoi_ContentExplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_ContentExplorer.py -------------------------------------------------------------------------------- /modules/Gyoi_Creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_Creator.py -------------------------------------------------------------------------------- /modules/Gyoi_CveExplorerNVD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_CveExplorerNVD.py -------------------------------------------------------------------------------- /modules/Gyoi_DomainTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_DomainTools.py -------------------------------------------------------------------------------- /modules/Gyoi_ErrorChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_ErrorChecker.py -------------------------------------------------------------------------------- /modules/Gyoi_Exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_Exploit.py -------------------------------------------------------------------------------- /modules/Gyoi_GoogleHack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_GoogleHack.py -------------------------------------------------------------------------------- /modules/Gyoi_Inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_Inventory.py -------------------------------------------------------------------------------- /modules/Gyoi_PageTypeChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_PageTypeChecker.py -------------------------------------------------------------------------------- /modules/Gyoi_Report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_Report.py -------------------------------------------------------------------------------- /modules/Gyoi_Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_Spider.py -------------------------------------------------------------------------------- /modules/Gyoi_SpiderControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_SpiderControl.py -------------------------------------------------------------------------------- /modules/Gyoi_VersionChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_VersionChecker.py -------------------------------------------------------------------------------- /modules/Gyoi_VersionCheckerML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/Gyoi_VersionCheckerML.py -------------------------------------------------------------------------------- /modules/NaiveBayes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/NaiveBayes.py -------------------------------------------------------------------------------- /modules/data/conversion_table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/data/conversion_table.csv -------------------------------------------------------------------------------- /modules/data/score_table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/data/score_table.csv -------------------------------------------------------------------------------- /modules/train_data/train_cms_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/train_data/train_cms_in.txt -------------------------------------------------------------------------------- /modules/train_data/train_framework_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/train_data/train_framework_in.txt -------------------------------------------------------------------------------- /modules/train_data/train_os_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/train_data/train_os_in.txt -------------------------------------------------------------------------------- /modules/train_data/train_page_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/train_data/train_page_type.txt -------------------------------------------------------------------------------- /modules/train_data/train_web_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/train_data/train_web_in.txt -------------------------------------------------------------------------------- /modules/trained_data/train_cms_out.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/trained_data/train_cms_out.pkl -------------------------------------------------------------------------------- /modules/trained_data/train_framework_out.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/trained_data/train_framework_out.pkl -------------------------------------------------------------------------------- /modules/trained_data/train_os_out.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/trained_data/train_os_out.pkl -------------------------------------------------------------------------------- /modules/trained_data/train_page_type.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/trained_data/train_page_type.pkl -------------------------------------------------------------------------------- /modules/trained_data/train_web_out.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/modules/trained_data/train_web_out.pkl -------------------------------------------------------------------------------- /modules/vuln_db/README: -------------------------------------------------------------------------------- 1 | ### README 2 | -------------------------------------------------------------------------------- /report/report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/report/report_template.html -------------------------------------------------------------------------------- /report/~$sample_report.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/report/~$sample_report.xlsx -------------------------------------------------------------------------------- /report_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/report_merger.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/requirements.txt -------------------------------------------------------------------------------- /signatures/exclude_fqdn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/signatures/exclude_fqdn.txt -------------------------------------------------------------------------------- /signatures/signature_comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/signatures/signature_comment.txt -------------------------------------------------------------------------------- /signatures/signature_default_content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/signatures/signature_default_content.txt -------------------------------------------------------------------------------- /signatures/signature_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/signatures/signature_error.txt -------------------------------------------------------------------------------- /signatures/signature_page_type_from_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/signatures/signature_page_type_from_url.txt -------------------------------------------------------------------------------- /signatures/signature_product.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/signatures/signature_product.txt -------------------------------------------------------------------------------- /signatures/signature_search_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/signatures/signature_search_query.txt -------------------------------------------------------------------------------- /sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/sql.py -------------------------------------------------------------------------------- /temp_signatures/DUMMY: -------------------------------------------------------------------------------- 1 | Dummy 2 | -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyoisamurai/GyoiThon/HEAD/util.py --------------------------------------------------------------------------------