From d42726e829a6933db8e2b1a6b548bd48ad64495b Mon Sep 17 00:00:00 2001 From: devloop Date: Mon, 16 Jan 2023 13:58:38 +0100 Subject: [PATCH] Release 3.1.5 --- VERSION | 2 +- doc/ChangeLog_Wapiti | 8 ++++++++ setup.py | 2 +- wapitiCore/__init__.py | 2 +- wapitiCore/attack/mod_crlf.py | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index bab081d1e..725908199 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Wapiti 3.1.4 +Wapiti 3.1.5 diff --git a/doc/ChangeLog_Wapiti b/doc/ChangeLog_Wapiti index 3e0452440..79fa26b9b 100644 --- a/doc/ChangeLog_Wapiti +++ b/doc/ChangeLog_Wapiti @@ -1,3 +1,11 @@ +16/01/2023 + Wapiti 3.1.5 + LFI: adds a payload for loknop technique (chaining PHP filters) + mod_cookie: Fix bad WSTG code for bad cookie attribute + Core: use proxy settings for updating + Core: fix creds options + Core: update most dependencies + 24/10/2022 Wapiti 3.1.4 Crawler: Adds support for Firefox headless diff --git a/setup.py b/setup.py index a7150b940..7b90605c7 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.4" +VERSION = "3.1.5" DOC_DIR = "share/doc/wapiti" diff --git a/wapitiCore/__init__.py b/wapitiCore/__init__.py index f36d75fe0..ca0a95a8c 100644 --- a/wapitiCore/__init__.py +++ b/wapitiCore/__init__.py @@ -18,4 +18,4 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA parser_name = "html.parser" -WAPITI_VERSION = "3.1.4" +WAPITI_VERSION = "3.1.5" diff --git a/wapitiCore/attack/mod_crlf.py b/wapitiCore/attack/mod_crlf.py index 68766a069..b874c7865 100644 --- a/wapitiCore/attack/mod_crlf.py +++ b/wapitiCore/attack/mod_crlf.py @@ -37,7 +37,7 @@ class ModuleCrlf(Attack): MSG_VULN = "CRLF Injection" do_get = True do_post = True - payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.4 version"), Flags()) + payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.5 version"), Flags()) def __init__(self, crawler, persister, attack_options, stop_event, crawler_configuration): super().__init__(crawler, persister, attack_options, stop_event, crawler_configuration)