File tree 4 files changed +12
-6
lines changed
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
Upcoming
2
2
========
3
+
4
+ v0.1.5
5
+ ======
3
6
Features
4
7
--------
5
8
- New curses logger class to provide a console gui similar to the webinterface. Use the session option `console_gui ` to enable it.
6
9
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
9
11
- Large test cases are now truncated, unless a failure is detected.
10
12
- 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.
11
14
- Process monitor creates new crash file for each run by default.
12
15
- Long lines now wrap in web view; longer lines no longer need to be truncated.
13
16
- Process monitor now stores crash bins in JSON format instead of pickled format.
Original file line number Diff line number Diff line change 32
32
from .socket_connection import SocketConnection
33
33
from past .builtins import map
34
34
from builtins import chr
35
- __version__ = '0.1.4 '
35
+ __version__ = '0.1.5 '
36
36
37
37
38
38
# REQUEST MANAGEMENT
Original file line number Diff line number Diff line change 1
1
from __future__ import division
2
2
import sys
3
3
import 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
5
8
import signal
6
9
import threading
7
10
Original file line number Diff line number Diff line change 54
54
# built documents.
55
55
#
56
56
# The short X.Y version.
57
- version = u'0.1.4 '
57
+ version = u'0.1.5 '
58
58
# The full version, including alpha/beta/rc tags.
59
- release = u'0.1.4 '
59
+ release = u'0.1.5 '
60
60
61
61
# The language for content autogenerated by Sphinx. Refer to documentation
62
62
# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments