2020-08-14 11:11:59 +00:00
|
|
|
# coding=utf-8
|
|
|
|
import os
|
|
|
|
|
|
|
|
from core import HackingTool
|
|
|
|
from core import HackingToolsCollection
|
|
|
|
|
|
|
|
|
|
|
|
class AnonymouslySurf(HackingTool):
|
2020-12-19 01:14:36 +00:00
|
|
|
TITLE = "Anonymously Surf"
|
2020-08-14 11:11:59 +00:00
|
|
|
DESCRIPTION = "It automatically overwrites the RAM when\n" \
|
|
|
|
"the system is shutting down and also change Ip."
|
|
|
|
INSTALL_COMMANDS = [
|
|
|
|
"sudo git clone https://github.com/Und3rf10w/kali-anonsurf.git",
|
|
|
|
"cd kali-anonsurf && sudo ./installer.sh && cd .. && sudo rm -r kali-anonsurf"
|
|
|
|
]
|
|
|
|
RUN_COMMANDS = ["sudo anonsurf start"]
|
|
|
|
PROJECT_URL = "https://github.com/Und3rf10w/kali-anonsurf"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(AnonymouslySurf, self).__init__([('Stop', self.stop)])
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
os.system("sudo anonsurf stop")
|
|
|
|
|
|
|
|
|
|
|
|
class Multitor(HackingTool):
|
|
|
|
TITLE = "Multitor"
|
|
|
|
DESCRIPTION = "How to stay in multi places at the same time"
|
|
|
|
INSTALL_COMMANDS = [
|
|
|
|
"sudo git clone https://github.com/trimstray/multitor.git",
|
|
|
|
"cd multitor;sudo bash setup.sh install"
|
|
|
|
]
|
2020-12-19 18:24:35 +00:00
|
|
|
RUN_COMMANDS = ["multitor --init 2 --user debian-tor --socks-port 9000 --control-port 9900 --proxy privoxy --haproxy"]
|
2020-08-14 11:11:59 +00:00
|
|
|
PROJECT_URL = "https://github.com/trimstray/multitor"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(Multitor, self).__init__(runnable = False)
|
|
|
|
|
|
|
|
|
|
|
|
class AnonSurfTools(HackingToolsCollection):
|
|
|
|
TITLE = "Anonymously Hiding Tools"
|
|
|
|
DESCRIPTION = ""
|
|
|
|
TOOLS = [
|
|
|
|
AnonymouslySurf(),
|
|
|
|
Multitor()
|
|
|
|
]
|