Skip to content

Commit c43f290

Browse files
authored
Merge pull request #528 from GMDSantana/master
2 parents fbffd2e + 2739ec2 commit c43f290

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
- [SubDomain Finder](https://github.com/aboul3la/Sublist3r)
114114
- [CheckURL](https://github.com/UndeadSec/checkURL)
115115
- [Blazy(Also Find ClickJacking)](https://github.com/UltimateHackers/Blazy)
116-
- [Sub-Domain TakeOver](https://github.com/m4ll0k/takeover)
116+
- [Sub-Domain TakeOver](https://github.com/edoardottt/takeover)
117117
- [Dirb](https://gitlab.com/kalilinux/packages/dirb)
118118
### Post exploitation tools
119119
- [Vegile - Ghost In The Shell](https://github.com/Screetsec/Vegile)
@@ -201,6 +201,7 @@
201201
- [Gospider](https://github.com/jaeles-project/gospider)
202202
#### Mix tools
203203
- Terminal Multiplexer
204+
- [Crivo](https://github.com/GMDSantana/crivo)
204205

205206

206207
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A00.png)

tools/others/mix_tools.py

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,26 @@ def __init__(self):
1414
super(TerminalMultiplexer, self).__init__(runnable = False)
1515

1616

17+
class Crivo(HackingTool):
18+
TITLE = "Crivo"
19+
DESCRIPTION = "A tool for extracting and filtering URLs, IPs, domains, " \
20+
"\n and subdomains from web pages or text, " \
21+
"with built-in web scraping capabilities.\n" \
22+
"See: python3 crivo_cli.py -h"
23+
INSTALL_COMMANDS = [
24+
"git clone https://github.com/GMDSantana/crivo.git",
25+
"cd crivo;pip install -r requirements.txt"
26+
]
27+
PROJECT_URL = "https://github.com/GMDSantana/crivo"
28+
29+
def __init__(self):
30+
super(Crivo, self).__init__(runnable = False)
31+
32+
1733
class MixTools(HackingToolsCollection):
1834
TITLE = "Mix tools"
19-
TOOLS = [TerminalMultiplexer()]
35+
TOOLS = [
36+
TerminalMultiplexer(),
37+
Crivo()
38+
]
39+

tools/webattack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ class SubDomainTakeOver(HackingTool):
7373
"that has been removed or deleted.\n" \
7474
"Usage:python3 takeover.py -d www.domain.com -v"
7575
INSTALL_COMMANDS = [
76-
"git clone https://github.com/m4ll0k/takeover.git",
76+
"git clone https://github.com/edoardottt/takeover.git",
7777
"cd takeover;sudo python3 setup.py install"
7878
]
79-
PROJECT_URL = "https://github.com/m4ll0k/takeover"
79+
PROJECT_URL = "https://github.com/edoardottt/takeover"
8080

8181
def __init__(self):
8282
super(SubDomainTakeOver, self).__init__(runnable = False)

0 commit comments

Comments
 (0)