├── LICENSE ├── README.md └── hook-worm ├── Screenshots ├── backup.png ├── banner.png ├── portscan.png ├── samesitescripting.jpeg ├── sqli.png ├── subdomain.png └── xss.png ├── dtectcolors ├── __init__.py ├── __init__.pyc ├── ansi.py ├── ansi.pyc ├── ansitowin32.py ├── ansitowin32.pyc ├── initialise.py ├── initialise.pyc ├── test.s ├── win32.py ├── win32.pyc ├── winterm.py └── winterm.pyc ├── hookworm.py ├── moduleBS.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/README.md -------------------------------------------------------------------------------- /hook-worm/Screenshots/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/Screenshots/backup.png -------------------------------------------------------------------------------- /hook-worm/Screenshots/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/Screenshots/banner.png -------------------------------------------------------------------------------- /hook-worm/Screenshots/portscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/Screenshots/portscan.png -------------------------------------------------------------------------------- /hook-worm/Screenshots/samesitescripting.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/Screenshots/samesitescripting.jpeg -------------------------------------------------------------------------------- /hook-worm/Screenshots/sqli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/Screenshots/sqli.png -------------------------------------------------------------------------------- /hook-worm/Screenshots/subdomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/Screenshots/subdomain.png -------------------------------------------------------------------------------- /hook-worm/Screenshots/xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/Screenshots/xss.png -------------------------------------------------------------------------------- /hook-worm/dtectcolors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/__init__.py -------------------------------------------------------------------------------- /hook-worm/dtectcolors/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/__init__.pyc -------------------------------------------------------------------------------- /hook-worm/dtectcolors/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/ansi.py -------------------------------------------------------------------------------- /hook-worm/dtectcolors/ansi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/ansi.pyc -------------------------------------------------------------------------------- /hook-worm/dtectcolors/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/ansitowin32.py -------------------------------------------------------------------------------- /hook-worm/dtectcolors/ansitowin32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/ansitowin32.pyc -------------------------------------------------------------------------------- /hook-worm/dtectcolors/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/initialise.py -------------------------------------------------------------------------------- /hook-worm/dtectcolors/initialise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/initialise.pyc -------------------------------------------------------------------------------- /hook-worm/dtectcolors/test.s: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hook-worm/dtectcolors/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/win32.py -------------------------------------------------------------------------------- /hook-worm/dtectcolors/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/win32.pyc -------------------------------------------------------------------------------- /hook-worm/dtectcolors/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/winterm.py -------------------------------------------------------------------------------- /hook-worm/dtectcolors/winterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/dtectcolors/winterm.pyc -------------------------------------------------------------------------------- /hook-worm/hookworm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericpd/hook-pentester/HEAD/hook-worm/hookworm.py -------------------------------------------------------------------------------- /hook-worm/moduleBS.py: -------------------------------------------------------------------------------- 1 | v2025 2 | -------------------------------------------------------------------------------- /hook-worm/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | colorama 3 | requests 4 | urllib3 5 | tqdm --------------------------------------------------------------------------------