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
0c33daa1
Commit
0c33daa1
authored
15 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Added feature 2206265 to add imgtools support to sigfind
parent
bcb1d53a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES.txt
+3
-0
3 additions, 0 deletions
CHANGES.txt
tools/srchtools/sigfind.cpp
+32
-42
32 additions, 42 deletions
tools/srchtools/sigfind.cpp
with
35 additions
and
42 deletions
CHANGES.txt
+
3
−
0
View file @
0c33daa1
...
...
@@ -90,6 +90,9 @@ image formats supported by AFFLIB.
until after all image format open calls to support formats that do
not use actual files.
6/1/09: Update: Added feature 2206265 to add imgtools layer support
to sigfind.
---------------- VERSION 3.0.1 --------------
11/11/08: Bug Fix: Fixed crashing bug in ifind on FAT file system.
...
...
This diff is collapsed.
Click to expand it.
tools/srchtools/sigfind.cpp
+
32
−
42
View file @
0c33daa1
...
...
@@ -46,9 +46,10 @@ main(int argc, char **argv)
uint8_t
block
[
1024
];
char
**
err
=
NULL
;
int
fd
;
int
offset
=
0
,
rel_offset
=
0
;
int
read_size
=
512
,
bs
=
512
;
TSK_IMG_INFO
*
img_info
;
TSK_OFF_T
cur_offset
;
int
sig_offset
=
0
,
rel_offset
=
0
;
int
read_size
,
bs
=
512
;
daddr_t
i
,
prev_hit
;
int
sig_size
=
0
;
uint8_t
lit_end
=
0
;
...
...
@@ -78,9 +79,9 @@ main(int argc, char **argv)
case
'o'
:
/* Get the offset in the sector */
offset
=
strtol
(
optarg
,
err
,
10
);
if
((
offset
==
0
)
||
(
errno
==
EINVAL
))
{
/* Get the
sig_
offset in the sector */
sig_
offset
=
strtol
(
optarg
,
err
,
10
);
if
((
sig_
offset
==
0
)
||
(
errno
==
EINVAL
))
{
fprintf
(
stderr
,
"Error converting offset value: %s
\n
"
,
optarg
);
exit
(
1
);
...
...
@@ -94,7 +95,7 @@ main(int argc, char **argv)
sig
[
0
]
=
0x53
;
sig
[
1
]
=
0xef
;
sig_size
=
2
;
offset
=
56
;
sig_
offset
=
56
;
bs
=
512
;
}
else
if
((
strcmp
(
optarg
,
"dospart"
)
==
0
)
||
...
...
@@ -104,7 +105,7 @@ main(int argc, char **argv)
sig
[
0
]
=
0x55
;
sig
[
1
]
=
0xaa
;
sig_size
=
2
;
offset
=
510
;
sig_
offset
=
510
;
bs
=
512
;
}
else
if
(
strcmp
(
optarg
,
"ufs1"
)
==
0
)
{
...
...
@@ -115,7 +116,7 @@ main(int argc, char **argv)
sig
[
3
]
=
0x00
;
sig_size
=
4
;
/* Located 1372 into SB */
offset
=
348
;
sig_
offset
=
348
;
bs
=
512
;
}
else
if
(
strcmp
(
optarg
,
"ufs2"
)
==
0
)
{
...
...
@@ -126,7 +127,7 @@ main(int argc, char **argv)
sig
[
3
]
=
0x19
;
sig_size
=
4
;
/* Located 1372 into SB */
offset
=
348
;
sig_
offset
=
348
;
bs
=
512
;
}
else
if
(
strcmp
(
optarg
,
"hfs+"
)
==
0
)
{
...
...
@@ -137,7 +138,7 @@ main(int argc, char **argv)
sig
[
3
]
=
0x04
;
sig_size
=
4
;
/* Located 1024 into image */
offset
=
0
;
sig_
offset
=
0
;
bs
=
512
;
}
else
if
(
strcmp
(
optarg
,
"hfs"
)
==
0
)
{
...
...
@@ -146,7 +147,7 @@ main(int argc, char **argv)
sig
[
1
]
=
0x44
;
sig_size
=
2
;
/* Located 1024 into image */
offset
=
0
;
sig_
offset
=
0
;
bs
=
512
;
}
else
{
...
...
@@ -245,67 +246,60 @@ main(int argc, char **argv)
}
}
if
(
offset
<
0
)
{
fprintf
(
stderr
,
"Error: negative offset
\n
"
);
if
(
sig_
offset
<
0
)
{
fprintf
(
stderr
,
"Error: negative
signature
offset
\n
"
);
exit
(
1
);
}
/* Check that the signature and offset are not larger than a block */
if
((
offset
+
sig_size
)
>
bs
)
{
if
((
sig_
offset
+
sig_size
)
>
bs
)
{
fprintf
(
stderr
,
"Error: The offset and signature sizes are greater than the block size
\n
"
);
exit
(
1
);
}
read_size
=
512
;
/* If our signature crosses the 512 boundary, then read 1k at a time */
if
((
offset
/
512
)
!=
((
offset
+
sig_size
-
1
)
/
512
))
{
if
((
sig_
offset
/
512
)
!=
((
sig_
offset
+
sig_size
-
1
)
/
512
))
{
read_size
=
1024
;
}
rel_offset
=
offset
%
512
;
/* Get the image */
if
(
optind
+
1
!=
argc
)
{
usage
();
}
fd
=
open
(
argv
[
optind
],
O_RDONLY
);
if
(
fd
==
-
1
)
{
fprintf
(
stderr
,
"error opening: %s
\n
"
,
argv
[
optind
]);
if
((
img_info
=
tsk_img_open_utf8_sing
(
argv
[
optind
],
TSK_IMG_TYPE_DETECT
))
==
NULL
)
{
tsk_error_print
(
stderr
);
exit
(
1
);
}
/* Seek to the correct block */
if
(
offset
>
512
)
{
if
(
-
1
==
lseek
(
fd
,
(
offset
/
512
)
*
512
,
SEEK_SET
))
{
fprintf
(
stderr
,
"error doing initial seek
\n
"
);
exit
(
1
);
}
}
/* Make a version that can be more easily printed */
for
(
i
=
0
;
i
<
sig_size
;
i
++
)
{
sig_print
|=
(
sig
[
i
]
<<
((
sig_size
-
1
-
i
)
*
8
));
}
printf
(
"Block size: %d Offset: %d Signature: %X
\n
"
,
bs
,
offset
,
printf
(
"Block size: %d Offset: %d Signature: %X
\n
"
,
bs
,
sig_
offset
,
sig_print
);
/* Loop through by blocks - we will read in block sized chunks
* so that we can be used on raw devices
*/
cur_offset
=
(
sig_offset
/
512
)
*
512
;
rel_offset
=
sig_offset
%
512
;
prev_hit
=
-
1
;
for
(
i
=
0
;;
i
++
)
{
in
t
retval
;
ssize_
t
retval
;
/* Read the signature area */
retval
=
read
(
fd
,
(
void
*
)
block
,
read_size
);
if
(
retval
==
0
)
retval
=
tsk_img_read
(
img_info
,
cur_offset
,
(
char
*
)
block
,
read_size
);
if
(
retval
==
0
)
{
break
;
}
else
if
(
retval
==
-
1
)
{
fprintf
(
stderr
,
"error reading bytes %lu
\n
"
,
(
unsigned
long
)
i
);
...
...
@@ -325,13 +319,9 @@ main(int argc, char **argv)
prev_hit
=
i
;
}
/* Seek ahead another block */
if
(
-
1
==
lseek
(
fd
,
bs
-
read_size
,
SEEK_CUR
))
{
break
;
}
cur_offset
+=
bs
;
}
close
(
fd
);
tsk_img_close
(
img_info
);
exit
(
0
);
}
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