├── BinGather ├── .SynCrawl.sh.un~ ├── BinGather.sh ├── CONFIG ├── Plugin_bac │ ├── protocol │ ├── rsakey │ └── ssdeep ├── SynCrawl.sh ├── SynPlugin.sh ├── isdetect.py └── log ├── BinRelation ├── BinRelation.sh └── CONFIG ├── FirmCrawler ├── .idea │ ├── FirmCrawler.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── CONFIG.cfg ├── FirmCrawler.sh ├── Rockwelldownload.py ├── Start.py ├── abb.log ├── cisco.log ├── dlink.log ├── download.py ├── download.py~ ├── download_process.py ├── foscam.log ├── hello.txt ├── hikvision.log ├── mycrawler │ ├── __init__.py │ ├── __init__.pyc │ ├── dbUtil.py │ ├── items.py │ ├── items.pyc │ ├── pipelines.py │ ├── pipelines.pyc │ ├── settings.py │ ├── settings.pyc │ └── spiders │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── abbSpider.py │ │ ├── abbSpider.pyc │ │ ├── ciscoSpider.py │ │ ├── ciscoSpider.pyc │ │ ├── dlinkSpider.py │ │ ├── dlinkSpider.pyc │ │ ├── foscamSpider.py │ │ ├── foscamSpider.pyc │ │ ├── hikvisionSpider.py │ │ ├── hikvisionSpider.pyc │ │ ├── openwrtSpider.py │ │ ├── openwrtSpider.pyc │ │ ├── rockwellSpider.py │ │ ├── rockwellSpider.pyc │ │ ├── schneiderSpider.py │ │ ├── schneiderSpider.pyc │ │ ├── schneiderSpider.py~ │ │ ├── siemensSpider.py │ │ ├── siemensSpider.pyc │ │ ├── softpediaSpider.py │ │ ├── softpediaSpider.pyc │ │ ├── tomatoSpider.py │ │ ├── tomatoSpider.pyc │ │ ├── tplinkSpider.py │ │ ├── tplinkSpider.pyc │ │ ├── vipaSpider.py │ │ └── vipaSpider.pyc ├── openwrt.log ├── rockwell.log ├── run.py ├── run_spider.sh ├── rwnew2.log ├── schneider.log ├── schneiderlog.log ├── scrapy.cfg ├── setup.py ├── siemens.log ├── siemensdownload.py ├── softpedia.log ├── softpedia.log~ ├── tomato.log ├── tplink.log ├── vipa.log ├── vipaSpider.py └── vipadownload.py ├── FunRelation ├── 229860_cgibin_ ├── 229860_cgibin_.asm ├── 229860_cgibin_.i64 ├── 3_3_DIR-645.i64 ├── CONFIG ├── Core │ ├── .idea │ │ ├── FunRelation.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── BugPlug.py │ ├── DIR-100V113@webs@alpha_auth_check.i64 │ ├── DIR-100V113@webs@alpha_auth_check1.i64 │ ├── Data_Process.pyc │ ├── Predict_Net.py │ ├── Predict_Net.pyc │ ├── Similarity_CountSim.py │ ├── Similarity_CountSim.pyc │ ├── Similarty_Function.py │ ├── Similarty_Function.pyc │ ├── TargetPlug.py │ ├── Train_LogisticRegression.py │ ├── Train_LogisticRegression.pyc │ ├── Train_MLP.py │ ├── Train_MLP.pyc │ ├── Train_Main.py │ ├── attr_info.py │ ├── attr_info.pyc │ ├── bugSearch.py │ ├── dbService.py │ ├── dbService.pyc │ ├── idaout.txt │ └── savenet.data ├── FunRelation.sh ├── idaout.txt └── result.json ├── GLOBAL_CONFIG ├── README.md ├── Statistics ├── 1_show_global ├── get_manufacturer_bin_num ├── get_total_bin_num ├── get_total_class_num ├── get_total_decode_firm_num ├── get_total_firmware_num.sh ├── get_total_model_num.sh └── get_total_os_num ├── VulGather └── VulGather.sh ├── gujian.json └── qq /BinGather/.SynCrawl.sh.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/.SynCrawl.sh.un~ -------------------------------------------------------------------------------- /BinGather/BinGather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/BinGather.sh -------------------------------------------------------------------------------- /BinGather/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/CONFIG -------------------------------------------------------------------------------- /BinGather/Plugin_bac/protocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/Plugin_bac/protocol -------------------------------------------------------------------------------- /BinGather/Plugin_bac/rsakey: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | strings "$1"|grep '[a-zA-Z0-9\/+]\{64\}[=]\{2\}' 4 | 5 | -------------------------------------------------------------------------------- /BinGather/Plugin_bac/ssdeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/Plugin_bac/ssdeep -------------------------------------------------------------------------------- /BinGather/SynCrawl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/SynCrawl.sh -------------------------------------------------------------------------------- /BinGather/SynPlugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/SynPlugin.sh -------------------------------------------------------------------------------- /BinGather/isdetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/isdetect.py -------------------------------------------------------------------------------- /BinGather/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinGather/log -------------------------------------------------------------------------------- /BinRelation/BinRelation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinRelation/BinRelation.sh -------------------------------------------------------------------------------- /BinRelation/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/BinRelation/CONFIG -------------------------------------------------------------------------------- /FirmCrawler/.idea/FirmCrawler.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/.idea/FirmCrawler.iml -------------------------------------------------------------------------------- /FirmCrawler/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/.idea/misc.xml -------------------------------------------------------------------------------- /FirmCrawler/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/.idea/modules.xml -------------------------------------------------------------------------------- /FirmCrawler/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/.idea/workspace.xml -------------------------------------------------------------------------------- /FirmCrawler/CONFIG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/CONFIG.cfg -------------------------------------------------------------------------------- /FirmCrawler/FirmCrawler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/FirmCrawler.sh -------------------------------------------------------------------------------- /FirmCrawler/Rockwelldownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/Rockwelldownload.py -------------------------------------------------------------------------------- /FirmCrawler/Start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/Start.py -------------------------------------------------------------------------------- /FirmCrawler/abb.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/abb.log -------------------------------------------------------------------------------- /FirmCrawler/cisco.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/cisco.log -------------------------------------------------------------------------------- /FirmCrawler/dlink.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/dlink.log -------------------------------------------------------------------------------- /FirmCrawler/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/download.py -------------------------------------------------------------------------------- /FirmCrawler/download.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/download.py~ -------------------------------------------------------------------------------- /FirmCrawler/download_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/download_process.py -------------------------------------------------------------------------------- /FirmCrawler/foscam.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/foscam.log -------------------------------------------------------------------------------- /FirmCrawler/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/hello.txt -------------------------------------------------------------------------------- /FirmCrawler/hikvision.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/hikvision.log -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/__init__.py: -------------------------------------------------------------------------------- 1 | # encoding=utf-8 2 | -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/__init__.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/dbUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/dbUtil.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/items.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/items.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/items.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/pipelines.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/pipelines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/pipelines.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/settings.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/settings.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/__init__.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/abbSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/abbSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/abbSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/abbSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/ciscoSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/ciscoSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/ciscoSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/ciscoSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/dlinkSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/dlinkSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/dlinkSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/dlinkSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/foscamSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/foscamSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/foscamSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/foscamSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/hikvisionSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/hikvisionSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/hikvisionSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/hikvisionSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/openwrtSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/openwrtSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/openwrtSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/openwrtSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/rockwellSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/rockwellSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/rockwellSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/rockwellSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/schneiderSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/schneiderSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/schneiderSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/schneiderSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/schneiderSpider.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/schneiderSpider.py~ -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/siemensSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/siemensSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/siemensSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/siemensSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/softpediaSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/softpediaSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/softpediaSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/softpediaSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/tomatoSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/tomatoSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/tomatoSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/tomatoSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/tplinkSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/tplinkSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/tplinkSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/tplinkSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/vipaSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/vipaSpider.py -------------------------------------------------------------------------------- /FirmCrawler/mycrawler/spiders/vipaSpider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/mycrawler/spiders/vipaSpider.pyc -------------------------------------------------------------------------------- /FirmCrawler/openwrt.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/openwrt.log -------------------------------------------------------------------------------- /FirmCrawler/rockwell.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/rockwell.log -------------------------------------------------------------------------------- /FirmCrawler/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/run.py -------------------------------------------------------------------------------- /FirmCrawler/run_spider.sh: -------------------------------------------------------------------------------- 1 | scrapy crawl $1 2 | -------------------------------------------------------------------------------- /FirmCrawler/rwnew2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/rwnew2.log -------------------------------------------------------------------------------- /FirmCrawler/schneider.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/schneider.log -------------------------------------------------------------------------------- /FirmCrawler/schneiderlog.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/schneiderlog.log -------------------------------------------------------------------------------- /FirmCrawler/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/scrapy.cfg -------------------------------------------------------------------------------- /FirmCrawler/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/setup.py -------------------------------------------------------------------------------- /FirmCrawler/siemens.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/siemens.log -------------------------------------------------------------------------------- /FirmCrawler/siemensdownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/siemensdownload.py -------------------------------------------------------------------------------- /FirmCrawler/softpedia.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/softpedia.log -------------------------------------------------------------------------------- /FirmCrawler/softpedia.log~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/softpedia.log~ -------------------------------------------------------------------------------- /FirmCrawler/tomato.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/tomato.log -------------------------------------------------------------------------------- /FirmCrawler/tplink.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/tplink.log -------------------------------------------------------------------------------- /FirmCrawler/vipa.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/vipa.log -------------------------------------------------------------------------------- /FirmCrawler/vipaSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/vipaSpider.py -------------------------------------------------------------------------------- /FirmCrawler/vipadownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FirmCrawler/vipadownload.py -------------------------------------------------------------------------------- /FunRelation/229860_cgibin_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/229860_cgibin_ -------------------------------------------------------------------------------- /FunRelation/229860_cgibin_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/229860_cgibin_.asm -------------------------------------------------------------------------------- /FunRelation/229860_cgibin_.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/229860_cgibin_.i64 -------------------------------------------------------------------------------- /FunRelation/3_3_DIR-645.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/3_3_DIR-645.i64 -------------------------------------------------------------------------------- /FunRelation/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/CONFIG -------------------------------------------------------------------------------- /FunRelation/Core/.idea/FunRelation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/.idea/FunRelation.iml -------------------------------------------------------------------------------- /FunRelation/Core/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/.idea/misc.xml -------------------------------------------------------------------------------- /FunRelation/Core/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/.idea/modules.xml -------------------------------------------------------------------------------- /FunRelation/Core/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/.idea/workspace.xml -------------------------------------------------------------------------------- /FunRelation/Core/BugPlug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/BugPlug.py -------------------------------------------------------------------------------- /FunRelation/Core/DIR-100V113@webs@alpha_auth_check.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/DIR-100V113@webs@alpha_auth_check.i64 -------------------------------------------------------------------------------- /FunRelation/Core/DIR-100V113@webs@alpha_auth_check1.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/DIR-100V113@webs@alpha_auth_check1.i64 -------------------------------------------------------------------------------- /FunRelation/Core/Data_Process.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Data_Process.pyc -------------------------------------------------------------------------------- /FunRelation/Core/Predict_Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Predict_Net.py -------------------------------------------------------------------------------- /FunRelation/Core/Predict_Net.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Predict_Net.pyc -------------------------------------------------------------------------------- /FunRelation/Core/Similarity_CountSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Similarity_CountSim.py -------------------------------------------------------------------------------- /FunRelation/Core/Similarity_CountSim.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Similarity_CountSim.pyc -------------------------------------------------------------------------------- /FunRelation/Core/Similarty_Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Similarty_Function.py -------------------------------------------------------------------------------- /FunRelation/Core/Similarty_Function.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Similarty_Function.pyc -------------------------------------------------------------------------------- /FunRelation/Core/TargetPlug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/TargetPlug.py -------------------------------------------------------------------------------- /FunRelation/Core/Train_LogisticRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Train_LogisticRegression.py -------------------------------------------------------------------------------- /FunRelation/Core/Train_LogisticRegression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Train_LogisticRegression.pyc -------------------------------------------------------------------------------- /FunRelation/Core/Train_MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Train_MLP.py -------------------------------------------------------------------------------- /FunRelation/Core/Train_MLP.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Train_MLP.pyc -------------------------------------------------------------------------------- /FunRelation/Core/Train_Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/Train_Main.py -------------------------------------------------------------------------------- /FunRelation/Core/attr_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/attr_info.py -------------------------------------------------------------------------------- /FunRelation/Core/attr_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/attr_info.pyc -------------------------------------------------------------------------------- /FunRelation/Core/bugSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/bugSearch.py -------------------------------------------------------------------------------- /FunRelation/Core/dbService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/dbService.py -------------------------------------------------------------------------------- /FunRelation/Core/dbService.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/dbService.pyc -------------------------------------------------------------------------------- /FunRelation/Core/idaout.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FunRelation/Core/savenet.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/Core/savenet.data -------------------------------------------------------------------------------- /FunRelation/FunRelation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/FunRelation/FunRelation.sh -------------------------------------------------------------------------------- /FunRelation/idaout.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FunRelation/result.json: -------------------------------------------------------------------------------- 1 | {"authenticationcgi_main": 0.96586994544290627} 2 | -------------------------------------------------------------------------------- /GLOBAL_CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/GLOBAL_CONFIG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/README.md -------------------------------------------------------------------------------- /Statistics/1_show_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/1_show_global -------------------------------------------------------------------------------- /Statistics/get_manufacturer_bin_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/get_manufacturer_bin_num -------------------------------------------------------------------------------- /Statistics/get_total_bin_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/get_total_bin_num -------------------------------------------------------------------------------- /Statistics/get_total_class_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/get_total_class_num -------------------------------------------------------------------------------- /Statistics/get_total_decode_firm_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/get_total_decode_firm_num -------------------------------------------------------------------------------- /Statistics/get_total_firmware_num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/get_total_firmware_num.sh -------------------------------------------------------------------------------- /Statistics/get_total_model_num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/get_total_model_num.sh -------------------------------------------------------------------------------- /Statistics/get_total_os_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/Statistics/get_total_os_num -------------------------------------------------------------------------------- /VulGather/VulGather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/VulGather/VulGather.sh -------------------------------------------------------------------------------- /gujian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/gujian.json -------------------------------------------------------------------------------- /qq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovepp/firminsight/HEAD/qq --------------------------------------------------------------------------------