Skip to content

Commit

Permalink
Release 3.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
devl00p committed Jan 16, 2023
1 parent 2d221db commit d42726e
Show file tree
Hide file tree
Showing 5 changed files with 12 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.4
Wapiti 3.1.5
8 changes: 8 additions & 0 deletions doc/ChangeLog_Wapiti
Original file line number Diff line number Diff line change
@@ -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
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.4"
VERSION = "3.1.5"
DOC_DIR = "share/doc/wapiti"


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

0 comments on commit d42726e

Please sign in to comment.