Results 1 to 5 of 5

Thread: Homepage Virus

  1. #1
    Behemoth
    Guest

    Homepage Virus

    Apparently anyone infected with this virus is likely to have their homepage changed to one of 4 porn sites. If you've recently been infected, check just to make sure, before that important meeting with the boss...

  2. #2
    chenko
    Guest
    It infectted the whole company here. It Doesnt change the homepage, I have looked (and decrypted) at the code to

  3. #3
    Behemoth
    Guest
    hmm...we may have had a different version. oh well. Forewarned is forearmed...

  4. #4
    Fanatic Member Wynd's Avatar
    Join Date
    Dec 2000
    Location
    In a bar frequented by colossal death robots
    Posts
    772
    How do you decrypt something?
    Alcohol & calculus don't mix.
    Never drink & derive.

  5. #5
    chenko
    Guest
    Originally posted by Wynd
    How do you decrypt something?
    well it had a simple function with it that wasnt enctypted

    Code:
    Function DeCode(Coded)
    For I = 1 To Len(Coded)
    CurChar = Mid(Coded, I, 1)
    If Asc(CurChar) = 15 Then
    CurChar = Chr(10)
    ElseIf Asc(CurChar) = 16 Then
    CurChar = Chr(13)
    ElseIf Asc(CurChar) = 17 Then
    CurChar = Chr(32)
    ElseIf Asc(CurChar) = 18 Then
    CurChar = Chr(9)
    Else
    CurChar = Chr(Asc(CurChar) - 2)
    End If
    DeCode = DeCode & CurChar
    Next
    End Function

    thats it!

    and it was called as

    Code:
    Excute
    DeCode("and all the encrypted text here!")
    there!!!

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