
masscan
List of commands for masscan:
-
masscan:tldr:64468 masscan: Scan an IP or network subnet for port 80.$ masscan ${select} --ports ${80}try on your machineexplain this command
-
masscan:tldr:65103 masscan: Scan the Internet for port 443.$ masscan ${0-0-0-0-0} --ports ${443} --rate ${10000000}try on your machineexplain this command
-
masscan:tldr:7884e masscan: Scan the Internet for a specific port range and export to a file.$ masscan ${0-0-0-0-0} --ports ${0-65535} -output-format ${select} --output-filename ${filename}try on your machineexplain this command
-
masscan:tldr:82a92 masscan: Scan a class B subnet for the top 100 ports at 100,000 packets per second.$ masscan ${10-0-0-0-16} --top-ports ${100} --rate ${100000}try on your machineexplain this command
-
masscan:tldr:c5c01 masscan: Scan a class B subnet avoiding ranges from a specific exclude file.$ masscan ${10-0-0-0-16} --top-ports ${100} --excludefile ${filename}try on your machineexplain this command