Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Z4nzu
GitHub Repository: Z4nzu/hackingtool
Path: blob/master/tools/other_tools.py
1269 views
1
# coding=utf-8
2
import os
3
import subprocess
4
5
from core import HackingTool
6
from core import HackingToolsCollection
7
from tools.others.android_attack import AndroidAttackTools
8
from tools.others.email_verifier import EmailVerifyTools
9
from tools.others.hash_crack import HashCrackingTools
10
from tools.others.homograph_attacks import IDNHomographAttackTools
11
from tools.others.mix_tools import MixTools
12
from tools.others.payload_injection import PayloadInjectorTools
13
from tools.others.socialmedia import SocialMediaBruteforceTools
14
from tools.others.socialmedia_finder import SocialMediaFinderTools
15
from tools.others.web_crawling import WebCrawlingTools
16
from tools.others.wifi_jamming import WifiJammingTools
17
18
19
class HatCloud(HackingTool):
20
TITLE = "HatCloud(Bypass CloudFlare for IP)"
21
DESCRIPTION = "HatCloud build in Ruby. It makes bypass in CloudFlare for " \
22
"discover real IP."
23
INSTALL_COMMANDS = ["git clone https://github.com/HatBashBR/HatCloud.git"]
24
PROJECT_URL = "https://github.com/HatBashBR/HatCloud"
25
26
def run(self):
27
site = input("Enter Site >> ")
28
os.chdir("HatCloud")
29
subprocess.run(["sudo", "ruby", "hatcloud.rb", "-b", site])
30
31
32
class OtherTools(HackingToolsCollection):
33
TITLE = "Other tools"
34
TOOLS = [
35
SocialMediaBruteforceTools(),
36
AndroidAttackTools(),
37
HatCloud(),
38
IDNHomographAttackTools(),
39
EmailVerifyTools(),
40
HashCrackingTools(),
41
WifiJammingTools(),
42
SocialMediaFinderTools(),
43
PayloadInjectorTools(),
44
WebCrawlingTools(),
45
MixTools()
46
]
47
48