Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
devl00p committed Oct 24, 2022
1 parent 103dc8a commit af82ddf
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Wapiti 3.1.3
Wapiti 3.1.4
8 changes: 7 additions & 1 deletion doc/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ People who helped on 3.0.4:
People who helped on 3.1.0 and some previous versions
* Julien Tauran and [Cyberwatch team](https://cyberwatch.fr/)
* Thomas J Bradley ([@thomasjbradley](https://github.com/thomasjbradley))
* Kr1ss-XD and tres1N
* Kr1ss-XD and tres1N

People who helped on 3.1.4:
* un-fmunozs
* undergroundwires
* Lucas HENRY
* sven-hash
6 changes: 6 additions & 0 deletions doc/ChangeLog_Wapiti
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
24/10/2022
Wapiti 3.1.4
Crawler: Adds support for Firefox headless
Core: improve authentication. You can now pass HTTP auth (basic, ntml, etc) AND login by sending creds to an HTML form
Core: remove internationalization

09/07/2022
Wapiti 3.1.3
Reports: Add a new --detailed-report option that will put HTTP responses (headers and bodies) in the report.
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.3"
VERSION = "3.1.4"
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.3"
WAPITI_VERSION = "3.1.4"
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.3 version"), Flags())
payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.4 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 af82ddf

Please sign in to comment.