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
Bropper — Uno strumento automatico per l'exploit Blind ROP | Kitploit
Strumenti/GitHubGitHub/hakumarachi/bropper
Framework di ExploitExploitCTFBinary Exploitation
GitHubhakumarachi/bropper

Bropper

Uno strumento automatico per l'exploit Blind ROP

Vedi Repository
209183 anni faRevisionato da Kitploit

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

BROPPER

Uno strumento Python automatico per lo sfruttamento di Blind ROP

Abstract

BROP (Blind ROP) è una tecnica scoperta da Andrew Bittau della Stanford nel 2014.

  • Articolo originale
  • Slide

La maggior parte dei server come nginx, Apache, MySQL, eseguono fork e poi comunicano con il client. Ciò significa che canary e indirizzi rimangono gli stessi anche in presenza di ASLR e PIE. Quindi possiamo usare un brute force ragionato per perdere informazioni e successivamente creare un exploit funzionante.

Flusso di sfruttamento

  1. Trovare l'offset del buffer overflow
  2. Trovare il canary
  3. Trovare i registri salvati (RBP / RIP)
  4. Trovare i gadget di stop
  5. Trovare i gadget brop
  6. Trovare una funzione di scrittura (write / dprintf / puts / ...)
  7. Perdere il binario

Esempi di Risultati

Ci sono 3 esempi vulnerabili personalizzati forniti in questo repository. Puoi eseguirli direttamente o costruire il Dockerfile

BROPPER scaricherà quindi il binario:

È quindi possibile estrarre tutti i gadget ROP dal binario scaricato usando ROPgadget per esempio:

root@kitploit:~
$ ROPgadget --binary dump
Gadgets information
============================================================
0x0000000000001177 : adc al, 0 ; add byte ptr [rax], al ; jmp 0x1020
0x0000000000001157 : adc al, byte ptr [rax] ; add byte ptr [rax], al ; jmp 0x1020
0x0000000000001137 : adc byte ptr [rax], al ; add byte ptr [rax], al ; jmp 0x1020
...
...
...
0x0000000000001192 : xor ch, byte ptr [rdi] ; add byte ptr [rax], al ; push 0x16 ; jmp 0x1020
0x000000000000182e : xor eax, 0x891 ; mov rdi, rax ; call rcx
0x0000000000001861 : xor eax, 0xffffff22 ; mov rdi, rax ; call rcx

Unique gadgets found: 235

Utilizzo dello script

Per utilizzare questo script:

root@kitploit:~
python3 -m pip install -r requirements.txt
python3 bropper.py -t 127.0.0.1 -p 1337 --wait "Password :" --expected Bad --expected-stop Welcome -o dump
root@kitploit:~
$ python3 bropper.py -h
usage: bropper.py [-h] -t TARGET -p PORT --expected-stop EXPECTED_STOP --expected EXPECTED --wait WAIT -o OUTPUT [--offset OFFSET] [--canary CANARY] [--no-canary] [--rbp RBP] [--rip RIP] [--stop STOP]
                  [--brop BROP] [--plt PLT] [--strcmp STRCMP] [--elf ELF]

Description message

options:
  -h, --help            show this help message and exit
  -t TARGET, --target TARGET
                        target url
  -p PORT, --port PORT  target port
  --expected-stop EXPECTED_STOP
                        Expected response for the stop gadget
  --expected EXPECTED   Expected normal response
  --wait WAIT           String to wait before sending payload
  -o OUTPUT, --output OUTPUT
                        File to write dumped remote binary
  --offset OFFSET       set a offset value
  --canary CANARY       set a canary value
  --no-canary           Use this argument if there is no stack canary protection
  --rbp RBP             set rbp address
  --rip RIP             set rip address
  --stop STOP           set stop gadget address
  --brop BROP           set brop gadget address
  --plt PLT             set plt address
  --strcmp STRCMP       set strcmp entry value
  --elf ELF             set elf address

Contributi

I pull request sono benvenuti. Sentiti libero di aprire una issue se desideri aggiungere altre funzionalità.

Scarica lo strumento