added outfile option
Signed-off-by: spv <spv0x04@proton.me>
This commit is contained in:
parent
9c4eaacaf4
commit
2e627e32a4
@ -1,6 +1,6 @@
|
|||||||
use std::{time::{Duration, Instant}, sync::{Arc, RwLock}};
|
use std::{io::Write, sync::{Arc, RwLock}, time::{Duration, Instant}};
|
||||||
|
|
||||||
use crate::discord_invite::{DiscordInvite, DiscordInviteError};
|
use crate::{discord_invite::{DiscordInvite, DiscordInviteError}, Args};
|
||||||
use console::Term;
|
use console::Term;
|
||||||
use getset::{Getters, MutGetters, Setters};
|
use getset::{Getters, MutGetters, Setters};
|
||||||
use rand::seq::IteratorRandom;
|
use rand::seq::IteratorRandom;
|
||||||
@ -24,7 +24,13 @@ impl Bruter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn start(mut self) -> anyhow::Result<()> {
|
pub fn start(mut self, args: Args) -> anyhow::Result<()> {
|
||||||
|
let mut outfile = std::fs::OpenOptions::new()
|
||||||
|
.write(true)
|
||||||
|
.append(true)
|
||||||
|
.create(true)
|
||||||
|
.open(args.outfile)
|
||||||
|
.unwrap();
|
||||||
let mut rng = rand::thread_rng();
|
let mut rng = rand::thread_rng();
|
||||||
for i in 0..self.iterations {
|
for i in 0..self.iterations {
|
||||||
let string: String = random_string::generate(
|
let string: String = random_string::generate(
|
||||||
@ -54,7 +60,8 @@ impl Bruter {
|
|||||||
&inv.code,
|
&inv.code,
|
||||||
start.elapsed().as_millis()
|
start.elapsed().as_millis()
|
||||||
);
|
);
|
||||||
self.found_codes.push(inv);
|
self.found_codes.push(inv.clone());
|
||||||
|
outfile.write_fmt(format_args!("https://discord.gg/{}\n", inv.code)).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10
src/main.rs
10
src/main.rs
@ -12,18 +12,18 @@ pub mod tui;
|
|||||||
#[derive(Parser, Debug, Clone)]
|
#[derive(Parser, Debug, Clone)]
|
||||||
pub struct Args{
|
pub struct Args{
|
||||||
wordlist: PathBuf,
|
wordlist: PathBuf,
|
||||||
#[clap(default_value_t = 10)]
|
outfile: PathBuf,
|
||||||
iterations: usize,
|
iterations: Option<usize>,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() -> anyhow::Result<()>{
|
fn main() -> anyhow::Result<()>{
|
||||||
let args = Args::parse();
|
let args = Args::parse();
|
||||||
let mut bruter = Bruter::new(args.iterations);
|
let mut bruter = Bruter::new(args.iterations.unwrap_or(10));
|
||||||
let mut codes = vec![];
|
let mut codes = vec![];
|
||||||
for w in std::fs::read_to_string(args.wordlist).unwrap().split('\n'){
|
for w in std::fs::read_to_string(args.clone().wordlist).unwrap().split('\n'){
|
||||||
codes.push(w.to_string());
|
codes.push(w.to_string());
|
||||||
}
|
}
|
||||||
bruter.set_codes(codes);
|
bruter.set_codes(codes);
|
||||||
Bruter::start(bruter).unwrap();
|
Bruter::start(bruter, args).unwrap();
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user