Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Takeover and add Crivo #528

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
- [SubDomain Finder](https://github.com/aboul3la/Sublist3r)
- [CheckURL](https://github.com/UndeadSec/checkURL)
- [Blazy(Also Find ClickJacking)](https://github.com/UltimateHackers/Blazy)
- [Sub-Domain TakeOver](https://github.com/m4ll0k/takeover)
- [Sub-Domain TakeOver](https://github.com/edoardottt/takeover)
- [Dirb](https://gitlab.com/kalilinux/packages/dirb)
### Post exploitation tools
- [Vegile - Ghost In The Shell](https://github.com/Screetsec/Vegile)
Expand Down Expand Up @@ -201,6 +201,7 @@
- [Gospider](https://github.com/jaeles-project/gospider)
#### Mix tools
- Terminal Multiplexer
- [Crivo](https://github.com/GMDSantana/crivo)


![](https://github.com/Z4nzu/hackingtool/blob/master/images/A00.png)
Expand Down
22 changes: 21 additions & 1 deletion tools/others/mix_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,26 @@ def __init__(self):
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.git",
"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()
]

4 changes: 2 additions & 2 deletions tools/webattack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

def __init__(self):
super(SubDomainTakeOver, self).__init__(runnable = False)
Expand Down