Skip to content

Commit 25f248b

Browse files
committed
ping.py, ping6.py, impacket-{ping, ping6}: add page
1 parent 9c8d43e commit 25f248b

File tree

4 files changed

+60
-0
lines changed

4 files changed

+60
-0
lines changed

Diff for: pages/common/impacket-ping.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# impacket-ping
2+
3+
> This command is an alias of `ping.py`.
4+
> Part of the Impacket suite.
5+
> More information: <https://github.com/fortra/impacket>.
6+
7+
- View documentation for the original command:
8+
9+
`tldr ping.py`

Diff for: pages/common/impacket-ping6.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# impacket-ping6
2+
3+
> This command is an alias of `ping6.py`.
4+
> Part of the Impacket suite.
5+
> More information: <https://github.com/fortra/impacket>.
6+
7+
- View documentation for the original command:
8+
9+
`tldr ping6.py`

Diff for: pages/common/ping.py.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# ping.py
2+
3+
> Simple ICMP ping using Impacket to check if an IPv4 host is reachable.
4+
> Sends ICMP echo requests and listens for echo replies. Requires root privileges for raw socket access (e.g., run with `sudo`).
5+
> More information: <https://github.com/fortra/impacket>.
6+
7+
- Ping a host from a specified source IPv4 address:
8+
9+
`ping.py {{source_ipv4}} {{destination_ipv4}}`
10+
11+
- Ping 192.168.1.100 from 192.168.1.10:
12+
13+
`ping.py {{192.168.1.10}} {{192.168.1.100}}`
14+
15+
- Run continuously until interrupted (Ctrl+C):
16+
17+
`ping.py {{source_ipv4}} {{destination_ipv4}}`
18+
19+
- Verify a single ping response from a host:
20+
21+
`ping.py {{source_ipv4}} {{destination_ipv4}}`

Diff for: pages/common/ping6.py.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# ping6.py
2+
3+
> Simple ICMPv6 ping using Impacket to check if an IPv6 host is reachable.
4+
> Sends ICMPv6 echo requests and listens for echo replies. Requires root privileges for raw socket access (e.g., run with `sudo`).
5+
> More information: <https://github.com/fortra/impacket>.
6+
7+
- Ping an IPv6 host from a specified source IPv6 address:
8+
9+
`ping6.py {{source_ipv6}} {{destination_ipv6}}`
10+
11+
- Ping 2001:db8::2 from 2001:db8::1:
12+
13+
`ping6.py {{2001:db8::1}} {{2001:db8::2}}`
14+
15+
- Run continuously until interrupted (Ctrl+C):
16+
17+
`ping6.py {{source_ipv6}} {{destination_ipv6}}`
18+
19+
- Verify a single ping response from an IPv6 host:
20+
21+
`ping6.py {{source_ipv6}} {{destination_ipv6}}`

0 commit comments

Comments
 (0)