Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.2.2 #632

Merged
merged 1 commit into from
Nov 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Wapiti 3.2.1
Wapiti 3.2.2
4 changes: 4 additions & 0 deletions doc/ChangeLog_Wapiti
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
30/11/2024
Wapiti 3.2.2
Core: Improvements for being able to install and run Wapiti on Windows

12/11/2024
Wapiti 3.2.1
doc: fix and update documentation (usage, manpage, etc)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "wapiti3"
version = "3.2.1"
version = "3.2.2"
description = "A web application vulnerability scanner"
readme = "README.rst"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_mod_crlf/assertions/crlf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"info": "CRLF Injection via injection in the parameter user-agent",
"parameter": "user-agent",
"module": "crlf",
"http_request": "GET /index.php?user-agent=http%3A%2F%2Fwww.google.fr%0D%0Awapiti%3A%203.2.1%20version HTTP/1.1\nhost: crlf\nconnection: keep-alive\nuser-agent: Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0\naccept-language: en-US\naccept-encoding: gzip, deflate, br\naccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
"http_request": "GET /index.php?user-agent=http%3A%2F%2Fwww.google.fr%0D%0Awapiti%3A%203.2.2%20version HTTP/1.1\nhost: crlf\nconnection: keep-alive\nuser-agent: Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0\naccept-language: en-US\naccept-encoding: gzip, deflate, br\naccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
"wstg": [
"WSTG-INPV-15"
]
Expand Down
2 changes: 1 addition & 1 deletion wapitiCore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,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.2.1"
WAPITI_VERSION = "3.2.2"
4 changes: 2 additions & 2 deletions wapitiCore/attack/mod_crlf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ModuleCrlf(Attack):
MSG_VULN = "CRLF Injection"
do_get = True
do_post = True
payloads = [PayloadInfo(payload="http://www.google.fr\r\nwapiti: 3.2.1 version")]
payloads = [PayloadInfo(payload="http://www.google.fr\r\nwapiti: 3.2.2 version")]

def __init__(self, crawler, persister, attack_options, crawler_configuration):
super().__init__(crawler, persister, attack_options, crawler_configuration)
Expand All @@ -49,7 +49,7 @@ async def attack(self, request: Request, response: Optional[Response] = None):

for mutated_request, parameter, _payload in self.mutator.mutate(
request,
str_to_payloadinfo(["http://www.google.fr\r\nwapiti: 3.2.1 version"]),
str_to_payloadinfo(["http://www.google.fr\r\nwapiti: 3.2.2 version"]),
):
log_verbose(f"[¨] {mutated_request.url}")

Expand Down
Loading