Skip to content

Commit

Permalink
Release v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lanjelot committed Dec 14, 2017
1 parent 6227e28 commit 4d7ebf4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions patator.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
__url__ = 'http://www.hsc.fr/ressources/outils/patator/'
__git__ = 'https://github.com/lanjelot/patator'
__twitter__ = 'http://twitter.com/lanjelot'
__version__ = '0.7-beta'
__version__ = '0.7'
__license__ = 'GPLv2'
__banner__ = 'Patator v%s (%s)' % (__version__, __git__)

Expand Down Expand Up @@ -586,6 +586,15 @@
CHANGELOG
---------
* v0.7 2017/12/14
- added Python3 support
- added Windows support
- new --timeout and --allow-ignore-failures options
- switched to multiprocesses instead of threads (for --timeout to work on Windows)
- new modules: ike_enum, rdp_login, ajp_fuzz, sqlcipher_pass
- more info added to XML output
- fixed many bugs
* v0.6 2014/08/25
- added CSV and XML output formats
- added module execution time column
Expand Down Expand Up @@ -3632,7 +3641,7 @@ def debug_func(t, s):
if t in (pycurl.INFOTYPE_HEADER_OUT, pycurl.INFOTYPE_DATA_OUT):
trace.write(s)

elif t == pycurl.INFOTYPE_TEXT and b'upload completely sent off' in s:
elif t == pycurl.INFOTYPE_TEXT and 'upload completely sent off' in s:
trace.write('\n\n')

elif t in (pycurl.INFOTYPE_HEADER_IN, pycurl.INFOTYPE_DATA_IN):
Expand Down

0 comments on commit 4d7ebf4

Please sign in to comment.