From 7c250951d7b70b46ba49bb59046136d3d7fce78e Mon Sep 17 00:00:00 2001 From: devloop Date: Fri, 13 May 2022 18:25:20 +0200 Subject: [PATCH] Bump version to 3.1.2 --- VERSION | 2 +- doc/ChangeLog_Wapiti | 7 +++++++ setup.py | 2 +- wapitiCore/attack/mod_crlf.py | 2 +- wapitiCore/main/wapiti.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 543c5e172..5a783cbd6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Wapiti 3.1.1 +Wapiti 3.1.2 diff --git a/doc/ChangeLog_Wapiti b/doc/ChangeLog_Wapiti index 9934ce98d..645c857ec 100644 --- a/doc/ChangeLog_Wapiti +++ b/doc/ChangeLog_Wapiti @@ -1,3 +1,10 @@ +13/05/2022 + Wapiti 3.1.2 + mod_http_headers: Deprecate X-XSS-Protection header + mod_drupal_enum: Reduce false positives + mod_csp: Rework some WSTG categories + Crawler: Fix crash caused by unclosed async httpx responses + 23/02/2022 Wapiti 3.1.1 Crawler: Fix a bug preventing Wapiti to scan websites with bad ciphers (SSL 3, TLS 1.0 for example) diff --git a/setup.py b/setup.py index e20c9cd8e..0b239b5e4 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand -VERSION = "3.1.1" +VERSION = "3.1.2" DOC_DIR = "share/doc/wapiti" diff --git a/wapitiCore/attack/mod_crlf.py b/wapitiCore/attack/mod_crlf.py index 26cf21315..afb822a1b 100644 --- a/wapitiCore/attack/mod_crlf.py +++ b/wapitiCore/attack/mod_crlf.py @@ -36,7 +36,7 @@ class ModuleCrlf(Attack): MSG_VULN = _("CRLF Injection") do_get = True do_post = True - payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.1 version"), Flags()) + payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.2 version"), Flags()) def __init__(self, crawler, persister, attack_options, stop_event): super().__init__(crawler, persister, attack_options, stop_event) diff --git a/wapitiCore/main/wapiti.py b/wapitiCore/main/wapiti.py index 6d0eea744..8be9658e3 100755 --- a/wapitiCore/main/wapiti.py +++ b/wapitiCore/main/wapiti.py @@ -51,7 +51,7 @@ from wapitiCore.net.web import Request from wapitiCore.report import GENERATORS, get_report_generator_instance -WAPITI_VERSION = "3.1.1" +WAPITI_VERSION = "3.1.2" SCAN_FORCE_VALUES = { "paranoid": 1,