Skip to content

Commit 9f3d5da

Browse files
committed
Fixed CI
1 parent 43455b6 commit 9f3d5da

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A basic shell pipeline for extracting forensic artifacts from disk images. Relevant artifacts will be processed and provided in [ECS](https://www.elastic.co/guide/en/ecs/current/index.html) format for ingestion with [Logstash](https://www.elastic.co/de/logstash).
44

5-
```sh
5+
```console
66
# fmount image.dd | ffind | flog -D logstash
77
```
88

@@ -11,7 +11,7 @@ A basic shell pipeline for extracting forensic artifacts from disk images. Relev
1111
### fmount
1212
Mount disk images for read-only processing.
1313

14-
```sh
14+
```console
1515
# fmount [-ruszqhv] [-H CRC32|MD5|SHA1|SHA256] [-V SUM] [-B KEY] [-D DIR] IMAGE
1616
```
1717

@@ -51,7 +51,7 @@ Required system commands:
5151
### ffind
5252
Find forensic artifacts in mount points or on the live system.
5353

54-
```sh
54+
```console
5555
$ ffind [-rcsuqhv] [-H CRC32|MD5|SHA1|SHA256] [-C CSV] [-Z ZIP] [MOUNT ...]
5656
```
5757

@@ -82,7 +82,7 @@ Supported artifacts for Windows 7+ systems:
8282
### flog
8383
Log forensic artifacts as JSON in [ECS](https://www.elastic.co/guide/en/ecs/current/index.html) format.
8484

85-
```sh
85+
```console
8686
$ flog [-pqhv] [-D DIRECTORY] [FILE ...]
8787
```
8888

-134 KB
Binary file not shown.
-127 KB
Binary file not shown.

pkg/fmount/fmount_test.go

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,9 @@ func TestMount(t *testing.T) {
2525
name, file, path string
2626
}{
2727
{
28-
name: "Test mount with dd image",
29-
file: test.Testdata("windows", "disk.dd.zip"),
30-
path: "dd",
31-
},
32-
{
33-
name: "Test mount with vmdk image",
34-
file: test.Testdata("windows", "disk.vmdk.zip"),
35-
path: "dd",
28+
name: "Test mount with disk image",
29+
file: test.Testdata("windows", "disk.zip"),
30+
path: "disk",
3631
},
3732
}
3833

0 commit comments

Comments
 (0)