├── .gitignore ├── .gitmodules ├── BT └── homehub3b │ ├── LICENSE │ ├── README │ ├── TNS Vulnerability Report BT HomeHub 3.0b.txt │ ├── environment.py │ ├── hh3b_exploit.py │ ├── hh3b_exploit_dropper.py │ ├── hh3b_exploit_multi.py │ ├── msearch_crash.py │ ├── stage2 │ └── tk.tar.gz ├── LICENSE ├── README ├── dlink └── dir-815-a1 │ ├── hedwig_cgi_httpcookie │ ├── README.md │ ├── dir815_httpcookie_overflow.py │ └── runhedwig.sh │ └── upnp-command-injection │ ├── README.md │ ├── dir815-upnp-inject.py │ └── msearch_packet.py └── netgear ├── r6200 ├── addportmapping-csrf │ ├── AddPortMapping.pcap │ ├── README.md │ └── addportmapping.html └── setfirmware │ ├── README.md │ ├── environment.py │ ├── firmware_building │ ├── README.md │ ├── build_janky_fw.py │ ├── buildfw.py │ ├── checksums │ │ ├── __init__.py │ │ ├── crc32.py │ │ └── libacos.py │ ├── firmware_headers │ │ ├── __init__.py │ │ ├── ambit_header.py │ │ ├── janky_ambit_header.py │ │ └── trx.py │ └── make_mtd.py │ ├── firmware_exploit.py │ ├── payload-src │ ├── Makefile │ ├── README.md │ ├── buildmipsel.sh │ ├── stage1 │ │ ├── Makefile │ │ ├── buildmipsel.sh │ │ └── src │ │ │ ├── Makefile │ │ │ ├── buildmipsel.sh │ │ │ └── wpsd │ └── stage2 │ │ ├── Makefile │ │ ├── buildmipsel.sh │ │ └── src │ │ ├── Makefile │ │ ├── buildmipsel.sh │ │ ├── pony.png │ │ ├── rtcp │ │ ├── Makefile │ │ └── reverse-tcp.c │ │ └── telnetenabled │ └── setfirmware.py ├── wndr3700v3 ├── .gitignore ├── LICENSE └── fw_versions │ ├── 1.0.0.18 │ ├── BH_US_12_Cutlip_SQL_Exploitation_Slides.pdf │ ├── BH_US_12_Cutlip_SQL_Exploitation_WP.pdf │ ├── README │ ├── WNDR3700versions.py │ ├── albumartinject.py │ ├── dlnainject.py │ ├── environment.py │ ├── notes.txt │ └── soaprequest.xml │ └── 1.0.0.30 │ ├── README.md │ ├── SQL Injection to MIPS Overflows - Part Deux.pdf │ ├── browse_request.xml │ ├── dlna_overflow.py │ ├── exploit_dlna.py │ ├── minidlna_verification.py │ ├── notes.txt │ └── soap_x_setbookmark.xml └── wndr3700v4 ├── dlna_buffer_overflow ├── README.md ├── environment.py ├── overflow.py ├── soap_sql_inject.py ├── soaprequest_browse.xml └── soaprequest_search.xml └── ping6_cmd_injection └── ping6_inject.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | simplesploit/ 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/.gitmodules -------------------------------------------------------------------------------- /BT/homehub3b/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/LICENSE -------------------------------------------------------------------------------- /BT/homehub3b/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/README -------------------------------------------------------------------------------- /BT/homehub3b/TNS Vulnerability Report BT HomeHub 3.0b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/TNS Vulnerability Report BT HomeHub 3.0b.txt -------------------------------------------------------------------------------- /BT/homehub3b/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/environment.py -------------------------------------------------------------------------------- /BT/homehub3b/hh3b_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/hh3b_exploit.py -------------------------------------------------------------------------------- /BT/homehub3b/hh3b_exploit_dropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/hh3b_exploit_dropper.py -------------------------------------------------------------------------------- /BT/homehub3b/hh3b_exploit_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/hh3b_exploit_multi.py -------------------------------------------------------------------------------- /BT/homehub3b/msearch_crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/msearch_crash.py -------------------------------------------------------------------------------- /BT/homehub3b/stage2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/stage2 -------------------------------------------------------------------------------- /BT/homehub3b/tk.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/BT/homehub3b/tk.tar.gz -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/README -------------------------------------------------------------------------------- /dlink/dir-815-a1/hedwig_cgi_httpcookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/dlink/dir-815-a1/hedwig_cgi_httpcookie/README.md -------------------------------------------------------------------------------- /dlink/dir-815-a1/hedwig_cgi_httpcookie/dir815_httpcookie_overflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/dlink/dir-815-a1/hedwig_cgi_httpcookie/dir815_httpcookie_overflow.py -------------------------------------------------------------------------------- /dlink/dir-815-a1/hedwig_cgi_httpcookie/runhedwig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/dlink/dir-815-a1/hedwig_cgi_httpcookie/runhedwig.sh -------------------------------------------------------------------------------- /dlink/dir-815-a1/upnp-command-injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/dlink/dir-815-a1/upnp-command-injection/README.md -------------------------------------------------------------------------------- /dlink/dir-815-a1/upnp-command-injection/dir815-upnp-inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/dlink/dir-815-a1/upnp-command-injection/dir815-upnp-inject.py -------------------------------------------------------------------------------- /dlink/dir-815-a1/upnp-command-injection/msearch_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/dlink/dir-815-a1/upnp-command-injection/msearch_packet.py -------------------------------------------------------------------------------- /netgear/r6200/addportmapping-csrf/AddPortMapping.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/addportmapping-csrf/AddPortMapping.pcap -------------------------------------------------------------------------------- /netgear/r6200/addportmapping-csrf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/addportmapping-csrf/README.md -------------------------------------------------------------------------------- /netgear/r6200/addportmapping-csrf/addportmapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/addportmapping-csrf/addportmapping.html -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/README.md -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/environment.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/README.md -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/build_janky_fw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/build_janky_fw.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/buildfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/buildfw.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/checksums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/checksums/crc32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/checksums/crc32.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/checksums/libacos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/checksums/libacos.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/firmware_headers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/firmware_headers/ambit_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/firmware_headers/ambit_header.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/firmware_headers/janky_ambit_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/firmware_headers/janky_ambit_header.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/firmware_headers/trx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/firmware_headers/trx.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_building/make_mtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_building/make_mtd.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/firmware_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/firmware_exploit.py -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/Makefile -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/README.md -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/buildmipsel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/buildmipsel.sh -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage1/Makefile -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage1/buildmipsel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage1/buildmipsel.sh -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage1/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage1/src/Makefile -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage1/src/buildmipsel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage1/src/buildmipsel.sh -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage1/src/wpsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage1/src/wpsd -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/Makefile -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/buildmipsel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/buildmipsel.sh -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/src/Makefile -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/src/buildmipsel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/src/buildmipsel.sh -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/src/pony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/src/pony.png -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/src/rtcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/src/rtcp/Makefile -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/src/rtcp/reverse-tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/src/rtcp/reverse-tcp.c -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/payload-src/stage2/src/telnetenabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/payload-src/stage2/src/telnetenabled -------------------------------------------------------------------------------- /netgear/r6200/setfirmware/setfirmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/r6200/setfirmware/setfirmware.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/.gitignore: -------------------------------------------------------------------------------- 1 | WNDR3700alt.py 2 | -------------------------------------------------------------------------------- /netgear/wndr3700v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/LICENSE -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/BH_US_12_Cutlip_SQL_Exploitation_Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/BH_US_12_Cutlip_SQL_Exploitation_Slides.pdf -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/BH_US_12_Cutlip_SQL_Exploitation_WP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/BH_US_12_Cutlip_SQL_Exploitation_WP.pdf -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/README -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/WNDR3700versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/WNDR3700versions.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/albumartinject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/albumartinject.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/dlnainject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/dlnainject.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/environment.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/notes.txt -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.18/soaprequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.18/soaprequest.xml -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/README.md -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/SQL Injection to MIPS Overflows - Part Deux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/SQL Injection to MIPS Overflows - Part Deux.pdf -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/browse_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/browse_request.xml -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/dlna_overflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/dlna_overflow.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/exploit_dlna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/exploit_dlna.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/minidlna_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/minidlna_verification.py -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/notes.txt -------------------------------------------------------------------------------- /netgear/wndr3700v3/fw_versions/1.0.0.30/soap_x_setbookmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v3/fw_versions/1.0.0.30/soap_x_setbookmark.xml -------------------------------------------------------------------------------- /netgear/wndr3700v4/dlna_buffer_overflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v4/dlna_buffer_overflow/README.md -------------------------------------------------------------------------------- /netgear/wndr3700v4/dlna_buffer_overflow/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v4/dlna_buffer_overflow/environment.py -------------------------------------------------------------------------------- /netgear/wndr3700v4/dlna_buffer_overflow/overflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v4/dlna_buffer_overflow/overflow.py -------------------------------------------------------------------------------- /netgear/wndr3700v4/dlna_buffer_overflow/soap_sql_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v4/dlna_buffer_overflow/soap_sql_inject.py -------------------------------------------------------------------------------- /netgear/wndr3700v4/dlna_buffer_overflow/soaprequest_browse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v4/dlna_buffer_overflow/soaprequest_browse.xml -------------------------------------------------------------------------------- /netgear/wndr3700v4/dlna_buffer_overflow/soaprequest_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v4/dlna_buffer_overflow/soaprequest_search.xml -------------------------------------------------------------------------------- /netgear/wndr3700v4/ping6_cmd_injection/ping6_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcutlip/exploit-poc/HEAD/netgear/wndr3700v4/ping6_cmd_injection/ping6_inject.py --------------------------------------------------------------------------------