Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
CVE-2026-7777-Rust-Use-After-Free-in-Unsafe-Web-Server — Dimostra un use-after-free in Rust in un server web con codice vulnerabile e un trigger multithread per mostrare la corruzione della memoria e la possibile esecuzione di codice. | Kitploit
Strumenti/GitHubGitHub/george0papasotiriou/cve-2026-7777-rust-use-after-free-in-unsafe-web-server
Analisi delle VulnerabilitàExploitApprendimento e FormazioneBinary ExploitationLab e Pratica
GitHubgeorge0papasotiriou/cve-2026-7777-rust-use-after-free-in-unsafe-web-server

CVE-2026-7777-Rust-Use-After-Free-in-Unsafe-Web-Server

Dimostra un use-after-free in Rust in un server web con codice vulnerabile e un trigger multithread per mostrare la corruzione della memoria e la possibile esecuzione di codice.

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi
Vedi Repository
17 giorni faNon ancora revisionato

CVE-2026-7777 – Use‑After‑Free di Rust in un server web non sicuro

Codice del programma (Rust)

root@kitploit:~
// uaf_server.rs - Vulnerable Rust HTTP server with use-after-free
use std::sync::{Arc, Mutex};
use std::thread;
use std::io::prelude::*;
use std::net::{TcpListener, TcpStream};

struct SharedBuffer {
    data: Vec<u8>,
}

impl SharedBuffer {
    fn new() -> Self { SharedBuffer { data: vec![0; 1024] } }
}

fn handle_client(mut stream: TcpStream, buffer: Arc<Mutex<SharedBuffer>>) {
    // Simulate reading request and writing response.
    let mut buf = [0; 512];
    stream.read(&mut buf).unwrap();
    let b = buffer.lock().unwrap();
    let ptr = b.data.as_ptr() as *mut u8; // raw pointer
    // Drop the lock early? In unsafe block we might send the pointer to another thread.
    // Here we simulate a bug: the SharedBuffer is dropped, but we later use the pointer.
    drop(b);
    // After lock is released, another thread could replace the Vec, freeing the old allocation.
    // Unsafe write through the dangling pointer.
    unsafe {
        *ptr = 42; // use after free!
    }
    stream.write(b"HTTP/1.1 200 OK\r\n\r\nHello").unwrap();
}

fn main() {
    let listener = TcpListener::bind("127.0.0.1:7878").unwrap();
    let buffer = Arc::new(Mutex::new(SharedBuffer::new()));
    for stream in listener.incoming() {
        let stream = stream.unwrap();
        let buf_clone = Arc::clone(&buffer);
        thread::spawn(move || {
            handle_client(stream, buf_clone);
        });
    }
}

CVE-2026-7777 – Use‑After‑Free in codice Rust unsafe in un server web

Severity: High

Panoramica

Un server web Rust utilizza codice unsafe per condividere un buffer tra thread. Una condizione di gara porta a un use‑after‑free, con potenziale corruzione della memoria o divulgazione di informazioni.

Dettagli della vulnerabilità

  • Tipo: Use‑After‑Free (Sicurezza della memoria)
  • Impatto: Denial of Service, possibile esecuzione di codice arbitrario.
  • Causa principale: Un puntatore grezzo viene ottenuto da un Vec sotto lock, il lock viene rilasciato e il vettore viene sostituito da un altro thread, liberando la memoria mentre il puntatore è ancora in uso.

Dimostrazione dell'exploit

  1. Compila ed esegui il server vulnerabile:
    root@kitploit:~
    rustc uaf_server.rs
    ./uaf_server
    
  2. Esegui il trigger multi-thread:
    root@kitploit:~
    python trigger_uaf.py
    
Scarica lo strumento