-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Usage
Bee edited this page Sep 7, 2020
·
13 revisions
Here are some things you may want to do with RustScan!
You can scan multiple IPs using a comma separated list like so:
rustscan 127.0.0.1,0.0.0.0
RustScan can also scan hosts, like so:
β rustscan www.google.com, 127.0.0.1
Open 216.58.210.36:1
Open 216.58.210.36:80
Open 216.58.210.36:443
Open 127.0.0.1:53
Open 127.0.0.1:631
RustScan can scan individual ports, like so:
β rustscan 127.0.0.1 -p 53 -q
53
You can input a comma separated list of ports to scan:
β rustscan 127.0.0.1 -p 53,80,121,65535 -q
53
RustScan, at the moment, runs Nmap by default.
You can adjust the arguments like so:
rustscan 127.0.0.1 -- -A -sC
To run:
nmap -Pn -vvv -p $PORTS -A -sC 127.0.0.1