Forrest logo
back to context overview

hping3

List of commands for hping3:

  • hping3:tldr:15c88 hping3: Scan TCP port 80, scanning from the specific local source port 5090.
    $ hping3 --verbose --syn --destport ${80} --baseport ${5090} ${ip_or_hostname}
    try on your machine
    explain this command
  • hping3:tldr:2bdb5 hping3: Perform a TCP ACK scan to check if a given host is alive.
    $ hping3 --count ${2} --verbose --destport ${80} --ack ${ip_or_hostname}
    try on your machine
    explain this command
  • hping3:tldr:3b142 hping3: Ping an IP address over UDP on port 80.
    $ hping3 --udp --destport ${80} --syn ${ip_or_hostname}
    try on your machine
    explain this command
  • hping3:tldr:446a8 hping3: Scan a set of TCP ports on a specific IP address.
    $ hping3 --scan ${80,3000,9000} --syn ${ip_or_hostname}
    try on your machine
    explain this command
  • hping3:tldr:aadab hping3: Traceroute using a TCP scan to a specific destination port.
    $ hping3 --traceroute --verbose --syn --destport ${80} ${ip_or_hostname}
    try on your machine
    explain this command
  • hping3:tldr:c067e hping3: Perform a charge test on port 80.
    $ hping3 --flood --destport ${80} --syn ${ip_or_hostname}
    try on your machine
    explain this command
  • hping3:tldr:d1e12 hping3: Ping a destination with 4 ICMP ping requests.
    $ hping3 --icmp --count ${4} ${ip_or_hostname}
    try on your machine
    explain this command
back to context overview