From 391ae0cd9e470de50daf4ee5733f7a29f0449243 Mon Sep 17 00:00:00 2001 From: Clayton D Grace <128340307+rubbermetal@users.noreply.github.com> Date: Fri, 23 Aug 2024 05:45:56 -0400 Subject: [PATCH] ipscan: add page (#13316) * Added ipscan in English * Corrected formatting for ipscan page * Rename ipscan.md to ipscan.md(move to common) --------- Co-authored-by: spageektti --- pages/common/ipscan.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/common/ipscan.md diff --git a/pages/common/ipscan.md b/pages/common/ipscan.md new file mode 100644 index 0000000000..b464919f70 --- /dev/null +++ b/pages/common/ipscan.md @@ -0,0 +1,29 @@ +# ipscan + +> A fast network scanner designed to be simple to use. +> Also known as Angry IP Scanner. +> More information: . + +- Scan a specific IP address: + +`ipscan {{192.168.0.1}}` + +- Scan a range of IP addresses: + +`ipscan {{192.168.0.1-254}}` + +- Scan a range of IP addresses and save the results to a file: + +`ipscan {{192.168.0.1-254}} -o {{path/to/output.txt}}` + +- Scan IPs with a specific set of ports: + +`ipscan {{192.168.0.1-254}} -p {{80,443,22}}` + +- Scan with a delay between requests to avoid network congestion: + +`ipscan {{192.168.0.1-254}} -d {{200}}` + +- Display help: + +`ipscan --help`