Skip to content

Commit

Permalink
Add docs and bump version to 1.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed Dec 15, 2024
1 parent 49f4568 commit 9eeaadb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Check out repository
uses: "actions/checkout@v2"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ optional arguments:
(recovers all files by default)
-b, --bulkextractor Run Bulk Extractor on source
--ssn_mode SSN_MODE Specify ssn_mode for Bulk Extractor (0, 1, or 2)
--disable_carvers Disable Bulk Extractor file carvers
--regex REGEX Specify path to regex file
-d, --diskimage Use disk image instead of dir as input (Linux and
macOS only)
Expand Down Expand Up @@ -217,6 +218,8 @@ SSN recognition: you are now able to specify one of three SSN recognition modes:
-S ssn_mode=2 No dashes required. Allow any 9-digit number that matches SSN allocation range.
```

In Brunnhilde 1.9.7+, pass "--disable_carvers" instruct bulk_extractor to disable file carving.

### Using disk images as input

In `-d` mode, Brunnhilde uses SleuthKit's tsk_recover to export files from a disk image into a "carved files" directory for analysis. This works with raw images by default. In BitCurator or any other environment where libewf has been compiled into SleuthKit, Brunnhilde's -d mode also supports forensic disk image formats, including aff and ewf (E01). Due to the limitations of SleuthKit, Brunnhilde does not yet support characterizing disks that use the UDF filesystem.
Expand Down
2 changes: 1 addition & 1 deletion brunnhilde.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import sys


BRUNNHILDE_VERSION = "brunnhilde 1.9.6"
BRUNNHILDE_VERSION = "brunnhilde 1.9.7"

CSS = """
body {
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="brunnhilde",
version="1.9.6",
version="1.9.7",
url="https://github.com/tw4l/brunnhilde",
author="Tessa Walsh",
author_email="[email protected]",
Expand All @@ -23,11 +23,10 @@
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Archiving",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
Expand Down

0 comments on commit 9eeaadb

Please sign in to comment.