2026-03-15 08:25:04 +00:00
|
|
|
from core import HackingTool, HackingToolsCollection, console
|
2020-08-14 11:11:59 +00:00
|
|
|
|
2025-10-14 06:02:18 +00:00
|
|
|
from rich.panel import Panel
|
|
|
|
|
from rich.prompt import Prompt
|
|
|
|
|
|
2020-08-14 11:11:59 +00:00
|
|
|
|
2026-03-15 08:24:03 +00:00
|
|
|
# Bug 17 fix: Stitch was defined in both payload_creator.py and remote_administration.py.
|
|
|
|
|
# It is kept in payload_creator.py (its correct category) and removed from here.
|
2020-08-14 11:11:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Pyshell(HackingTool):
|
|
|
|
|
TITLE = "Pyshell"
|
|
|
|
|
DESCRIPTION = "Pyshell is a Rat Tool that can be able to download & upload " \
|
|
|
|
|
"files,\n Execute OS Command and more.."
|
|
|
|
|
INSTALL_COMMANDS = [
|
2026-03-15 08:25:05 +00:00
|
|
|
"git clone https://github.com/knassar702/Pyshell.git;"
|
|
|
|
|
"pip install --user pyscreenshot python-nmap requests"
|
2020-08-14 11:11:59 +00:00
|
|
|
]
|
|
|
|
|
RUN_COMMANDS = ["cd Pyshell;./Pyshell"]
|
|
|
|
|
PROJECT_URL = "https://github.com/knassar702/pyshell"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class RemoteAdministrationTools(HackingToolsCollection):
|
|
|
|
|
TITLE = "Remote Administrator Tools (RAT)"
|
|
|
|
|
TOOLS = [
|
|
|
|
|
Pyshell()
|
|
|
|
|
]
|
2025-10-14 06:02:18 +00:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
tools = RemoteAdministrationTools()
|
|
|
|
|
tools.show_options()
|