2019-10-27 16:43:28 +00:00
|
|
|
# hping
|
|
|
|
|
|
|
|
> Outil en ligne de commande permettant d'assembler ou analyser des paquets TCP/IP.
|
|
|
|
> Inspirer par la commande `ping`.
|
2021-10-07 08:37:39 +01:00
|
|
|
> Plus d'informations : <http://www.hping.org>.
|
2019-10-27 16:43:28 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Ping localhost via TCP :
|
2019-10-27 16:43:28 +00:00
|
|
|
|
|
|
|
`hping3 {{localhost}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Ping une adresse IP, via TCP, sur un port spécifique :
|
2019-10-27 16:43:28 +00:00
|
|
|
|
|
|
|
`hping3 -p {{80}} -S {{192.168.1.1}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Ping une adresse IP, via UDP, sur le port 80 :
|
2019-10-27 16:43:28 +00:00
|
|
|
|
|
|
|
`hping3 --udp -p {{80}} -S {{192.168.1.1}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Scanner un ensemble de ports TCP, sur une adresse IP spécifique :
|
2019-10-27 16:43:28 +00:00
|
|
|
|
|
|
|
`hping3 --scan {{80,3000,9000}} -S {{192.168.1.1}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Effectuer un test de montée en charge sur le port 80 :
|
2019-10-27 16:43:28 +00:00
|
|
|
|
|
|
|
`hping3 --flood -p {{80}} -S {{192.168.1.1}}`
|