2020-08-14 11:11:59 +00:00
|
|
|
import os
|
|
|
|
|
import subprocess
|
|
|
|
|
|
2026-03-15 08:25:04 +00:00
|
|
|
from core import HackingTool, HackingToolsCollection, console
|
2020-08-14 11:11:59 +00:00
|
|
|
from tools.others.android_attack import AndroidAttackTools
|
|
|
|
|
from tools.others.email_verifier import EmailVerifyTools
|
|
|
|
|
from tools.others.hash_crack import HashCrackingTools
|
|
|
|
|
from tools.others.homograph_attacks import IDNHomographAttackTools
|
|
|
|
|
from tools.others.mix_tools import MixTools
|
|
|
|
|
from tools.others.payload_injection import PayloadInjectorTools
|
|
|
|
|
from tools.others.socialmedia import SocialMediaBruteforceTools
|
|
|
|
|
from tools.others.socialmedia_finder import SocialMediaFinderTools
|
|
|
|
|
from tools.others.web_crawling import WebCrawlingTools
|
|
|
|
|
from tools.others.wifi_jamming import WifiJammingTools
|
|
|
|
|
|
2025-10-14 06:02:18 +00:00
|
|
|
from rich.panel import Panel
|
|
|
|
|
from rich.prompt import Prompt
|
|
|
|
|
|
2020-08-14 11:11:59 +00:00
|
|
|
|
|
|
|
|
class HatCloud(HackingTool):
|
|
|
|
|
TITLE = "HatCloud(Bypass CloudFlare for IP)"
|
|
|
|
|
DESCRIPTION = "HatCloud build in Ruby. It makes bypass in CloudFlare for " \
|
|
|
|
|
"discover real IP."
|
|
|
|
|
INSTALL_COMMANDS = ["git clone https://github.com/HatBashBR/HatCloud.git"]
|
|
|
|
|
PROJECT_URL = "https://github.com/HatBashBR/HatCloud"
|
|
|
|
|
|
|
|
|
|
def run(self):
|
2026-03-15 08:24:03 +00:00
|
|
|
from config import get_tools_dir
|
|
|
|
|
from rich.prompt import Prompt
|
|
|
|
|
site = Prompt.ask("Enter Site")
|
|
|
|
|
# Bug 3 fix: os.chdir() replaced with cwd= parameter
|
|
|
|
|
subprocess.run(
|
|
|
|
|
["sudo", "ruby", "hatcloud.rb", "-b", site],
|
|
|
|
|
cwd=str(get_tools_dir() / "HatCloud"),
|
|
|
|
|
)
|
2020-08-14 11:11:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class OtherTools(HackingToolsCollection):
|
|
|
|
|
TITLE = "Other tools"
|
|
|
|
|
TOOLS = [
|
|
|
|
|
SocialMediaBruteforceTools(),
|
|
|
|
|
AndroidAttackTools(),
|
|
|
|
|
HatCloud(),
|
|
|
|
|
IDNHomographAttackTools(),
|
|
|
|
|
EmailVerifyTools(),
|
|
|
|
|
HashCrackingTools(),
|
|
|
|
|
WifiJammingTools(),
|
|
|
|
|
SocialMediaFinderTools(),
|
|
|
|
|
PayloadInjectorTools(),
|
|
|
|
|
WebCrawlingTools(),
|
|
|
|
|
MixTools()
|
|
|
|
|
]
|
2025-10-14 06:02:18 +00:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
tools = OtherTools()
|
|
|
|
|
tools.show_options()
|