├── CITATION.cff ├── README.md ├── analyzer ├── elf_analyzer.py ├── kernel_analyzer.sh ├── kernel_example │ ├── elf_kernel │ └── raw_kernel └── stc_check.py ├── metadata ├── 360.json ├── avm.json ├── belkin.json ├── buffalo.json ├── camius.json ├── dlink.json ├── hikvision.json ├── linksys.json ├── mercury.json ├── mikrotik.json ├── netcore.json ├── netgear.json ├── openwrt.json ├── overall.json ├── overall.json.gz ├── routertech.json ├── supermirco.json ├── tenda-en.json ├── tenda-zh.json ├── tenvis.json ├── tomato.json ├── tplink-en.json ├── tplink-zh.json ├── trendnet.json ├── ubiquiti.json ├── ublox.json └── zyxel.json └── scraper ├── .gitignore ├── LICENSE.txt ├── firmware ├── __init__.py ├── items.py ├── loader.py ├── pipelines.py ├── settings.py └── spiders │ ├── 360.py │ ├── __init__.py │ ├── avm.py │ ├── belkin.py │ ├── buffalo.py │ ├── camius.py │ ├── dlink.py │ ├── hikvision.py │ ├── linksys.py │ ├── mercury.py │ ├── mikrotik.py │ ├── netcore.py │ ├── netgear.py │ ├── openwrt.py │ ├── qnap.py │ ├── routertech.py │ ├── supermicro.py │ ├── tenda_en.py │ ├── tenda_zh.py │ ├── tenvis.py │ ├── tomato-shibby.py │ ├── tp-link_en.py │ ├── tp-link_zh-cn.py │ ├── trendnet.py │ ├── ubiquiti.py │ ├── ublox.py │ └── zyxel.py ├── ftp.sh └── scrapy.cfg /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/CITATION.cff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/README.md -------------------------------------------------------------------------------- /analyzer/elf_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/analyzer/elf_analyzer.py -------------------------------------------------------------------------------- /analyzer/kernel_analyzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/analyzer/kernel_analyzer.sh -------------------------------------------------------------------------------- /analyzer/kernel_example/elf_kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/analyzer/kernel_example/elf_kernel -------------------------------------------------------------------------------- /analyzer/kernel_example/raw_kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/analyzer/kernel_example/raw_kernel -------------------------------------------------------------------------------- /analyzer/stc_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/analyzer/stc_check.py -------------------------------------------------------------------------------- /metadata/360.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/360.json -------------------------------------------------------------------------------- /metadata/avm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/avm.json -------------------------------------------------------------------------------- /metadata/belkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/belkin.json -------------------------------------------------------------------------------- /metadata/buffalo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/buffalo.json -------------------------------------------------------------------------------- /metadata/camius.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/camius.json -------------------------------------------------------------------------------- /metadata/dlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/dlink.json -------------------------------------------------------------------------------- /metadata/hikvision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/hikvision.json -------------------------------------------------------------------------------- /metadata/linksys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/linksys.json -------------------------------------------------------------------------------- /metadata/mercury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/mercury.json -------------------------------------------------------------------------------- /metadata/mikrotik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/mikrotik.json -------------------------------------------------------------------------------- /metadata/netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/netcore.json -------------------------------------------------------------------------------- /metadata/netgear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/netgear.json -------------------------------------------------------------------------------- /metadata/openwrt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/openwrt.json -------------------------------------------------------------------------------- /metadata/overall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/overall.json -------------------------------------------------------------------------------- /metadata/overall.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/overall.json.gz -------------------------------------------------------------------------------- /metadata/routertech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/routertech.json -------------------------------------------------------------------------------- /metadata/supermirco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/supermirco.json -------------------------------------------------------------------------------- /metadata/tenda-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/tenda-en.json -------------------------------------------------------------------------------- /metadata/tenda-zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/tenda-zh.json -------------------------------------------------------------------------------- /metadata/tenvis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/tenvis.json -------------------------------------------------------------------------------- /metadata/tomato.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/tomato.json -------------------------------------------------------------------------------- /metadata/tplink-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/tplink-en.json -------------------------------------------------------------------------------- /metadata/tplink-zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/tplink-zh.json -------------------------------------------------------------------------------- /metadata/trendnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/trendnet.json -------------------------------------------------------------------------------- /metadata/ubiquiti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/ubiquiti.json -------------------------------------------------------------------------------- /metadata/ublox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/ublox.json -------------------------------------------------------------------------------- /metadata/zyxel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/metadata/zyxel.json -------------------------------------------------------------------------------- /scraper/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | firmware/output 3 | -------------------------------------------------------------------------------- /scraper/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/LICENSE.txt -------------------------------------------------------------------------------- /scraper/firmware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraper/firmware/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/items.py -------------------------------------------------------------------------------- /scraper/firmware/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/loader.py -------------------------------------------------------------------------------- /scraper/firmware/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/pipelines.py -------------------------------------------------------------------------------- /scraper/firmware/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/settings.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/360.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraper/firmware/spiders/avm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/avm.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/belkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/belkin.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/buffalo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/buffalo.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/camius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/camius.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/dlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/dlink.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/hikvision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/hikvision.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/linksys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/linksys.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/mercury.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/mercury.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/mikrotik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/mikrotik.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/netcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/netcore.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/netgear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/netgear.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/openwrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/openwrt.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/qnap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/qnap.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/routertech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/routertech.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/supermicro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/supermicro.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/tenda_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/tenda_en.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/tenda_zh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/tenda_zh.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/tenvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/tenvis.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/tomato-shibby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/tomato-shibby.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/tp-link_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/tp-link_en.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/tp-link_zh-cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/tp-link_zh-cn.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/trendnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/trendnet.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/ubiquiti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/ubiquiti.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/ublox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/ublox.py -------------------------------------------------------------------------------- /scraper/firmware/spiders/zyxel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/firmware/spiders/zyxel.py -------------------------------------------------------------------------------- /scraper/ftp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/ftp.sh -------------------------------------------------------------------------------- /scraper/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junxzm1990/iot-security/HEAD/scraper/scrapy.cfg --------------------------------------------------------------------------------