Skip to content
Snippets Groups Projects
Commit 86001216 authored by Zitnik, Anze's avatar Zitnik, Anze
Browse files

Using newest ZAP (2.9.0). Removing unneeded cscan-config.py file.

parent 5d738d2f
Branches
No related tags found
No related merge requests found
VERSION=v1.3.1
VERSION=v1.3.2
SERVICE=vat-genscan
......@@ -45,7 +45,7 @@ def configure():
raise UnsupportedProfileException()
cs_scripts.append("w3af.sh")
elif scanner == "zap":
cscan_config["ZAP"] = {"CS_ZAP": "/service/ZAP_2.7.0/zap.sh"}
cscan_config["ZAP"] = {"CS_ZAP": "/service/ZAP/zap.sh"}
if profile != "basic":
raise UnsupportedProfileException()
cs_scripts.append("zap.sh")
......
#!/usr/bin/env python
###
## Faraday Penetration Test IDE
## Copyright (C) 2015 Infobyte LLC (http://www.infobytesec.com/)
## See the file 'doc/LICENSE' for the license information
###
config = {
#NMAP
# 'CS_NMAP' : "nmap",
#OPENVAS
# 'CS_OPENVAS_USER' : 'admin',
# 'CS_OPENVAS_PASSWORD' : 'openvas',
# 'CS_OPENVAS_SCAN_CONFIG' : "Full and fast",
# 'CS_OPENVAS_ALIVE_TEST' : "ICMP, TCP-ACK Service & ARP Ping",
# 'CS_OPENVAS' : 'omp',
#BURP
# 'CS_BURP' : '/root/tools/burpsuite_pro_v1.6.26.jar',
#NIKTO
# 'CS_NIKTO' : "nikto",
#W3AF
'CS_W3AF' : "/service/w3af/w3af_api",
'CS_W3AF_PROFILE' : "/service/w3af/profiles/fast_scan.pw3af",
# 'CS_W3AF_PROFILE' : "/root/cscan/w3af/profiles/cscan-worker.pw3af",
#ZAP
'CS_ZAP' : "/service/ZAP_2.7.0/zap.sh",
#NESSUS
# 'CS_NESSUS_URL' : "https://127.0.0.1:8834",
# 'CS_NESSUS_USER' : "nessus",
# 'CS_NESSUS_PASS' : "nessus",
# 'CS_NESSUS_PROFILE' : "Basic Network Scan",
}
......@@ -4,6 +4,7 @@ set -e
apt install -y openjdk-8-jre
cd /tmp
wget -nv https://github.com/zaproxy/zaproxy/releases/download/2.7.0/ZAP_2.7.0_Linux.tar.gz
tar xzf ZAP_2.7.0_Linux.tar.gz -C /service/
wget -nv https://github.com/zaproxy/zaproxy/releases/download/v2.9.0/ZAP_2.9.0_Linux.tar.gz
tar xzf ZAP_2.9.0_Linux.tar.gz
mv ZAP_2.9.0 /service/ZAP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment