├── .github ├── FUNDING.yml └── stale.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── images ├── IP_address.jpg ├── WPS.png ├── finished.jpg ├── ipconfig.jpg ├── press_WPS.jpg ├── putty.png ├── screen1.jpg ├── screen2.jpg ├── tch-exploit-win.jpg └── tftp.png ├── package.json └── src ├── README.md ├── args.coffee ├── ask.coffee ├── dhcp ├── constants.coffee ├── index.coffee ├── lease.coffee ├── options.coffee ├── protocol.coffee ├── seqbuffer.coffee ├── server.coffee └── tools.coffee ├── dns.coffee ├── get-port.coffee ├── http ├── cwmp │ ├── index.coffee │ └── xml.coffee ├── file.coffee ├── index.coffee └── router.coffee ├── index.coffee ├── ips.coffee ├── ntp ├── client.coffee ├── index.coffee ├── packet.coffee ├── server.coffee └── server2.coffee └── tftp.coffee /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: paypal.me/seud0nym -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/README.md -------------------------------------------------------------------------------- /images/IP_address.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/IP_address.jpg -------------------------------------------------------------------------------- /images/WPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/WPS.png -------------------------------------------------------------------------------- /images/finished.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/finished.jpg -------------------------------------------------------------------------------- /images/ipconfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/ipconfig.jpg -------------------------------------------------------------------------------- /images/press_WPS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/press_WPS.jpg -------------------------------------------------------------------------------- /images/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/putty.png -------------------------------------------------------------------------------- /images/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/screen1.jpg -------------------------------------------------------------------------------- /images/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/screen2.jpg -------------------------------------------------------------------------------- /images/tch-exploit-win.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/tch-exploit-win.jpg -------------------------------------------------------------------------------- /images/tftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/images/tftp.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/README.md -------------------------------------------------------------------------------- /src/args.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/args.coffee -------------------------------------------------------------------------------- /src/ask.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/ask.coffee -------------------------------------------------------------------------------- /src/dhcp/constants.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/constants.coffee -------------------------------------------------------------------------------- /src/dhcp/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/index.coffee -------------------------------------------------------------------------------- /src/dhcp/lease.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/lease.coffee -------------------------------------------------------------------------------- /src/dhcp/options.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/options.coffee -------------------------------------------------------------------------------- /src/dhcp/protocol.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/protocol.coffee -------------------------------------------------------------------------------- /src/dhcp/seqbuffer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/seqbuffer.coffee -------------------------------------------------------------------------------- /src/dhcp/server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/server.coffee -------------------------------------------------------------------------------- /src/dhcp/tools.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dhcp/tools.coffee -------------------------------------------------------------------------------- /src/dns.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/dns.coffee -------------------------------------------------------------------------------- /src/get-port.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/get-port.coffee -------------------------------------------------------------------------------- /src/http/cwmp/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/http/cwmp/index.coffee -------------------------------------------------------------------------------- /src/http/cwmp/xml.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/http/cwmp/xml.coffee -------------------------------------------------------------------------------- /src/http/file.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/http/file.coffee -------------------------------------------------------------------------------- /src/http/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/http/index.coffee -------------------------------------------------------------------------------- /src/http/router.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/http/router.coffee -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/index.coffee -------------------------------------------------------------------------------- /src/ips.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/ips.coffee -------------------------------------------------------------------------------- /src/ntp/client.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/ntp/client.coffee -------------------------------------------------------------------------------- /src/ntp/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/ntp/index.coffee -------------------------------------------------------------------------------- /src/ntp/packet.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/ntp/packet.coffee -------------------------------------------------------------------------------- /src/ntp/server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/ntp/server.coffee -------------------------------------------------------------------------------- /src/ntp/server2.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/ntp/server2.coffee -------------------------------------------------------------------------------- /src/tftp.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seud0nym/tch-exploit/HEAD/src/tftp.coffee --------------------------------------------------------------------------------