Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Z4nzu
GitHub Repository: Z4nzu/hackingtool
Path: blob/master/tools/remote_administration.py
1268 views
1
# coding=utf-8
2
from core import HackingTool
3
from core import HackingToolsCollection
4
5
6
class Stitch(HackingTool):
7
TITLE = "Stitch"
8
DESCRIPTION = "Stitch is a cross platform python framework.\n" \
9
"which allows you to build custom payloads\n" \
10
"For Windows, Mac and Linux."
11
INSTALL_COMMANDS = [
12
"sudo git clone https://github.com/nathanlopez/Stitch.git",
13
"cd Stitch;sudo pip install -r lnx_requirements.txt"
14
]
15
RUN_COMMANDS = ["cd Stitch;python main.py"]
16
PROJECT_URL = "https://github.com/nathanlopez/Stitch"
17
18
19
class Pyshell(HackingTool):
20
TITLE = "Pyshell"
21
DESCRIPTION = "Pyshell is a Rat Tool that can be able to download & upload " \
22
"files,\n Execute OS Command and more.."
23
INSTALL_COMMANDS = [
24
"sudo git clone https://github.com/knassar702/Pyshell.git;"
25
"sudo pip install pyscreenshot python-nmap requests"
26
]
27
RUN_COMMANDS = ["cd Pyshell;./Pyshell"]
28
PROJECT_URL = "https://github.com/knassar702/pyshell"
29
30
31
class RemoteAdministrationTools(HackingToolsCollection):
32
TITLE = "Remote Administrator Tools (RAT)"
33
TOOLS = [
34
Stitch(),
35
Pyshell()
36
]
37
38