├── .github └── ISSUE_TEMPLATE │ └── custom.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── commandinfo ├── anon.txt ├── arpspoof.txt ├── aserver.txt ├── banner.txt ├── clear.txt ├── command.txt ├── dnsspoof.txt ├── dos.txt ├── exit.txt ├── hashid.txt ├── help.txt ├── infoscan.txt ├── monitor.txt ├── netscan.txt ├── password.txt ├── payload.txt ├── reboot.txt ├── sysinfo.txt ├── terminal.txt ├── traff.txt ├── verscan.txt └── wordlist.txt ├── commandlist ├── anon-off.py ├── anon-on.py ├── arpspoof.py ├── aserver.py ├── banner.py ├── clear.py ├── command.py ├── dnsspoof-all.py ├── dnsspoof.py ├── dos.py ├── exit.py ├── hashid.py ├── help.py ├── infoscan-o.py ├── infoscan.py ├── monitor-off.py ├── monitor-on.py ├── netscan.py ├── password.py ├── payload.py ├── reboot.py ├── sysinfo.py ├── terminal.py ├── traff.py ├── verscan.py └── wordlist.py ├── files ├── 1.png ├── 2.png ├── Instagram │ ├── Executable │ │ └── instagram.py │ ├── LICENSE │ ├── README.md │ ├── accounts.txt │ ├── database │ │ └── session.db │ ├── instagram.py │ ├── lib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bad_proxies.cpython-37.pyc │ │ │ ├── browser.cpython-37.pyc │ │ │ ├── bruter.cpython-37.pyc │ │ │ ├── const.cpython-37.pyc │ │ │ ├── display.cpython-37.pyc │ │ │ ├── password_manager.cpython-37.pyc │ │ │ ├── proxy.cpython-37.pyc │ │ │ ├── proxy_list.cpython-37.pyc │ │ │ ├── proxy_manager.cpython-37.pyc │ │ │ ├── scraper.cpython-37.pyc │ │ │ └── session.cpython-37.pyc │ │ ├── bad_proxies.py │ │ ├── browser.py │ │ ├── bruter.py │ │ ├── const.py │ │ ├── display.py │ │ ├── password_manager.py │ │ ├── proxy.py │ │ ├── proxy_list.py │ │ ├── proxy_manager.py │ │ ├── scraper.py │ │ └── session.py │ ├── requirements.txt │ └── test_proxies.py └── fb-brute.pl ├── htkl.py ├── htklupdate.py ├── install.py └── wordlists └── example.txt /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/README.md -------------------------------------------------------------------------------- /commandinfo/anon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/anon.txt -------------------------------------------------------------------------------- /commandinfo/arpspoof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/arpspoof.txt -------------------------------------------------------------------------------- /commandinfo/aserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/aserver.txt -------------------------------------------------------------------------------- /commandinfo/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/banner.txt -------------------------------------------------------------------------------- /commandinfo/clear.txt: -------------------------------------------------------------------------------- 1 | CLEAR: 2 | 3 | clears the screen 4 | -------------------------------------------------------------------------------- /commandinfo/command.txt: -------------------------------------------------------------------------------- 1 | COMMAND: 2 | 3 | runs a terminal command from the framework 4 | -------------------------------------------------------------------------------- /commandinfo/dnsspoof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/dnsspoof.txt -------------------------------------------------------------------------------- /commandinfo/dos.txt: -------------------------------------------------------------------------------- 1 | DOS: 2 | 3 | runs Denial-Of-Service attacks with udp, syn, tcp, etc 4 | -------------------------------------------------------------------------------- /commandinfo/exit.txt: -------------------------------------------------------------------------------- 1 | EXIT: 2 | 3 | exits htk-lite 4 | -------------------------------------------------------------------------------- /commandinfo/hashid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/hashid.txt -------------------------------------------------------------------------------- /commandinfo/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/help.txt -------------------------------------------------------------------------------- /commandinfo/infoscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/infoscan.txt -------------------------------------------------------------------------------- /commandinfo/monitor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/monitor.txt -------------------------------------------------------------------------------- /commandinfo/netscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/netscan.txt -------------------------------------------------------------------------------- /commandinfo/password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/password.txt -------------------------------------------------------------------------------- /commandinfo/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandinfo/payload.txt -------------------------------------------------------------------------------- /commandinfo/reboot.txt: -------------------------------------------------------------------------------- 1 | REBOOT: 2 | 3 | reboots the htk-lite script 4 | -------------------------------------------------------------------------------- /commandinfo/sysinfo.txt: -------------------------------------------------------------------------------- 1 | SYSINFO: 2 | 3 | shows information about your device uname, public ip, os, etc 4 | -------------------------------------------------------------------------------- /commandinfo/terminal.txt: -------------------------------------------------------------------------------- 1 | TERMINAL: 2 | 3 | open a new terminal window 4 | -------------------------------------------------------------------------------- /commandinfo/traff.txt: -------------------------------------------------------------------------------- 1 | TRAFF: 2 | 3 | shows internet traffic packages 4 | -------------------------------------------------------------------------------- /commandinfo/verscan.txt: -------------------------------------------------------------------------------- 1 | VERSCAN: 2 | 3 | scan services for their version 4 | -------------------------------------------------------------------------------- /commandinfo/wordlist.txt: -------------------------------------------------------------------------------- 1 | WORDLIST: 2 | 3 | make wordlists with cupp for dictionary attacks 4 | -------------------------------------------------------------------------------- /commandlist/anon-off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/anon-off.py -------------------------------------------------------------------------------- /commandlist/anon-on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/anon-on.py -------------------------------------------------------------------------------- /commandlist/arpspoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/arpspoof.py -------------------------------------------------------------------------------- /commandlist/aserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/aserver.py -------------------------------------------------------------------------------- /commandlist/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/banner.py -------------------------------------------------------------------------------- /commandlist/clear.py: -------------------------------------------------------------------------------- 1 | import os 2 | os.system("clear") 3 | -------------------------------------------------------------------------------- /commandlist/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/command.py -------------------------------------------------------------------------------- /commandlist/dnsspoof-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/dnsspoof-all.py -------------------------------------------------------------------------------- /commandlist/dnsspoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/dnsspoof.py -------------------------------------------------------------------------------- /commandlist/dos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/dos.py -------------------------------------------------------------------------------- /commandlist/exit.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit() 3 | -------------------------------------------------------------------------------- /commandlist/hashid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/hashid.py -------------------------------------------------------------------------------- /commandlist/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/help.py -------------------------------------------------------------------------------- /commandlist/infoscan-o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/infoscan-o.py -------------------------------------------------------------------------------- /commandlist/infoscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/infoscan.py -------------------------------------------------------------------------------- /commandlist/monitor-off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/monitor-off.py -------------------------------------------------------------------------------- /commandlist/monitor-on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/monitor-on.py -------------------------------------------------------------------------------- /commandlist/netscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/netscan.py -------------------------------------------------------------------------------- /commandlist/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/password.py -------------------------------------------------------------------------------- /commandlist/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/payload.py -------------------------------------------------------------------------------- /commandlist/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/reboot.py -------------------------------------------------------------------------------- /commandlist/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/sysinfo.py -------------------------------------------------------------------------------- /commandlist/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/terminal.py -------------------------------------------------------------------------------- /commandlist/traff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/traff.py -------------------------------------------------------------------------------- /commandlist/verscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/verscan.py -------------------------------------------------------------------------------- /commandlist/wordlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/commandlist/wordlist.py -------------------------------------------------------------------------------- /files/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/1.png -------------------------------------------------------------------------------- /files/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/2.png -------------------------------------------------------------------------------- /files/Instagram/Executable/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/Executable/instagram.py -------------------------------------------------------------------------------- /files/Instagram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/LICENSE -------------------------------------------------------------------------------- /files/Instagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/README.md -------------------------------------------------------------------------------- /files/Instagram/accounts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/accounts.txt -------------------------------------------------------------------------------- /files/Instagram/database/session.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/database/session.db -------------------------------------------------------------------------------- /files/Instagram/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/instagram.py -------------------------------------------------------------------------------- /files/Instagram/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # Date: 12/30/2018 2 | # Author: Mohamed 3 | -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/bad_proxies.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/bad_proxies.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/browser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/browser.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/bruter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/bruter.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/const.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/const.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/display.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/display.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/password_manager.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/password_manager.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/proxy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/proxy.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/proxy_list.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/proxy_list.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/proxy_manager.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/proxy_manager.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/scraper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/scraper.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/__pycache__/session.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/__pycache__/session.cpython-37.pyc -------------------------------------------------------------------------------- /files/Instagram/lib/bad_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/bad_proxies.py -------------------------------------------------------------------------------- /files/Instagram/lib/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/browser.py -------------------------------------------------------------------------------- /files/Instagram/lib/bruter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/bruter.py -------------------------------------------------------------------------------- /files/Instagram/lib/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/const.py -------------------------------------------------------------------------------- /files/Instagram/lib/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/display.py -------------------------------------------------------------------------------- /files/Instagram/lib/password_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/password_manager.py -------------------------------------------------------------------------------- /files/Instagram/lib/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/proxy.py -------------------------------------------------------------------------------- /files/Instagram/lib/proxy_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/proxy_list.py -------------------------------------------------------------------------------- /files/Instagram/lib/proxy_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/proxy_manager.py -------------------------------------------------------------------------------- /files/Instagram/lib/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/scraper.py -------------------------------------------------------------------------------- /files/Instagram/lib/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/lib/session.py -------------------------------------------------------------------------------- /files/Instagram/requirements.txt: -------------------------------------------------------------------------------- 1 | bs4 2 | future 3 | requests 4 | colorama 5 | -------------------------------------------------------------------------------- /files/Instagram/test_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/Instagram/test_proxies.py -------------------------------------------------------------------------------- /files/fb-brute.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/files/fb-brute.pl -------------------------------------------------------------------------------- /htkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/htkl.py -------------------------------------------------------------------------------- /htklupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/htklupdate.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/install.py -------------------------------------------------------------------------------- /wordlists/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unkn0wnh4ckr/htk-lite/HEAD/wordlists/example.txt --------------------------------------------------------------------------------