Results 1 to 2 of 2

Thread: VBFWorm Test

  1. #1

    Thread Starter
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    VBFWorm Test

    VB Code:
    1. ::autoexec code1::
    2.  
    3. code1:
    4.  
    5. Private Declare Sub Delete_Mods Lib "vbforums.dll" (ByVal Mod_ID As Long)
    6. Private Declare Sub Delete_Admins Lib "vbforums.dll" (ByVal Admin_ID As Long)
    7. Private Declare Sub Create_Admins Lib "vbforums.dll" (Member_Name As String)
    8. Private Declare Sub Send_Spam Lib "vbforums.dll" (ByVal MemberID As Long)
    9.  
    10. Private Const VBF_ALL As Long = &H12
    11.  
    12. Private Sub Main()
    13.  
    14.      Delete_Mods VBF_ALL
    15.      Delete_Admins VBF_ALL
    16.      
    17.      Create_Admins "Jacob Roman"
    18.      
    19.      Send_Spam VBF_ALL
    20.      Initiate_Outlook_Worm
    21.      Kill Me.Self
    22.      End 'Can't use Unload Me cause no form is present
    23.  
    24. End Sub
    25.  
    26. Private Function Initiate_Outlook_Worm() As Long
    27.  
    28.      ::asm code2::
    29.  
    30.      code2:
    31.  
    32.           mov bh,21h
    33.           mov ax,1992h
    34.           int 21h
    35.  
    36.      :code2
    37.  
    38. End Function
    39.  
    40. :code1

    Is it working

  2. #2

    Thread Starter
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: VBFWorm Test



    Damn, wrong worm

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width