Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
7a91f8c0
Commit
7a91f8c0
authored
16 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Fixed issue 2655831 regarding sorter not knowing ext2/ext3 types
parent
4fff0fcb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES.txt
+5
-0
5 additions, 0 deletions
CHANGES.txt
tools/sorter/sorter.base
+14
-3
14 additions, 3 deletions
tools/sorter/sorter.base
with
19 additions
and
3 deletions
CHANGES.txt
+
5
−
0
View file @
7a91f8c0
...
@@ -57,6 +57,11 @@ collisions with GPT and the DOS safety partition table. DOS partition
...
@@ -57,6 +57,11 @@ collisions with GPT and the DOS safety partition table. DOS partition
table ignored if it seems to be the safety partition. Based on a
table ignored if it seems to be the safety partition. Based on a
variation of a patch submitted by Aaron Burghardt.
variation of a patch submitted by Aaron Burghardt.
4/11/09: Bug Fix: Fixed issue 2655831 regarding sorter not knowing
about the ext2 and ext3 types (it knew about ext and the older
forms). Also added support for ufs1, ufs2, iso, and hfs. reported
by Vinogratzky.
---------------- VERSION 3.0.0 --------------
---------------- VERSION 3.0.0 --------------
0/00/00: Update: Many, many, many API changes.
0/00/00: Update: Many, many, many API changes.
...
...
This diff is collapsed.
Click to expand it.
tools/sorter/sorter.base
+
14
−
3
View file @
7a91f8c0
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# The Sleuth Kit
# The Sleuth Kit
#
#
# Brian Carrier [carrier <at> sleuthkit [dot] org]
# Brian Carrier [carrier <at> sleuthkit [dot] org]
# Copyright (c) 2003-200
8
Brian Carrier. All rights reserved
# Copyright (c) 2003-200
9
Brian Carrier. All rights reserved
#
#
# TASK
# TASK
# Copyright (c) 2002-2003 Brian Carrier, @stake Inc. All rights reserved
# Copyright (c) 2002-2003 Brian Carrier, @stake Inc. All rights reserved
...
@@ -1400,15 +1400,26 @@ sub set_platform {
...
@@ -1400,15 +1400,26 @@ sub set_platform {
}
}
# Use freebsd as a default for UFS
# Use freebsd as a default for UFS
elsif ($FSTYPE eq "-f ufs") {
elsif (($FSTYPE eq "-f ufs")
|| ($FSTYPE eq "-f ufs1")
|| ($FSTYPE eq "-f ufs2"))
{
$PLATFORM = "freebsd";
$PLATFORM = "freebsd";
}
}
elsif (($FSTYPE eq "-f linux-ext2")
elsif (($FSTYPE eq "-f linux-ext2")
|| ($FSTYPE eq "-f linux-ext3")
|| ($FSTYPE eq "-f linux-ext3")
|| ($FSTYPE eq "-f ext"))
|| ($FSTYPE eq "-f ext")
|| ($FSTYPE eq "-f ext2")
|| ($FSTYPE eq "-f ext3"))
{
{
$PLATFORM = "linux";
$PLATFORM = "linux";
}
}
elsif ($FSTYPE eq "-f iso9660") {
$PLATFORM = "";
}
elsif ($FSTYPE eq "-f hfs") {
$PLATFORM = "mac";
}
else {
else {
print "Unknown file system type: $FSTYPE\n";
print "Unknown file system type: $FSTYPE\n";
exit(1);
exit(1);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment