All Projects → tarcisio-marinho → RSB-Framework

tarcisio-marinho / RSB-Framework

Licence: GPL-3.0 license
Windows/Linux - ReverseShellBackdoor Framework

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
Makefile
30231 projects
shell
77523 projects

Projects that are alternatives of or similar to RSB-Framework

Networm
Python network worm that spreads on the local network and gives the attacker control of these machines.
Stars: ✭ 135 (+206.82%)
Mutual labels:  backdoor, trojan, rat
Powershell Rat
Python based backdoor that uses Gmail to exfiltrate data through attachment. This RAT will help during red team engagements to backdoor any Windows machines. It tracks the user activity using screen capture and sends it to an attacker as an e-mail attachment.
Stars: ✭ 636 (+1345.45%)
Mutual labels:  backdoor, trojan, rat
Unencrypted Backdoor With Process Cloaking
Unencrypted backdoor
Stars: ✭ 16 (-63.64%)
Mutual labels:  backdoor, trojan, rat
ToxicEye
👽 Program for remote control of windows computers via telegram bot. Written in C#
Stars: ✭ 305 (+593.18%)
Mutual labels:  backdoor, trojan, rat
Ghost
👻 RAT (Remote Access Trojan) - Silent Botnet - Full Remote Command-Line Access - Download & Execute Programs - Spread Virus' & Malware
Stars: ✭ 312 (+609.09%)
Mutual labels:  backdoor, trojan, rat
SubRosa
Basic tool to automate backdooring PE files
Stars: ✭ 48 (+9.09%)
Mutual labels:  backdoor, backdoorpython, backdooring
Lime Rat
LimeRAT | Simple, yet powerful remote administration tool for Windows (RAT)
Stars: ✭ 663 (+1406.82%)
Mutual labels:  backdoor, trojan, rat
Thefatrat
Thefatrat a massive exploiting tool : Easy tool to generate backdoor and easy tool to post exploitation attack like browser attack and etc . This tool compiles a malware with popular payload and then the compiled malware can be execute on windows, android, mac . The malware that created with this tool also have an ability to bypass most AV softw…
Stars: ✭ 5,944 (+13409.09%)
Mutual labels:  backdoor, trojan, rat
PyIris
PyIris is a modular remote access trojan toolkit written in python targeting Windows and Linux systems.
Stars: ✭ 296 (+572.73%)
Mutual labels:  backdoor, trojan, rat
Asyncrat C Sharp
Open-Source Remote Administration Tool For Windows C# (RAT)
Stars: ✭ 819 (+1761.36%)
Mutual labels:  backdoor, rat
Njrat 0.7d Stub Csharp
njRAT C# Stub - Fixed For PowerShell
Stars: ✭ 28 (-36.36%)
Mutual labels:  backdoor, rat
Ghost
Ghost Framework is an Android post-exploitation framework that exploits the Android Debug Bridge to remotely access an Android device.
Stars: ✭ 1,934 (+4295.45%)
Mutual labels:  backdoor, rat
Pupy
Pupy is an opensource, cross-platform (Windows, Linux, OSX, Android) remote administration and post-exploitation tool mainly written in python
Stars: ✭ 6,737 (+15211.36%)
Mutual labels:  backdoor, rat
Ghost
Ghost Framework is an Android post-exploitation framework that exploits the Android Debug Bridge to remotely access an Android device. Ghost Framework gives you the power and convenience of remote Android device administration.
Stars: ✭ 992 (+2154.55%)
Mutual labels:  backdoor, rat
Mass Rat
Basic Multiplatform Remote Administration Tool - Xamarin
Stars: ✭ 127 (+188.64%)
Mutual labels:  backdoor, rat
Tinkerershell
A simple python reverse shell written just for fun.
Stars: ✭ 62 (+40.91%)
Mutual labels:  backdoor, rat
Evilosx
An evil RAT (Remote Administration Tool) for macOS / OS X.
Stars: ✭ 1,826 (+4050%)
Mutual labels:  backdoor, rat
Thoron
Thoron Framework is a Linux post-exploitation framework that exploits Linux TCP vulnerability to provide a shell-like connection. Thoron Framework has the ability to create simple payloads to provide Linux TCP attack.
Stars: ✭ 87 (+97.73%)
Mutual labels:  backdoor, rat
Pyiris Backdoor
PyIris-backdoor is a modular, stealthy and flexible remote-access-toolkit written completely in python used to command and control other systems. It is now in the beta stage, possibly perpetually. There are bugs still present in the framework, feel free to contribute or help me out with this project its still under active development >_>
Stars: ✭ 145 (+229.55%)
Mutual labels:  backdoor, trojan
Aviator
Antivirus evasion project
Stars: ✭ 529 (+1102.27%)
Mutual labels:  backdoor, trojan

RSB Framework

Reverse Shell Backdoor is a framework to control infected machines with some cool interactions. It's capable of send files, run programs in the background, screenshot and shit.

There are two versions of the code, the C and Python. If you want to learn about sockets and reverse connection, you should check it out.

Travis branch Travis branch Travis branch Travis branch

Disclaimer

This Framework musn't be used to harm/threat/hurt other person's computer.

It's purpose is only to share knowledge and awareness about Computer virus/Operating Sistems/Programming, made for learning and awareness about secutiry.

The program isn't complete nor all the funcionalities are working.

What's a backdoor ?

Backdoor is a computer virus popular known as trojan horse. It work's as a reverse shell to victim computer. So the attacker maintains access to victim computer after the bridge with some system vulnerability exploitation.

How to use ?

First the victim should run the backdoor compiled in the computer. Then when the attacker run the servidor.py he shall get a reverse connection to the victim comuter.

Victim:

python backdoor.py

Attacker:

python servidor.py

Uses

  • It can be used to control the victim computer with a reverse shell.
  • Also you can be used to controll your own computer without being home!
  • Send and download files, run programs.

Backdoor features :

  • Remote connection.
  • Download files from the victim machine.
  • Send files to victim machine.
  • Persistence.
  • Screenshot of the victim screen.
  • Execute other programs in the victim computer.
  • Backdoor complete (Only when all features ready).

Instalation

If you want to run Python version you need to install all the dependecies

linux:

~$ sudo pip install -r requeriments.txt

windows:

pip install -r requeriments.txt

If you want to run C code version you dont need to install any dependecies.

Compiling

The Python code needs to be compiled or be executed as a script (not recommended).

linux:

pyinstaller -F --clean -w backdoor.py -n backdoor

windows:

pyinstaller -F --clean -w backdoor.py -i icon.png

The C code needs to be compiled.

~$ chmod +x comp.sh
~$ sh comp.sh

or

~$ gcc backdoor.c lib/communication.c  lib/commands.c -o bin/client
~$ gcc server.c lib/communication.c lib/commands.c -o bin/server
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].