Skip to content

Commit

Permalink
Merge pull request #279 from jtpereyda/v0.1.5
Browse files Browse the repository at this point in the history
v0.1.5
  • Loading branch information
jtpereyda authored May 26, 2019
2 parents e17cb35 + ff5fa3e commit 583c8b2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
Upcoming
========

v0.1.5
======
Features
--------
- New curses logger class to provide a console gui similar to the webinterface. Use the session option `console_gui` to enable it.
This has not been tested under Windows!
- New Session option `keep_web_open` to allow analyzing the test results after test completion.
- Added compatibility for python3
- Compatibility for Python 3
- Large test cases are now truncated, unless a failure is detected.
- When a target fails to respond after restart, boofuzz will now continue to restart instead of crashing.
- New Session option `keep_web_open` to allow analyzing the test results after test completion.
- Process monitor creates new crash file for each run by default.
- Long lines now wrap in web view; longer lines no longer need to be truncated.
- Process monitor now stores crash bins in JSON format instead of pickled format.
Expand Down
2 changes: 1 addition & 1 deletion boofuzz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from .socket_connection import SocketConnection
from past.builtins import map
from builtins import chr
__version__ = '0.1.4'
__version__ = '0.1.5'


# REQUEST MANAGEMENT
Expand Down
5 changes: 4 additions & 1 deletion boofuzz/fuzz_logger_curses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
from __future__ import division
import sys
import time
import curses
try:
import curses
except ImportError:
pass # Allow package to be imported on Windows -- will fail if you try to use it
import signal
import threading

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.1.4'
version = u'0.1.5'
# The full version, including alpha/beta/rc tags.
release = u'0.1.4'
release = u'0.1.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 583c8b2

Please sign in to comment.