1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-07-11 14:30:25 +02:00

Update Takeover and add Crivo

This commit is contained in:
GMDSantana
2024-11-19 14:04:31 +08:00
parent fbffd2ef27
commit 1509c0ca70
3 changed files with 25 additions and 4 deletions

View File

@ -14,6 +14,26 @@ class TerminalMultiplexer(HackingTool):
super(TerminalMultiplexer, self).__init__(runnable = False)
class Crivo(HackingTool):
TITLE = "Crivo"
DESCRIPTION = "A tool for extracting and filtering URLs, IPs, domains, " \
"\n and subdomains from web pages or text, " \
"with built-in web scraping capabilities.\n" \
"See: python3 crivo_cli.py -h"
INSTALL_COMMANDS = [
"git clone https://github.com/GMDSantana/crivo",
"cd crivo;pip install -r requirements.txt"
]
PROJECT_URL = "https://github.com/GMDSantana/crivo"
def __init__(self):
super(Crivo, self).__init__(runnable = False)
class MixTools(HackingToolsCollection):
TITLE = "Mix tools"
TOOLS = [TerminalMultiplexer()]
TOOLS = [
TerminalMultiplexer(),
Crivo()
]

View File

@ -73,10 +73,10 @@ class SubDomainTakeOver(HackingTool):
"that has been removed or deleted.\n" \
"Usage:python3 takeover.py -d www.domain.com -v"
INSTALL_COMMANDS = [
"git clone https://github.com/m4ll0k/takeover.git",
"git clone https://github.com/edoardottt/takeover.git",
"cd takeover;sudo python3 setup.py install"
]
PROJECT_URL = "https://github.com/m4ll0k/takeover"
PROJECT_URL = "https://github.com/edoardottt/takeover.git"
def __init__(self):
super(SubDomainTakeOver, self).__init__(runnable = False)