• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

AutoIT Anti Sandbox in AutoIT

Status
Not open for further replies.

sQuo

~ KillmeMories ~
Shadow
User
Joined
Oct 16, 2011
Messages
5,851
Reputation
0
Reaction score
22,904
Points
688
Credits
0
‎13 Years of Service‎
24%
Anti Sandbox in AutoIT

Code:
>
   ;# $antisand = 1 Active
    
   Func _antisand($antisand)
   If $antisand = 1 Then
   If FileExists("C:\\sample.exe\") Then
   Exit
   EndIf
   If FileExists(\"C:\\joebox\\joeboxserver\\test.exe\") Then
   Exit
   EndIf
   If FileExists(\"C:\\analysis\\log\") Then
   Exit
   EndIf
   If FileExists(\"C:\\Sandbox\\DONT_USE.TXT\") Then
   Exit
   EndIf
   ProcessClose(\"SbieCtrl.exe\")
   EndIf
   EndFunc
 
Status
Not open for further replies.
Back
Top