Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
on error resume next while true
set service = GetObject ("winmgmts://ludlow/root/cimv2")
'PASS 1 - identify WScript.Echo ">>Pass 1: ", service.Security_.impersonationLevel set processes = service.ExecQuery ("select Name from Win32_Process","WQL",0)
if err <> 0 then WScript.Echo "Got error as expected:", err.Number, err.description, err.source err.clear end if
'PASS 2 - anonymous service.Security_.impersonationlevel = 1 WScript.Echo ">> Pass 2: ", service.Security_.impersonationLevel set processes = service.ExecQuery ("select Name from Win32_Process","WQL",0)
if err <> 0 then WScript.Echo "Got error as expected:", err.Number, err.description, err.source err.clear end if
'PASS 2 - impersonate service.Security_.impersonationlevel = 3 WScript.Echo ">> Pass 2: ", service.Security_.impersonationLevel set processes = service.ExecQuery ("select Name from Win32_Process","WQL",0)
if err <> 0 then WScript.Echo "Got error:", err.Number, err.description, err.source err.clear else WScript.Echo "OK" end if
'PASS 3 - delegate service.Security_.impersonationlevel = 4 WScript.Echo ">> Pass 2: ", service.Security_.impersonationLevel set processes = service.ExecQuery ("select Name from Win32_Process","WQL",0)
if err <> 0 then WScript.Echo "Got error:", err.Number, err.description, err.source err.clear else WScript.Echo "OK" end if wend
|