Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Z4nzu
GitHub Repository: Z4nzu/hackingtool
Path: blob/master/tools/anonsurf.py
1268 views
1
# coding=utf-8
2
import os
3
4
from core import HackingTool
5
from core import HackingToolsCollection
6
7
8
class AnonymouslySurf(HackingTool):
9
TITLE = "Anonymously Surf"
10
DESCRIPTION = "It automatically overwrites the RAM when\n" \
11
"the system is shutting down and also change Ip."
12
INSTALL_COMMANDS = [
13
"sudo git clone https://github.com/Und3rf10w/kali-anonsurf.git",
14
"cd kali-anonsurf && sudo ./installer.sh && cd .. && sudo rm -r kali-anonsurf"
15
]
16
RUN_COMMANDS = ["sudo anonsurf start"]
17
PROJECT_URL = "https://github.com/Und3rf10w/kali-anonsurf"
18
19
def __init__(self):
20
super(AnonymouslySurf, self).__init__([('Stop', self.stop)])
21
22
def stop(self):
23
os.system("sudo anonsurf stop")
24
25
26
class Multitor(HackingTool):
27
TITLE = "Multitor"
28
DESCRIPTION = "How to stay in multi places at the same time"
29
INSTALL_COMMANDS = [
30
"sudo git clone https://github.com/trimstray/multitor.git",
31
"cd multitor;sudo bash setup.sh install"
32
]
33
RUN_COMMANDS = ["multitor --init 2 --user debian-tor --socks-port 9000 --control-port 9900 --proxy privoxy --haproxy"]
34
PROJECT_URL = "https://github.com/trimstray/multitor"
35
36
def __init__(self):
37
super(Multitor, self).__init__(runnable = False)
38
39
40
class AnonSurfTools(HackingToolsCollection):
41
TITLE = "Anonymously Hiding Tools"
42
DESCRIPTION = ""
43
TOOLS = [
44
AnonymouslySurf(),
45
Multitor()
46
]
47
48