mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-15 04:05:29 +00:00
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
# coding=utf-8
|
|
import os
|
|
import subprocess
|
|
|
|
from core import HackingTool
|
|
from core import HackingToolsCollection
|
|
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
|
|
|
|
|
|
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):
|
|
site = input("Enter Site >> ")
|
|
os.chdir("HatCloud")
|
|
subprocess.run(["sudo", "ruby", "hatcloud.rb", "-b", site])
|
|
|
|
|
|
class OtherTools(HackingToolsCollection):
|
|
TITLE = "Other tools"
|
|
TOOLS = [
|
|
SocialMediaBruteforceTools(),
|
|
AndroidAttackTools(),
|
|
HatCloud(),
|
|
IDNHomographAttackTools(),
|
|
EmailVerifyTools(),
|
|
HashCrackingTools(),
|
|
WifiJammingTools(),
|
|
SocialMediaFinderTools(),
|
|
PayloadInjectorTools(),
|
|
WebCrawlingTools(),
|
|
MixTools()
|
|
]
|