how to use
-
- root yourself:
sudo su
- root yourself:
-
- run script:
python Saturn.py
- run script:
- The script first
prints out a banner
and then asks the user tochoose an option
. The options are:
- Linux (Recommended)
- Windows (Harder to use)
- Listen (Connect to a port)
- Exit (Stop this software)
- If the user chooses the Linux option, the script will ask for an IP address and a port number. It then writes a C program to a file named
.linux.c
. This program creates a socket, connects to the specified IP and port, and then executes a shell(/bin/sh)
. The compiled executable is saved as Saturn-Linux. - If the user chooses the Windows option, the script behaves similarly but writes a C program for Windows instead. The compiled executable is saved as Saturn-Windows.exe.
- If the user chooses the Listen option, the script
starts a netcat listener
on the specified port. - If the user chooses the Exit option, the script exits.
- After creating the backdoor, the script uses ngrok to expose the local server running on port 80 to the internet. It then prints out the URL where the backdoor can be accessed.