diff --git a/OpenVAS-Integration.md b/OpenVAS-Integration.md new file mode 100644 index 0000000..a5589f4 --- /dev/null +++ b/OpenVAS-Integration.md @@ -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 +``` \ No newline at end of file