diff --git a/VERSION b/VERSION index 725908199..badcc90e3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Wapiti 3.1.5 +Wapiti 3.1.6 diff --git a/doc/ChangeLog_Wapiti b/doc/ChangeLog_Wapiti index 79fa26b9b..6555c332f 100644 --- a/doc/ChangeLog_Wapiti +++ b/doc/ChangeLog_Wapiti @@ -1,3 +1,8 @@ +31/01/2023 + Wapiti 3.1.6 + Wappalyze: improve detection with DOM rules + Core: fix proxy option + 16/01/2023 Wapiti 3.1.5 LFI: adds a payload for loknop technique (chaining PHP filters) diff --git a/setup.py b/setup.py index 7b90605c7..e0b85e763 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.5" +VERSION = "3.1.6" DOC_DIR = "share/doc/wapiti" diff --git a/wapitiCore/__init__.py b/wapitiCore/__init__.py index ca0a95a8c..b086994f8 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.5" +WAPITI_VERSION = "3.1.6" diff --git a/wapitiCore/attack/mod_crlf.py b/wapitiCore/attack/mod_crlf.py index b874c7865..b1ab98ed0 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.5 version"), Flags()) + payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.6 version"), Flags()) def __init__(self, crawler, persister, attack_options, stop_event, crawler_configuration): super().__init__(crawler, persister, attack_options, stop_event, crawler_configuration)