|
Neale's website has an amusing script embedded in it:
<script type="text/vbscript">
<!--
'
' This code ejects every CD drive on your system.
'
' I put this code here to demonstrate the inherent lack of security
' in Internet Explorer. This page could just as easily have overwritten
' your KERNEL.EXE file with a list of bookmarks. You should really
' consider using Mozilla: <http://www.mozilla.org/>
'
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' i
End If
-->
</script>
Harmless (unless you're burning a CD I guess), but it could do other nasty things apparently.
|