Updated Nessus Integration (markdown)

xer0dayz 2021-11-18 18:08:53 -07:00
parent b34923e42b
commit e2dabf50d1
1 changed files with 5 additions and 1 deletions

@ -22,7 +22,7 @@ sudo bash install-nessus-add-on.sh
```
### Configuration
5. Add your Nessus host/IP, username and password to your /root/.sniper.conf file and set NESSUS="1" value to enable Nessus scanning in Sn1per
5. Add your Nessus host/IP, username and password to your /root/.sniper.conf file or create a separate configuration template (ie. /sniper/conf/nessus.conf) and set NESSUS="1" value to enable Nessus scanning in Sn1per:
```
# NESSUS CONFIG
NESSUS="1"
@ -36,6 +36,10 @@ NESSUS_POLICY_ID="c3cbcd46-329f-a9ed-1077-554f8c2af33d0d44f09d736969bf" #DEFAULT
6. Run a test vuln scan to confirm your installation:
```
sniper -t 127.0.0.1 -m vulnscan -w 127.0.0.1
OR
sniper -t 127.0.0.1 -c /sniper/conf/nessus.conf -m vulnscan -w 127.0.0.1
```
For multi-host scans, you can also use ```sniper -f targets.txt -m massvulnscan -w targets``` command.