Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hackingtool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
test
Hackingtool
Commits
1509c0ca
Unverified
Commit
1509c0ca
authored
8 months ago
by
GMDSantana
Browse files
Options
Downloads
Patches
Plain Diff
Update Takeover and add Crivo
parent
fbffd2ef
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+2
-1
2 additions, 1 deletion
README.md
tools/others/mix_tools.py
+21
-1
21 additions, 1 deletion
tools/others/mix_tools.py
tools/webattack.py
+2
-2
2 additions, 2 deletions
tools/webattack.py
with
25 additions
and
4 deletions
README.md
+
2
−
1
View file @
1509c0ca
...
...
@@ -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
)
...
...
@@ -201,6 +201,7 @@
-
[
Gospider
](
https://github.com/jaeles-project/gospider
)
#### Mix tools
-
Terminal Multiplexer
-
[
Crivo
](
https://github.com/GMDSantana/crivo
)

...
...
This diff is collapsed.
Click to expand it.
tools/others/mix_tools.py
+
21
−
1
View file @
1509c0ca
...
...
@@ -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
()
]
This diff is collapsed.
Click to expand it.
tools/webattack.py
+
2
−
2
View file @
1509c0ca
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment