You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
A straightforward Python script forPing of Death (PoD) attacks with IP spoofing. Built for educational and research purposes only. Misuse of this tool is strictly prohibited.
Features
UsesScapy to send spoofed ICMP packets.
Supportsmulti-threading andmulti-processing for optimal performance.
Customizable input for spoofed IP lists and target IPs.
Requirements
Python 3.8+
Scapy Library: Install using:
pip install scapy
Root privileges (sudo) are required for sending raw packets.
Usage
Run the script with the following syntax:
sudo python3 main.py<target_ip><spoofed_ip_list>
Parameters
<target_ip>: The target IP address to flood.
<spoofed_ip_list>: File containing spoofed IP addresses, one per line.
██████╗ █████╗ ███████╗███████╗███████╗ ██████╗ ██╔════╝ ██╔══██╗ ██╔════╝██╔════╝██╔════╝██╔═══██╗ ██║ ███╗███████║ ███████╗█████╗ █████╗ ██║ ██║ ██║ ██║██╔══██║ ╚════██║██╔══╝ ██╔══╝ ██║ ██║ ╚██████╔╝██║ ██║ ███████║███████╗██║ ╚██████╔╝ ╚═════╝ ╚═╝ ╚═╝ ╚══════╝╚══════╝╚═╝ ╚═════╝ Simple PoD with IP Spoofed by rajexploit404[?] Loaded 3000 spoofed IPs from spoof.txt[?] Starting packet flood...[+] Packet sent from 31.147.186.29 to 123.123.123.123[+] Packet sent from 28.160.190.195 to 123.123.123.123[+] Packet sent from 136.91.104.67 to 123.123.123.123[+] Packet sent from 165.98.179.114 to 123.123.123.123[+] Packet sent from 176.40.228.221 to 123.123.123.123[+] Packet sent from 93.161.149.146 to 123.123.123.123
Invalid Usage
If the script is run withoutsudo or with insufficient arguments, the following error is displayed:
[!] This script must be run with sudo privileges!Usage: sudo python3 main.py <target_ip> <spoofed_ip_list>
Generating Spoofed IPs
You can create your own list of spoofed IP addresses for this script. Use tools or online generators like:
Copy the generated IPs in a text file (e.g.,spoof.txt) for use with the script.
Disclaimer
This tool is foreducational purposes only. Use it responsibly and only with the explicit permission of the target. Misuse can result in legal consequences.
About
Simple PoD (Ping of Death) method with ip spoofing built from python3