File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 11Upcoming
22========
3+
4+ v0.1.5
5+ ======
36Features
47--------
58- New curses logger class to provide a console gui similar to the webinterface. Use the session option `console_gui ` to enable it.
69 This has not been tested under Windows!
7- - New Session option `keep_web_open ` to allow analyzing the test results after test completion.
8- - Added compatibility for python3
10+ - Compatibility for Python 3
911- Large test cases are now truncated, unless a failure is detected.
1012- When a target fails to respond after restart, boofuzz will now continue to restart instead of crashing.
13+ - New Session option `keep_web_open ` to allow analyzing the test results after test completion.
1114- Process monitor creates new crash file for each run by default.
1215- Long lines now wrap in web view; longer lines no longer need to be truncated.
1316- Process monitor now stores crash bins in JSON format instead of pickled format.
Original file line number Diff line number Diff line change 3232from .socket_connection import SocketConnection
3333from past .builtins import map
3434from builtins import chr
35- __version__ = '0.1.4 '
35+ __version__ = '0.1.5 '
3636
3737
3838# REQUEST MANAGEMENT
Original file line number Diff line number Diff line change 11from __future__ import division
22import sys
33import time
4- import curses
4+ try :
5+ import curses
6+ except ImportError :
7+ pass # Allow package to be imported on Windows -- will fail if you try to use it
58import signal
69import threading
710
Original file line number Diff line number Diff line change 5454# built documents.
5555#
5656# The short X.Y version.
57- version = u'0.1.4 '
57+ version = u'0.1.5 '
5858# The full version, including alpha/beta/rc tags.
59- release = u'0.1.4 '
59+ release = u'0.1.5 '
6060
6161# The language for content autogenerated by Sphinx. Refer to documentation
6262# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments