mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 00:49:59 +00:00
Phase 4 (core.py — largely done in Phase 1, completed here): - HackingTool: add ARCHIVED, ARCHIVED_REASON, SUPPORTED_OS, REQUIRES_* fields - HackingTool: remove INSTALLATION_DIR (unused) - HackingToolsCollection: add _active_tools(), _archived_tools(), _incompatible_tools() - HackingToolsCollection: add _show_archived_tools() (option 98 sub-menu) - HackingToolsCollection.show_options(): filter by OS and ARCHIVED flag - OS-incompatible tools show count but are hidden from menu - Archived tools accessible via option 98 with reason displayed Phase 5 (all 22 remaining tool files): - Remove local console = Console() and _theme = Theme() from all 22 files - Remove P_COLOR and PURPLE_STYLE local constants - Add `from core import HackingTool, HackingToolsCollection, console` everywhere - Remove show_options() overrides from all collection classes (500+ lines deleted) - Remove pretty_print() overrides from all collection classes - Remove _get_attr() / _get_attr_fallback() helpers from all collection classes - Replace super(ClassName, self).__init__() → super().__init__() in all files - Remove # coding=utf-8 headers from all files - Fix remaining PURPLE_STYLE usages → "bold magenta" literal All 28 tool modules import cleanly. Zero local console instances remain.
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
import os
|
|
import subprocess
|
|
|
|
from core import HackingTool, HackingToolsCollection, console
|
|
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
|
|
|
|
from rich.panel import Panel
|
|
from rich.prompt import Prompt
|
|
|
|
|
|
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):
|
|
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"),
|
|
)
|
|
|
|
|
|
class OtherTools(HackingToolsCollection):
|
|
TITLE = "Other tools"
|
|
TOOLS = [
|
|
SocialMediaBruteforceTools(),
|
|
AndroidAttackTools(),
|
|
HatCloud(),
|
|
IDNHomographAttackTools(),
|
|
EmailVerifyTools(),
|
|
HashCrackingTools(),
|
|
WifiJammingTools(),
|
|
SocialMediaFinderTools(),
|
|
PayloadInjectorTools(),
|
|
WebCrawlingTools(),
|
|
MixTools()
|
|
]
|
|
|
|
if __name__ == "__main__":
|
|
tools = OtherTools()
|
|
tools.show_options()
|