Skip to content

Commit 583c8b2

Browse files
authored
Merge pull request #279 from jtpereyda/v0.1.5
v0.1.5
2 parents e17cb35 + ff5fa3e commit 583c8b2

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
Upcoming
22
========
3+
4+
v0.1.5
5+
======
36
Features
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.

boofuzz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from .socket_connection import SocketConnection
3333
from past.builtins import map
3434
from builtins import chr
35-
__version__ = '0.1.4'
35+
__version__ = '0.1.5'
3636

3737

3838
# REQUEST MANAGEMENT

boofuzz/fuzz_logger_curses.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
from __future__ import division
22
import sys
33
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
58
import signal
69
import threading
710

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
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.

0 commit comments

Comments
 (0)