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 software protection .
Top Related Projects
Unicorn is a simple tool for using a PowerShell downgrade attack and inject shellcode straight into memory. Based on Matthew Graeber's powershell attacks and the powershell bypass technique presented by David Kennedy (TrustedSec) and Josh Kelly at Defcon 18.
Metasploit Framework
Advanced dork Search & Mass Exploit Scanner
Payload for teensy like a rubber ducky but the syntax is different. this Human interfaes device ( HID attacks ). Penetration With Teensy . Brutal is a toolkit to quickly create various payload,powershell attack , virus attack and launch listener for a Human Interface Device ( Payload Teensy )
fsociety Hacking Tools Pack – A Penetration Testing Framework
Quick Overview
TheFatRat is an open-source exploitation tool that creates backdoors and payloads for various platforms. It's designed to bypass antivirus software and can generate malicious binaries for Windows, Android, and Linux systems. TheFatRat is primarily used for penetration testing and security research purposes.
Pros
- User-friendly interface with easy-to-use menus
- Supports multiple platforms (Windows, Android, Linux)
- Regularly updated with new features and improvements
- Integrates with Metasploit for additional exploitation capabilities
Cons
- Potential for misuse by malicious actors
- Requires careful handling to avoid accidental infections
- Some features may be detected by updated antivirus software
- Limited documentation for advanced usage
Getting Started
To get started with TheFatRat:
-
Clone the repository:
git clone https://github.com/screetsec/TheFatRat.git
-
Navigate to the TheFatRat directory:
cd TheFatRat
-
Run the setup script:
chmod +x setup.sh && ./setup.sh
-
Launch TheFatRat:
./fatrat
-
Follow the on-screen menus to create payloads or backdoors for your target system.
Note: Always use TheFatRat responsibly and only on systems you have permission to test. Unauthorized use of this tool may be illegal and unethical.
Competitor Comparisons
Unicorn is a simple tool for using a PowerShell downgrade attack and inject shellcode straight into memory. Based on Matthew Graeber's powershell attacks and the powershell bypass technique presented by David Kennedy (TrustedSec) and Josh Kelly at Defcon 18.
Pros of Unicorn
- Simpler and more focused tool, specifically for generating shellcode payloads
- Regularly updated and maintained by TrustedSec
- Lightweight and easy to integrate into existing workflows
Cons of Unicorn
- Limited functionality compared to TheFatRat's broader feature set
- Lacks a graphical user interface, which may be less user-friendly for some
- Primarily focused on Windows payloads, while TheFatRat supports multiple platforms
Code Comparison
Unicorn (payload generation):
payload = generate_shellcode(shellcode_type, ip, port)
encoded_payload = encode_payload(payload, encoding_type)
TheFatRat (payload generation):
msfvenom -p $payload LHOST=$lhost LPORT=$lport -f $format > $output
Both tools use similar approaches for payload generation, but TheFatRat leverages Metasploit's msfvenom, while Unicorn implements its own shellcode generation and encoding methods.
TheFatRat offers a more comprehensive suite of features for penetration testing, including backdoor creation, exploitation, and post-exploitation tools. Unicorn, on the other hand, focuses specifically on generating shellcode payloads with various encoding options.
Unicorn is more suitable for users who need a quick and efficient way to generate shellcode payloads, while TheFatRat is better for those seeking a full-featured penetration testing framework with a graphical interface.
Metasploit Framework
Pros of Metasploit-framework
- Extensive library of exploits and modules
- Active development and regular updates
- Large community support and contributions
Cons of Metasploit-framework
- Steeper learning curve for beginners
- Requires more system resources
Code comparison
TheFatRat:
#!/usr/bin/env bash
# The FatRat Coded By Screetsec
# Tested On Kali Linux
Metasploit-framework:
module Msf
class Exploit < Msf::Module
include Msf::Exploit::Remote::Tcp
def initialize(info = {})
super(update_info(info,
TheFatRat is a simple bash script for creating backdoors, while Metasploit-framework is a more complex Ruby-based framework for developing and executing exploit code. Metasploit offers a more comprehensive set of tools and modules for penetration testing and vulnerability assessment, whereas TheFatRat focuses primarily on payload generation and backdoor creation.
Metasploit-framework is more suitable for professional penetration testers and security researchers due to its extensive capabilities and regular updates. TheFatRat, on the other hand, may be more accessible for beginners or those looking for a quick payload generation tool.
Advanced dork Search & Mass Exploit Scanner
Pros of ATSCAN
- More focused on web application scanning and vulnerability detection
- Supports multiple scanning modes (e.g., XSS, SQLi, LFI)
- Regularly updated with new features and improvements
Cons of ATSCAN
- Less versatile in terms of payload generation compared to TheFatRat
- May require more manual configuration for specific scanning tasks
- Limited to web-based targets, while TheFatRat covers a broader range of systems
Code Comparison
ATSCAN (Perl):
use strict;
use warnings;
use Getopt::Long;
use HTTP::Request;
use LWP::UserAgent;
TheFatRat (Bash):
#!/bin/bash
#
# TheFatRat - Massive Exploiting Tool
# Version: 1.9.8
ATSCAN focuses on web application scanning using Perl, with modules for HTTP requests and user agents. TheFatRat, written in Bash, is a more comprehensive exploitation tool that includes payload generation and multi-platform support.
Both tools serve different purposes within the security testing ecosystem. ATSCAN is better suited for web vulnerability scanning, while TheFatRat excels in creating and managing various types of payloads for different target systems.
Payload for teensy like a rubber ducky but the syntax is different. this Human interfaes device ( HID attacks ). Penetration With Teensy . Brutal is a toolkit to quickly create various payload,powershell attack , virus attack and launch listener for a Human Interface Device ( Payload Teensy )
Pros of Brutal
- More focused on social engineering and phishing attacks
- Includes a wider range of attack vectors and techniques
- Regularly updated with new features and improvements
Cons of Brutal
- Less emphasis on payload generation and customization
- May require more manual configuration for certain attacks
- Steeper learning curve for beginners
Code Comparison
TheFatRat (payload generation):
msfvenom -p windows/meterpreter/reverse_tcp LHOST=$lhost LPORT=$lport -f exe > payload.exe
Brutal (phishing attack setup):
python3 Brutal.py --target example.com --clone --ssl
Both repositories focus on penetration testing and ethical hacking, but with different approaches. TheFatRat specializes in payload creation and backdoor generation, while Brutal offers a broader range of attack techniques, particularly in social engineering and phishing. TheFatRat may be more suitable for users focusing on payload customization, while Brutal provides a more comprehensive toolkit for various attack scenarios. The choice between the two depends on the specific needs of the penetration tester and the target environment.
fsociety Hacking Tools Pack – A Penetration Testing Framework
Pros of fsociety
- More comprehensive toolset with a wider range of functionalities
- Active community and regular updates
- User-friendly interface with menu-driven options
Cons of fsociety
- Larger codebase, potentially more complex to maintain
- May include some redundant or less-focused tools
- Requires more dependencies to be installed
Code Comparison
TheFatRat:
#!/usr/bin/env bash
# The FatRat Payload Generator
# Version: 1.9.7
# Coded by: Screetsec
fsociety:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# _____
# | ___|___ ___ ___(_) ___| |_ _ _
# | |_ / __|/ _ \/ __| |/ _ \ __| | | |
# | _|\__ \ (_) \__ \ | __/ |_| |_| |
# |_| |___/\___/|___/_|\___|\__|\__, |
# |___/
Both repositories are ethical hacking toolkits, but fsociety offers a broader range of tools and functionalities compared to TheFatRat. fsociety has a more active community and regular updates, which can be beneficial for users seeking up-to-date tools. However, this larger codebase may be more complex to maintain and could include some redundant tools.
TheFatRat focuses primarily on payload generation and exploitation, while fsociety covers a wider spectrum of penetration testing and security assessment tools. The code comparison shows that TheFatRat is written in Bash, while fsociety uses Python, which may impact performance and cross-platform compatibility.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
TheFatRat
A Massive Exploiting Tool
TheFatRat is an exploiting tool which compiles a malware with famous payload, and then the compiled maware can be executed on Linux , Windows , Mac and Android. TheFatRat Provides An Easy way to create Backdoors and Payload which can bypass most anti-virus.
Information
This tool is for educational purpose only, usage of TheFatRat for attacking targets without prior mutual consent is illegal. Developers assume no liability and are not responsible for any misuse or damage cause by this program.
Features !
- Fully Automating MSFvenom & Metasploit.
- Local or remote listener Generation.
- Easily Make Backdoor by category Operating System.
- Generate payloads in Various formats.
- Bypass anti-virus backdoors.
- File pumper that you can use for increasing the size of your files.
- The ability to detect external IP & Interface address .
- Automatically creates AutoRun files for USB / CDROM exploitation
But it's shit! And your implementation sucks!
- Yes, you're probably correct. Feel free to "Not use it" and there is a pull button to "Make it better".
Installation
Instructions on how to install TheFatRat
git clone https://github.com/Screetsec/TheFatRat.git
cd TheFatRat
chmod +x setup.sh && ./setup.sh
Update
cd TheFatRat
./update && chmod +x setup.sh && ./setup.sh
Troubleshoot on TheFatRat
chk_tools script to use in case of problems in setup.sh of fatrat this script will check if everything is in the right version to run fatrat and will also provide you a solution for the problem
cd TheFatRat
chmod +x chk_tools
./chk_tools
Tools Overview
Front View | Sample Feature |
---|---|
Documentation
- Documentation Available in Modules CEH v9 and V10 , Download source here
- Published in International Journal of Cyber-Security and Digital Forensics
- Youtube Videos
- How To Download & Install TheFatRat
- TheFatRat 1.9.6 - Trodebi ( Embed Trojan into Debian Package )
- hacking windows 10 with TheFatRat
- Hacking Windows using TheFatRat + Apache2 Server + Ettercap + Metasploit
- Hacking with a Microsoft Office Word Document from TheFatRat
- XSS to powershell attack and bypass Antivirus using BeEF + TheFatRat + Metasploit
- TheFatRat - Hacking Over WAN - Embedding Payload in Original Android APK - Without Port Forwarding
- How To Automatically Embed Payloads In APK's - Evil-Droid, Thefatrat & Apkinjector
- Bind FUD Payload with JPG and Hack over WAN with TheFatRat
Changelog
All notable changes to this project will be documented in this file.
About issues
- Read the document before making an issue
Alternative Best Tool - Generating Backdoor & Bypass
- Veil-Framework /Veil - Veil Framework
- Shellter - Shellter AV Evasion Artware
- Unicorn - Trustedsec
- MSFvenom Payload Creator (MSFPC) - g0tmi1k
- Venom - Pedro Ubuntu
- Phantom-Evasion - Diego Cornacchini
Credits & Thanks
- Offensive Security - Offensive Security
- dracOs Linux - Penetration Testing OS From Indonesia
- peterpt - Maintainer & Contributor
- Dana James Traversie - backdoor_apk
- z0noxz - Powerstager
- TrustedSec - Unicorn
- Raphael Mudge - External Source
- astr0baby - Reference Source
- NgeSEC Community
- Gauli(dot)Net - Lab Penetration
License
TheFatRat is made with ð¤ by Edo Maland & All Contributors. See the License file for more details.
Top Related Projects
Unicorn is a simple tool for using a PowerShell downgrade attack and inject shellcode straight into memory. Based on Matthew Graeber's powershell attacks and the powershell bypass technique presented by David Kennedy (TrustedSec) and Josh Kelly at Defcon 18.
Metasploit Framework
Advanced dork Search & Mass Exploit Scanner
Payload for teensy like a rubber ducky but the syntax is different. this Human interfaes device ( HID attacks ). Penetration With Teensy . Brutal is a toolkit to quickly create various payload,powershell attack , virus attack and launch listener for a Human Interface Device ( Payload Teensy )
fsociety Hacking Tools Pack – A Penetration Testing Framework
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot