cluelessh/bin/sshdos/src/main.rs
2024-08-22 21:21:26 +02:00

142 lines
3.7 KiB
Rust

use std::{
sync::{
atomic::{AtomicUsize, Ordering},
Arc,
},
time::Duration,
};
use clap::Parser;
use eyre::Context;
use rand::RngCore;
use tokio::{
io::{AsyncReadExt, AsyncWriteExt},
net::TcpStream,
};
use tracing::{error, info};
use ssh_protocol::{
transport::{self},
SshStatus,
};
use tracing_subscriber::EnvFilter;
struct ThreadRngRand;
impl ssh_protocol::transport::SshRng for ThreadRngRand {
fn fill_bytes(&mut self, dest: &mut [u8]) {
rand::thread_rng().fill_bytes(dest);
}
}
#[derive(clap::Parser, Debug, Clone)]
struct Args {
#[arg(short = 'p', long, default_value_t = 22)]
port: u16,
#[arg(short = 't', long, default_value_t = 16)]
threads: usize,
#[arg(short = 'd', long, default_value_t = 1.0)]
delay: f32,
#[arg(short = 'c', long)]
chill: bool,
destination: String,
}
#[tokio::main]
async fn main() -> eyre::Result<()> {
let args = Args::parse();
let env_filter = EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new("info"));
tracing_subscriber::fmt().with_env_filter(env_filter).init();
let counter = Arc::new(AtomicUsize::new(0));
let mut handles = Vec::new();
for i in 0..args.threads {
info!("Starting worker {i}");
let args = args.clone();
let counter = counter.clone();
let handle = tokio::spawn(async move {
loop {
let result = execute_attempt(&args).await;
counter.fetch_add(1, Ordering::Relaxed);
tokio::time::sleep(Duration::from_secs_f32(args.delay)).await;
info!(
"Executed attempt {} on worker {i} with output {result:?}",
counter.load(Ordering::Relaxed)
);
}
});
handles.push(handle);
}
futures::future::join_all(handles).await;
Ok(())
}
async fn execute_attempt(args: &Args) -> eyre::Result<()> {
let conn = TcpStream::connect(&format!("{}:{}", args.destination, args.port)).await?;
let result = execute_attempt_inner(conn).await;
if args.chill {
info!("Chilling, taking up space");
tokio::time::sleep(Duration::from_secs(10)).await;
}
result
}
async fn execute_attempt_inner(mut conn: TcpStream) -> eyre::Result<()> {
let username = "dos";
let mut transport = transport::client::ClientConnection::new(ThreadRngRand);
transport.abort_for_dos = true;
let mut state = ssh_protocol::ClientConnection::new(
transport,
ssh_protocol::auth::ClientAuth::new(username.as_bytes().to_vec()),
);
let mut buf = [0; 1024];
loop {
while let Some(msg) = state.next_msg_to_send() {
conn.write_all(&msg.to_bytes())
.await
.wrap_err("writing response")?;
}
if let Some(_) = state.auth() {
unreachable!();
}
let read = conn
.read(&mut buf)
.await
.wrap_err("reading from connection")?;
if read == 0 {
info!("Did not read any bytes from TCP stream, EOF");
return Ok(());
}
if let Err(err) = state.recv_bytes(&buf[..read]) {
match err {
SshStatus::PeerError(err) => {
if err == "early abort" {
// Expected.
return Ok(());
}
error!(?err, "disconnecting client after invalid operation");
return Ok(());
}
SshStatus::Disconnect => {
error!("Received disconnect from server");
return Ok(());
}
}
}
}
}