Skip to content

Commit

Permalink
v0.4.2 (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
SR4ven committed Oct 6, 2023
1 parent c2facda commit 8e2aac7
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/2_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ body:
label: boofuzz version
description: What version of boofuzz that are you running?
options:
- "0.4.2"
- "0.4.1"
- "0.4.0"
- "0.3.0"
Expand Down
12 changes: 6 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Changelog
=========

Upcoming
--------
v0.4.2
------
Features
^^^^^^^^
- Remove six compatibility module
- Remove six compatibility module.
- Remove Python 2 compatibility code.
- Remove specifying object inheritance in classes
- Added Web UI listening on specific IP address
- Remove specifying object inheritance in classes.
- Added Web UI listening on specific IP address.
- Added Python 3.11 compatibility.

Fixes
^^^^^
- Specified encoding on file write rather than assuming default encoding
- Specified encoding on file write rather than assuming default encoding.
- Changed type of `default_value` from string to bytes for `FromFile`.
- `s_update` primitive was out of date.
- The minimum supported Python version is now 3.8.
Expand Down
2 changes: 1 addition & 1 deletion boofuzz/sessions/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def callback(target, fuzz_data_logger, session, node, edge, *args, **kwargs)
dst (int): Edge destination ID
callback (function): Optional. Callback function to pass received data to between node xmits
.. versionchanged:: 0.5.0
.. versionchanged:: 0.4.2
This class has been moved into the sessions subpackage. The full path is now
boofuzz.sessions.connection.Connection.
"""
Expand Down
2 changes: 1 addition & 1 deletion boofuzz/sessions/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class Session(pgraph.Graph):
Defaults to ./boofuzz-results/{uniq_timestamp}.db
web_address: Address where's Boofuzz logger exposed. Default 'localhost'
.. versionchanged:: 0.5.0
.. versionchanged:: 0.4.2
This class has been moved into the sessions subpackage. The full path is now boofuzz.sessions.session.Session.
"""

Expand Down
2 changes: 1 addition & 1 deletion boofuzz/sessions/session_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class SessionInfo:
"""
.. versionchanged:: 0.5.0
.. versionchanged:: 0.4.2
This class has been moved into the sessions subpackage. The full path is now
boofuzz.sessions.session_info.SessionInfo.
"""
Expand Down
2 changes: 1 addition & 1 deletion boofuzz/sessions/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Target:
procmon: Deprecated interface for adding a process monitor.
procmon_options: Deprecated interface for adding a process monitor.
.. versionchanged:: 0.5.0
.. versionchanged:: 0.4.2
This class has been moved into the sessions subpackage. The full path is now boofuzz.sessions.target.Target.
"""

Expand Down
2 changes: 1 addition & 1 deletion boofuzz/sessions/web_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class WebApp:
web_address (string): Address binded to port for monitoring fuzzing campaign via a web browser.
Default 'localhost'.
.. versionchanged:: 0.5.0
.. versionchanged:: 0.4.2
This class has been moved into the sessions subpackage. The full path is now boofuzz.sessions.web_app.WebApp.
"""

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

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "boofuzz"
version = "0.4.1"
version = "0.4.2"
description = "A fork and successor of the Sulley Fuzzing Framework"
authors = ["Joshua Pereyda <joshua.t.pereyda@gmail.com>"]
license = "GPL-2.0-only"
Expand Down

0 comments on commit 8e2aac7

Please sign in to comment.