mirror of
https://github.com/nelsbrock/fingerprunk.git
synced 2026-08-14 16:12:08 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c22d4bdb27
|
||
|
|
3439e51865
|
||
|
|
a07aaca068
|
||
|
|
20c0a919c5
|
||
|
|
3ea0de1cdb
|
||
|
|
9f992caef9
|
||
|
|
c8bedabe1f
|
||
|
|
e8b83d41cb
|
||
|
|
6af66fd292
|
||
|
|
bc07cba585
|
||
|
|
c6b5020795
|
||
|
|
c74dcd0f01
|
||
|
|
06e528ac09
|
||
|
|
890d8fa0be
|
||
|
|
112a6b087b
|
||
|
|
fe984f2e43
|
||
|
|
b1450070d1
|
Generated
+545
-460
File diff suppressed because it is too large
Load Diff
+7
-8
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "fingerprunk"
|
name = "fingerprunk"
|
||||||
version = "0.2.0"
|
version = "0.4.0"
|
||||||
authors = ["Niklas Elsbrock <mail@nelsbrock.de>"]
|
authors = ["Niklas Elsbrock <mail@nelsbrock.de>"]
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "CLI tool for brute-forcing OpenPGP keys with cool fingerprints"
|
description = "CLI tool for brute-forcing OpenPGP keys with cool fingerprints"
|
||||||
@@ -10,11 +10,10 @@ keywords = ["fingerprint", "openpgp", "bruteforce"]
|
|||||||
categories = ["command-line-utilities"]
|
categories = ["command-line-utilities"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.100"
|
anyhow = "1.0.102"
|
||||||
clap = { version = "4.5.50", features = ["derive"] }
|
clap = { version = "4.6.1", features = ["derive"] }
|
||||||
ctrlc = "3.5.0"
|
ctrlc = "3.5.2"
|
||||||
fancy-regex = "0.16.2"
|
fancy-regex = "0.18.0"
|
||||||
num-integer = "0.1.46"
|
num-integer = "0.1.46"
|
||||||
num_cpus = "1.17.0"
|
rpassword = "7.5.2"
|
||||||
rpassword = "7.4.0"
|
sequoia-openpgp = "2.3.0"
|
||||||
sequoia-openpgp = "2.0.0"
|
|
||||||
|
|||||||
@@ -18,11 +18,11 @@ at `secret.asc`. The regex for this is `^C0FFEE`. Now, simply use the following
|
|||||||
the search:
|
the search:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
fingerprunk -r '^C0FFEE' >> secret.asc
|
fingerprunk -r '^C0FFEE' -u "Your Name <your.email@example.org>" >> secret.asc
|
||||||
```
|
```
|
||||||
|
|
||||||
Fingerprunk will now generate many keys and write out all keys with matching fingerprints to
|
Fingerprunk will now generate many keys and write out all keys with matching fingerprints to
|
||||||
standard output (here: `secret.asc`).
|
standard output (here: `secret.asc`), adding the provided user ID.
|
||||||
|
|
||||||
If you want Fingerprunk to output password-encrypted keys use the `-p` flag and you will be prompted
|
If you want Fingerprunk to output password-encrypted keys use the `-p` flag and you will be prompted
|
||||||
for a password.
|
for a password.
|
||||||
|
|||||||
+60
-33
@@ -3,13 +3,13 @@
|
|||||||
use std::{
|
use std::{
|
||||||
fmt::{self, Write},
|
fmt::{self, Write},
|
||||||
io,
|
io,
|
||||||
num::NonZeroU64,
|
num::NonZero,
|
||||||
sync::{
|
sync::{
|
||||||
atomic::{AtomicBool, AtomicU64, Ordering},
|
atomic::{AtomicBool, AtomicU64, Ordering},
|
||||||
mpsc,
|
mpsc,
|
||||||
},
|
},
|
||||||
thread,
|
thread,
|
||||||
time::{Duration, Instant},
|
time::{Duration, Instant, SystemTime},
|
||||||
};
|
};
|
||||||
|
|
||||||
use fancy_regex::Regex;
|
use fancy_regex::Regex;
|
||||||
@@ -18,7 +18,7 @@ use sequoia_openpgp::{
|
|||||||
Cert, Packet, armor,
|
Cert, Packet, armor,
|
||||||
crypto::Password,
|
crypto::Password,
|
||||||
packet::{
|
packet::{
|
||||||
Key,
|
Key, UserID,
|
||||||
key::{Key4, PrimaryRole, SecretParts},
|
key::{Key4, PrimaryRole, SecretParts},
|
||||||
prelude::SignatureBuilder,
|
prelude::SignatureBuilder,
|
||||||
},
|
},
|
||||||
@@ -38,8 +38,10 @@ enum Message {
|
|||||||
pub struct Config {
|
pub struct Config {
|
||||||
pub regex: Regex,
|
pub regex: Regex,
|
||||||
pub status_enabled: bool,
|
pub status_enabled: bool,
|
||||||
pub stop_after: Option<NonZeroU64>,
|
pub count: Option<NonZero<u64>>,
|
||||||
pub password: Option<Password>,
|
pub password: Option<Password>,
|
||||||
|
pub userids: Vec<UserID>,
|
||||||
|
pub workers: NonZero<usize>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
@@ -72,7 +74,7 @@ impl Fingerprunk {
|
|||||||
pub fn run(mut self) -> anyhow::Result<()> {
|
pub fn run(mut self) -> anyhow::Result<()> {
|
||||||
self.started_instant = Instant::now();
|
self.started_instant = Instant::now();
|
||||||
|
|
||||||
let (sender, receiver) = mpsc::channel();
|
let (sender, receiver) = mpsc::sync_channel(16);
|
||||||
|
|
||||||
{
|
{
|
||||||
let sender = sender.clone();
|
let sender = sender.clone();
|
||||||
@@ -82,24 +84,20 @@ impl Fingerprunk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
thread::scope(|scope| {
|
thread::scope(|scope| {
|
||||||
let ref_self = &self;
|
|
||||||
|
|
||||||
let status_displayer = if self.config.status_enabled {
|
let status_displayer = if self.config.status_enabled {
|
||||||
Some(
|
Some(
|
||||||
thread::Builder::new()
|
thread::Builder::new()
|
||||||
.name("status_displayer".to_string())
|
.name("status_displayer".to_string())
|
||||||
.spawn_scoped(scope, move || ref_self.status_displayer_thread())?,
|
.spawn_scoped(scope, || self.status_displayer_thread())?,
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
for num in 0..num_cpus::get() {
|
for num in 0..self.config.workers.get() {
|
||||||
let sender = sender.clone();
|
|
||||||
|
|
||||||
thread::Builder::new()
|
thread::Builder::new()
|
||||||
.name(format!("worker-{num:03}"))
|
.name(format!("worker-{num:03}"))
|
||||||
.spawn_scoped(scope, move || ref_self.worker_thread(sender))?;
|
.spawn_scoped(scope, || self.worker_thread(&sender))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut stdout = io::stdout().lock();
|
let mut stdout = io::stdout().lock();
|
||||||
@@ -108,12 +106,12 @@ impl Fingerprunk {
|
|||||||
for message in receiver {
|
for message in receiver {
|
||||||
match message {
|
match message {
|
||||||
Message::Key(key) => {
|
Message::Key(key) => {
|
||||||
let cert = self.key_to_cert(&key)?;
|
let cert = self.key_to_cert(key)?;
|
||||||
self.serialize_cert(cert, &mut stdout)?;
|
self.serialize_cert(&cert, &mut stdout)?;
|
||||||
|
|
||||||
// Increase "found" counter and stop if enough matches have been found
|
// Increase "found" counter and stop if enough matches have been found
|
||||||
let prev = self.counter_found.fetch_add(1, Ordering::Relaxed);
|
let prev = self.counter_found.fetch_add(1, Ordering::Relaxed);
|
||||||
if self.config.stop_after.is_some_and(|s| prev + 1 == s.get()) {
|
if self.config.count.is_some_and(|s| prev + 1 == s.get()) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -133,7 +131,7 @@ impl Fingerprunk {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn worker_thread(&self, sender: mpsc::Sender<Message>) {
|
fn worker_thread(&self, sender: &mpsc::SyncSender<Message>) {
|
||||||
let mut fingerprint_hex = String::with_capacity(20 * 2);
|
let mut fingerprint_hex = String::with_capacity(20 * 2);
|
||||||
|
|
||||||
while !self.stop.load(Ordering::Relaxed) {
|
while !self.stop.load(Ordering::Relaxed) {
|
||||||
@@ -143,9 +141,9 @@ impl Fingerprunk {
|
|||||||
write!(fingerprint_hex, "{:X}", key.fingerprint())
|
write!(fingerprint_hex, "{:X}", key.fingerprint())
|
||||||
.expect("should write into string without error");
|
.expect("should write into string without error");
|
||||||
if self.check_fingerprint(&fingerprint_hex) {
|
if self.check_fingerprint(&fingerprint_hex) {
|
||||||
sender
|
// The channel might already be closed here if we're stopping.
|
||||||
.send(Message::Key(Key::V4(key)))
|
// That is fine, so we just ignore the error.
|
||||||
.expect("should be able to send key");
|
let _ = sender.send(Message::Key(Key::V4(key)));
|
||||||
}
|
}
|
||||||
self.counter_tried.fetch_add(1, Ordering::Relaxed);
|
self.counter_tried.fetch_add(1, Ordering::Relaxed);
|
||||||
}
|
}
|
||||||
@@ -159,35 +157,50 @@ impl Fingerprunk {
|
|||||||
.expect("should check regex without error")
|
.expect("should check regex without error")
|
||||||
}
|
}
|
||||||
|
|
||||||
fn key_to_cert(&self, key: &SecretKey) -> anyhow::Result<Cert> {
|
fn key_to_cert(&self, mut key: SecretKey) -> anyhow::Result<Cert> {
|
||||||
let sig = SignatureBuilder::new(SignatureType::DirectKey)
|
let creation_time = SystemTime::now();
|
||||||
.set_hash_algo(HashAlgorithm::SHA512)
|
|
||||||
.set_preferred_hash_algorithms(vec![HashAlgorithm::SHA512, HashAlgorithm::SHA256])?
|
|
||||||
.set_preferred_symmetric_algorithms(vec![
|
|
||||||
SymmetricAlgorithm::AES256,
|
|
||||||
SymmetricAlgorithm::AES128,
|
|
||||||
])?;
|
|
||||||
|
|
||||||
let mut signer = key
|
let mut signer = key
|
||||||
.clone()
|
.clone()
|
||||||
.into_keypair()
|
.into_keypair()
|
||||||
.expect("key should have a secret");
|
.expect("key should have a secret");
|
||||||
let sig = sig.sign_direct_key(&mut signer, key.parts_as_public())?;
|
|
||||||
|
|
||||||
let secret_key_packet = Packet::SecretKey({
|
// Sign keypair
|
||||||
let mut key = key.clone();
|
let key_sig = create_sig_builder(SignatureType::DirectKey, creation_time)?
|
||||||
|
.sign_direct_key(&mut signer, key.parts_as_public())?;
|
||||||
|
|
||||||
|
// Create certificate
|
||||||
|
let mut cert = Cert::try_from(Packet::SecretKey({
|
||||||
if let Some(ref password) = self.config.password {
|
if let Some(ref password) = self.config.password {
|
||||||
let (k, mut secret) = key.take_secret();
|
let (k, mut secret) = key.take_secret();
|
||||||
secret.encrypt_in_place(&k, password)?;
|
secret.encrypt_in_place(&k, password)?;
|
||||||
key = k.add_secret(secret).0;
|
key = k.add_secret(secret).0;
|
||||||
}
|
}
|
||||||
key
|
key
|
||||||
});
|
}))?;
|
||||||
|
|
||||||
Cert::try_from(vec![secret_key_packet, Packet::from(sig)])
|
let mut packets = vec![Packet::from(key_sig)];
|
||||||
|
|
||||||
|
// Sign user IDs
|
||||||
|
let mut next_is_primary = true;
|
||||||
|
for user_id in self.config.userids.iter().cloned() {
|
||||||
|
let mut sig_builder =
|
||||||
|
create_sig_builder(SignatureType::PositiveCertification, creation_time)?;
|
||||||
|
if next_is_primary {
|
||||||
|
sig_builder = sig_builder.set_primary_userid(true)?;
|
||||||
|
next_is_primary = false;
|
||||||
|
}
|
||||||
|
let sig = user_id.bind(&mut signer, &cert, sig_builder)?;
|
||||||
|
|
||||||
|
packets.push(user_id.into());
|
||||||
|
packets.push(sig.into());
|
||||||
|
}
|
||||||
|
|
||||||
|
cert = cert.insert_packets(packets)?.0;
|
||||||
|
Ok(cert)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_cert(&self, cert: Cert, to: impl io::Write) -> anyhow::Result<()> {
|
fn serialize_cert(&self, cert: &Cert, to: impl io::Write) -> anyhow::Result<()> {
|
||||||
let mut comments = cert.armor_headers();
|
let mut comments = cert.armor_headers();
|
||||||
comments.push(format!(
|
comments.push(format!(
|
||||||
"Generated with Fingerprunk. Regex: {}",
|
"Generated with Fingerprunk. Regex: {}",
|
||||||
@@ -256,3 +269,17 @@ impl Fingerprunk {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn create_sig_builder(
|
||||||
|
typ: SignatureType,
|
||||||
|
creation_time: SystemTime,
|
||||||
|
) -> Result<SignatureBuilder, anyhow::Error> {
|
||||||
|
SignatureBuilder::new(typ)
|
||||||
|
.set_signature_creation_time(creation_time)?
|
||||||
|
.set_hash_algo(HashAlgorithm::SHA512)
|
||||||
|
.set_preferred_hash_algorithms(vec![HashAlgorithm::SHA512, HashAlgorithm::SHA256])?
|
||||||
|
.set_preferred_symmetric_algorithms(vec![
|
||||||
|
SymmetricAlgorithm::AES256,
|
||||||
|
SymmetricAlgorithm::AES128,
|
||||||
|
])
|
||||||
|
}
|
||||||
|
|||||||
+46
-11
@@ -1,12 +1,13 @@
|
|||||||
use std::{
|
use std::{
|
||||||
io::{self, IsTerminal},
|
io::{self, IsTerminal},
|
||||||
num::NonZeroU64,
|
num::NonZero,
|
||||||
};
|
};
|
||||||
|
|
||||||
use anyhow::{Context as AnyhowContext, anyhow};
|
use anyhow::{Context, anyhow};
|
||||||
use clap::{ArgAction, Parser, ValueEnum};
|
use clap::{ArgAction, Parser, ValueEnum};
|
||||||
use fancy_regex::Regex;
|
use fancy_regex::Regex;
|
||||||
use fingerprunk::Fingerprunk;
|
use fingerprunk::Fingerprunk;
|
||||||
|
use sequoia_openpgp::packet::UserID;
|
||||||
|
|
||||||
#[derive(Parser, Debug)]
|
#[derive(Parser, Debug)]
|
||||||
#[command(version, about, long_about = None)]
|
#[command(version, about, long_about = None)]
|
||||||
@@ -30,15 +31,32 @@ struct Args {
|
|||||||
status: StatusEnabled,
|
status: StatusEnabled,
|
||||||
|
|
||||||
/// Stop once the specified number of matching keys has been found.
|
/// Stop once the specified number of matching keys has been found.
|
||||||
#[arg(long)]
|
#[arg(short = 'n', long, value_name = "NUM")]
|
||||||
stop_after: Option<NonZeroU64>,
|
count: Option<NonZero<u64>>,
|
||||||
|
|
||||||
/// Prompt for a password and use it to encrypt found keys.
|
/// Prompt for a password and use it to encrypt matching keys.
|
||||||
///
|
///
|
||||||
/// By default, found keys are printed to stdout unencrypted. Use this if you actually plan to
|
/// By default, found keys are printed to stdout unencrypted. Use this if you actually plan to
|
||||||
/// use generated keys.
|
/// use generated keys.
|
||||||
#[arg(short, long, action = ArgAction::SetTrue)]
|
#[arg(short, long, action = ArgAction::SetTrue)]
|
||||||
password: bool,
|
password: bool,
|
||||||
|
|
||||||
|
/// Add the given user ID to matching keys.
|
||||||
|
#[arg(short, long = "userid")]
|
||||||
|
userid: Vec<UserID>,
|
||||||
|
|
||||||
|
/// Explicitly do not add user IDs to matching keys.
|
||||||
|
///
|
||||||
|
/// Disables the warning about importing keys without user IDs into GnuPG.
|
||||||
|
#[arg(long, conflicts_with = "userid", action = ArgAction::SetTrue)]
|
||||||
|
no_userid: bool,
|
||||||
|
|
||||||
|
/// Use the specified amount of worker threads.
|
||||||
|
///
|
||||||
|
/// If not specified, the amount of worker threads will be set to the amount of the machine's
|
||||||
|
/// available parallelism.
|
||||||
|
#[arg(long, value_name = "NUM")]
|
||||||
|
workers: Option<NonZero<usize>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(ValueEnum, Clone, Copy, Debug, Default)]
|
#[derive(ValueEnum, Clone, Copy, Debug, Default)]
|
||||||
@@ -62,16 +80,33 @@ impl StatusEnabled {
|
|||||||
fn main() -> anyhow::Result<()> {
|
fn main() -> anyhow::Result<()> {
|
||||||
let args = Args::parse();
|
let args = Args::parse();
|
||||||
|
|
||||||
|
let workers = match args.workers {
|
||||||
|
Some(workers) => workers,
|
||||||
|
None => std::thread::available_parallelism().context(
|
||||||
|
"unable to determine available parallelism, \
|
||||||
|
use `--workers <NUM>` to specify amount of worker threads",
|
||||||
|
)?,
|
||||||
|
};
|
||||||
|
|
||||||
|
if !args.no_userid && args.userid.is_empty() {
|
||||||
|
eprintln!(
|
||||||
|
"WARNING: No user ID was provided.\n\
|
||||||
|
You may experience problems importing generated keys into GnuPG.\n\
|
||||||
|
Use `--userid <USERID>` to add a user ID.\n"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
let password = if args.password {
|
let password = if args.password {
|
||||||
let password = rpassword::prompt_password(
|
let password = rpassword::prompt_password(
|
||||||
"Enter password for encrypting found keys (leave empty for no encryption): ",
|
"Enter password for encrypting found keys (leave empty for no encryption): ",
|
||||||
)
|
)
|
||||||
.with_context(|| "Failed to prompt password")?;
|
.context("Failed to prompt password")?;
|
||||||
|
|
||||||
if password.is_empty() {
|
if password.is_empty() {
|
||||||
None
|
None
|
||||||
} else {
|
} else {
|
||||||
let password_retype = rpassword::prompt_password("Retype password: ")
|
let password_retype = rpassword::prompt_password("Retype password: ")
|
||||||
.with_context(|| "Failed to prompt password retype")?;
|
.context("Failed to prompt password retype")?;
|
||||||
if password_retype == password {
|
if password_retype == password {
|
||||||
Some(password.into())
|
Some(password.into())
|
||||||
} else {
|
} else {
|
||||||
@@ -85,11 +120,11 @@ fn main() -> anyhow::Result<()> {
|
|||||||
let config = fingerprunk::Config {
|
let config = fingerprunk::Config {
|
||||||
regex: args.regex,
|
regex: args.regex,
|
||||||
status_enabled: args.status.evaluate(),
|
status_enabled: args.status.evaluate(),
|
||||||
stop_after: args.stop_after,
|
count: args.count,
|
||||||
password,
|
password,
|
||||||
|
userids: args.userid,
|
||||||
|
workers,
|
||||||
};
|
};
|
||||||
|
|
||||||
Fingerprunk::new_from_config(config).run()?;
|
Fingerprunk::new_from_config(config).run()
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user