Skip to content

Commit

Permalink
Fix broken rahash2 command in the docs
Browse files Browse the repository at this point in the history
Switch `-B 1M -b` to `-B -b 1M`, old command failed:

```
$ rahash2 -B 1M -b -a sha256 /bin/ls
ERROR: Cannot open '1M'
```
  • Loading branch information
jukuisma authored and trufae committed Sep 22, 2024
1 parent fe794d8 commit 2232fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/rahash2/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ It can also be used to find which blocks have changed between more than one samp
This can be useful when analyzing ram dumps from a virtual machine for example. Use this command for this:

```console
$ rahash2 -B 1M -b -a sha256 /bin/ls
$ rahash2 -B -b 1M -a sha256 /bin/ls
```

### Hashing with rabin2
Expand Down

0 comments on commit 2232fe3

Please sign in to comment.