1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:22:08 +02:00

masscan: add example (#16146)

* masscan: add example

* Update pages/common/masscan.md

Co-authored-by: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com>

* Update pages/common/masscan.md

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>

---------

Co-authored-by: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com>
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
Machiavelli 2025-04-11 09:00:29 +02:00 committed by GitHub
parent 1ba5d2f0a4
commit b1eebc865f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,10 @@
`masscan {{10.0.0.0/16}} --top-ports {{100}} --excludefile {{path/to/file}}` `masscan {{10.0.0.0/16}} --top-ports {{100}} --excludefile {{path/to/file}}`
- Scan a class B subnet with Nmap-like version detection (banner grabbing):
`masscan {{10.0.0.0/16}} {{[-p|--ports]}} {{22,80}} --banners --rate {{100000}}`
- Scan the Internet for web servers running on port 80 and 443: - Scan the Internet for web servers running on port 80 and 443:
`masscan {{0.0.0.0/0}} {{[-p|--ports]}} {{80,443}} --rate {{10000000}}` `masscan {{0.0.0.0/0}} {{[-p|--ports]}} {{80,443}} --rate {{10000000}}`