1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

nettacker: add page (#13879)

This commit is contained in:
Fazle Arefin 2024-09-30 01:43:11 +10:00 committed by GitHub
parent 57f078d7a4
commit c1046cb694
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
pages/common/nettacker.md Normal file
View file

@ -0,0 +1,20 @@
# nettacker
> Automate information gathering, vulnerability scanning and eventually generate a report.
> More information: <https://nettacker.readthedocs.io/en/latest/Home/>.
- List all available modules:
`nettacker --show-all-modules`
- Run a port scan on targets:
`nettacker {{-m|--modules}} port_scan {{-i|--targets}} {{192.168.0.1/24,owasp.org,scanme.org,...}}`
- Run a port scan on specific ports and targets listed in a file (newline separated):
`nettacker {{-m|--modules}} port_scan {{-g|--ports}} {{22,80,443,...}} {{-l|--targets-list}} {{path/to/targets.txt}}`
- Run ping test before scan and then run multiple scan types on target:
`nettacker --ping-before-scan {{-m|--modules}} {{port_scan,subdomain_scan,waf_scan,...}} {{-g|--ports}} {{80,443}} {{-i|--targets}} {{owasp.org}}`