gitbrute 0.1.0

CLI tool to brute force a git commit hash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# gitbrute


A high-performance Rust tool to brute-force git commit hashes to match a specific prefix or regex pattern by manipulating timestamps.

## Usage


```bash
# Match a specific prefix

gitbrute --prefix 12345

# Match a regex pattern

gitbrute --pattern "^00+7"

# Use specific number of threads (default: all CPUs)

gitbrute --prefix abc --cpus 4
```