diff --git a/README.md b/README.md
index c82a5a159c227e05bb6ae9495d5807bb0bcf5a46..bf69339d9dc9fb136e557307cf63d07a499ea07d 100644
--- a/README.md
+++ b/README.md
@@ -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)
 
 
 ![](https://github.com/Z4nzu/hackingtool/blob/master/images/A00.png)
diff --git a/tools/others/mix_tools.py b/tools/others/mix_tools.py
index 574eb875f8a239c6cab5e2a66ced740cebf23ac2..9608302a858c997373a4d32fd2ec07e74d4e27fa 100644
--- a/tools/others/mix_tools.py
+++ b/tools/others/mix_tools.py
@@ -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.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()
+    ]
+
diff --git a/tools/webattack.py b/tools/webattack.py
index 45885f2de679dc4bdf5233d994dcffebf0cf9fb6..dfb4f2767336e84fc7dfbe3af48d6698b22a76a2 100644
--- a/tools/webattack.py
+++ b/tools/webattack.py
@@ -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)