Skip to content

Commit

Permalink
Bump version to 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
devl00p committed May 13, 2022
1 parent 5f26310 commit 7c25095
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Wapiti 3.1.1
Wapiti 3.1.2
7 changes: 7 additions & 0 deletions doc/ChangeLog_Wapiti
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down
2 changes: 1 addition & 1 deletion wapitiCore/attack/mod_crlf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion wapitiCore/main/wapiti.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 7c25095

Please sign in to comment.