Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cpscript/remote-terminal
This repo consists of essentially a Remote Access Tool template. It allows a remote user to remotely access and control another or their own computer(kinda), execute commands, upload files and execute them, and potentially steal sensitive data or deploy malware(has to be put here as a warning!). THIS CAN BE USED AS A TYPE OF MALWARE!
https://github.com/cpscript/remote-terminal
c hacking malware mbr mbr-overwrite networking python rat remote-access-tool remote-access-trojan rust server trojan
Last synced: about 3 hours ago
JSON representation
This repo consists of essentially a Remote Access Tool template. It allows a remote user to remotely access and control another or their own computer(kinda), execute commands, upload files and execute them, and potentially steal sensitive data or deploy malware(has to be put here as a warning!). THIS CAN BE USED AS A TYPE OF MALWARE!
- Host: GitHub
- URL: https://github.com/cpscript/remote-terminal
- Owner: CPScript
- License: mit
- Created: 2024-08-20T14:45:26.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T03:36:13.000Z (28 days ago)
- Last Synced: 2024-10-21T06:41:11.662Z (28 days ago)
- Topics: c, hacking, malware, mbr, mbr-overwrite, networking, python, rat, remote-access-tool, remote-access-trojan, rust, server, trojan
- Language: Python
- Homepage: https://cpscript.github.io/rat/
- Size: 65.4 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### note:
> This doesn't have to be used for malicious intent, you can use it like a remote terminal. just be careful! Please use this responsibly, i am not responsible for your actions!---
# What is this?
This repo consists of essentially a Remote Access Tool (RAT). It allows a user to remotely access and control another users or their own computer(kinda), execute commands, upload files and execute them, and potentially steal sensitive data or deploy malware. THIS IS NOT MALWARE, but has an example in it lol!
# How to use & info:
## rat-v1.py
Description - This is a simple easily editable python script that uses remote execution using termux to execute commands on a windows desktop!### How to use
On your phone using Termux, you can use `nc` (Netcat) to interact with the script:
* **Ping the script** (check if it's running):
```
echo "ping" | nc {PC_IP_ADDRESS} 9999
```* **Execute a command**:
```
echo "exec " | nc {PC_IP_ADDRESS} 9999
```
> NOTE: Replace {PC_IP_ADDRESS} with the IP address of your Windows PC. Make sure your firewall allows connections on port 9999.
---## rat-v2.py
Description - This is the same as `rat-v1.py` but you can now upload and execute a file from your phone to your pc.### How to use
On your phone using Termux, you can use `nc` (Netcat) to interact with the script:
* **Ping the script** (check if it's running):
```
echo "ping" | nc {PC_IP_ADDRESS} 9999
```* **Execute a command**:
```
echo "exec " | nc {PC_IP_ADDRESS} 9999
```* **Upload a file** to the Windows PC
```
echo "upload your_file_name.exe" | nc {PC_IP_ADDRESS} 9999
cat your_file_name.exe | nc {PC_IP_ADDRESS} 9999
```* **Execute the uploaded file:**
```
echo "exec your_file_name.exe" | nc {PC_IP_ADDRESS} 9999
```> NOTE: Replace `your_file_name.exe` with the file you want to upload and `{PC_IP_ADDRESS}` with the IP address of your Windows PC.
---
# src/bomb.py
(this is an example on how you can make a "remote bomb" out of this script lol)* this will destroy a pc(not literaly) if executed properly, please be responsible!
---
# oth/
* other versions of the script(s) made in diffrent languages.