Created OpenVAS Integration (markdown)

xer0dayz 2019-08-18 12:46:58 -07:00
parent cd5e953525
commit 37c0d6a976
1 changed files with 17 additions and 0 deletions

17
OpenVAS-Integration.md Normal file

@ -0,0 +1,17 @@
To integrate OpenVAS vulnerability scans into Sn1per, edit your ~/.sniper.conf file and enter the appropriate values for the following:
```
# OPENVAS CONFIG
OPENVAS="1"
OPENVAS_USERNAME="admin"
OPENVAS_PASSWORD=""
OPENVAS_HOST="127.0.0.1"
OPENVAS_PORT="9390"
```
After the settings have been updated to match your environment, you can initiate an OpenVAS scan automatically by running `sniper -t 127.0.0.1 -m vulnscan` for single host scans or `sniper -f /path/to/file.txt -m massvulnscan` to automatically scan multiple hosts.
Example Usage:
```
sniper -t 127.0.0.1 -m vulnscan
```