diff --git a/MANIFEST b/MANIFEST index 93ab003b5b834d4848ba43b9b6bc5b74e21e3817..e40de4a6b598f9a44da8a48446ab31c3465ecd78 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,3 +1,3 @@ -VERSION=v1.3.1 +VERSION=v1.3.2 SERVICE=vat-genscan diff --git a/configure.py b/configure.py index 06ee6e9095d97252071f108822661a839f6d5411..800fb44b4d1d92575388702ff872c86605d5fc8b 100644 --- a/configure.py +++ b/configure.py @@ -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") diff --git a/cscan-config.py b/cscan-config.py deleted file mode 100644 index 78385691a101c9d4dced1847b1671e862075d4e1..0000000000000000000000000000000000000000 --- a/cscan-config.py +++ /dev/null @@ -1,32 +0,0 @@ -#!/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", - } diff --git a/install/zap.sh b/install/zap.sh index 07ad2a6dddaa4a42f46a326dbd9fcd9b4af7b337..13aad098ef72c3e2230358962db5f14c5100a8a2 100644 --- a/install/zap.sh +++ b/install/zap.sh @@ -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