Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ python rleapp.py -t <zip | tar | fs | gz | raw> -i <path_to_extraction> -o <pa
`raw` reads a disk image (`.img`, `.dd`, `.bin`, or any numbered `.001` segment of
a split set), or an EnCase/EWF `.E01` acquisition and the segments beside it, in
place: no mounting and no administrator rights. Its NTFS, FAT32, exFAT, ext2/3/4,
HFS+, APFS, QNX6, QNX4, ETFS, EFS and QNX IFS volumes are searched directly, and
F2FS, HFS+, APFS, QNX6, QNX4, ETFS, EFS and QNX IFS volumes are searched directly, and
only the files an artifact asks for are read out of the image. The GUI picks
`raw` on its own for those extensions. See `admin/docs/raw_image_input.md`.

Expand Down
8 changes: 5 additions & 3 deletions admin/docs/raw_image_input.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ For maintainers, and shared by iLEAPP, ALEAPP, RLEAPP, VLEAPP and DLEAPP.
segment of a split set) or an EnCase/EWF acquisition (`.E01` and its segments)
and reads it in place: no mounting, no administrator rights, and no copy of the
image or of its files anywhere but the files an artifact asks for. Its NTFS,
FAT32, exFAT, ext2/3/4, HFS+, APFS, QNX6, QNX4, ETFS, EFS and QNX IFS volumes
FAT32, exFAT, ext2/3/4, F2FS, HFS+, APFS, QNX6, QNX4, ETFS, EFS and QNX IFS volumes
are searched directly.

## Where the pieces are
Expand Down Expand Up @@ -76,8 +76,10 @@ for it, so no report field carries a zone the evidence never had.
collapsed and per-app row counts multiply; on a bare iOS Data volume the
`iosfilesystemevents` family and `diagnosticlogdevents` find nothing. A
full-disk or full-`/data` image carries the expected root and neither happens.
- F2FS, the filesystem most current Android userdata partitions use, is not
one the reader walks; such a volume is listed as not recognised.
- On F2FS, a file the filesystem compressed is listed with its size and not
decompressed, and one under per-file encryption (the norm on a current
Android `userdata`) is listed and its content refused rather than staged as
ciphertext.
- An encrypted volume (Android file-based encryption, iOS data protection,
FileVault, BitLocker) reads, but its names or contents are ciphertext.

Expand Down
3 changes: 2 additions & 1 deletion admin/test/scripts/test_raw_image_seeker.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@ def test_the_reader_finds_its_ewf_module_when_imported_as_a_package(self):
def test_the_filesystem_list_names_only_kinds_the_reader_walks(self):
walkers = {'QNX6': qnxprobe.Qnx6Walker, 'QNX4': qnxprobe.Qnx4Walker,
'ETFS': qnxprobe.EtfsWalker, 'EFS': qnxprobe.EfsWalker,
'ext2/3/4': qnxprobe.ExtWalker, 'FAT32': qnxprobe.Fat32Walker,
'ext2/3/4': qnxprobe.ExtWalker, 'F2FS': qnxprobe.F2fsWalker,
'FAT32': qnxprobe.Fat32Walker,
'exFAT': qnxprobe.ExfatWalker, 'NTFS': qnxprobe.NtfsWalker,
'HFS+': qnxprobe.HfsPlusWalker, 'APFS': qnxprobe.ApfsWalker,
'QNX IFS': qnxprobe.IfsWalker}
Expand Down
2 changes: 1 addition & 1 deletion rleapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def main():
"'tar', 'zip', or 'gz' for compressed packages containing files with normal names, "
"'raw' for a disk image (.img, .dd, .bin, or any numbered .001 segment of a split "
"set) or an EnCase/EWF .E01 acquisition, read in place without mounting: its "
"NTFS, FAT32, exFAT, ext2/3/4, HFS+, APFS, QNX6, QNX4, ETFS, EFS and QNX IFS "
"NTFS, FAT32, exFAT, ext2/3/4, F2FS, HFS+, APFS, QNX6, QNX4, ETFS, EFS and QNX IFS "
"volumes are searched directly, "
"'file' for a single file input."))
parser.add_argument('-o', '--output_path', required=False, action="store",
Expand Down
2 changes: 1 addition & 1 deletion scripts/raw_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
# What the vendored reader walks, for the file dialog and the -t help. A test
# asserts each entry here has a walker in the vendored copy, so the two cannot
# drift apart quietly.
RAW_IMAGE_FILESYSTEMS = ('QNX6, QNX4, ETFS, EFS, ext2/3/4, FAT32, exFAT, NTFS, '
RAW_IMAGE_FILESYSTEMS = ('QNX6, QNX4, ETFS, EFS, ext2/3/4, F2FS, FAT32, exFAT, NTFS, '
'HFS+, APFS, QNX IFS')
RAW_IMAGE_LABEL = f'Raw disk image or acquisition ({RAW_IMAGE_FILESYSTEMS})'

Expand Down
Loading
Loading