• 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.

Visual Basic Avast DeepScreen Bypass

Status
Not open for further replies.

J0k3rj0k3r

Master-Staff
User
Joined
Jul 2, 2012
Messages
697
Reputation
0
Reaction score
10,069
Points
493
Credits
0
‎13 Years of Service‎
100%
Please note, if you want to make a deal with this user, that it is blocked.
[HIDE-THANKS]

Code:
>Public Shared Function Avast() As Boolean
   Dim functionReturnValue As Boolean = False
   If Process.GetProcessesByName("AvastSvc").Length >= 1 Then
       Return True
   End If
   Return False
   Return functionReturnValue
   error1:
   System.Environment.[Exit](0)
   Return functionReturnValue
End Function
Code:
>public static Boolean Avast()
{
   bool functionReturnValue = false;
   if (Process.GetProcessesByName("AvastSvc").Length >= 1) {
       return true;
   }
   return false;
   return functionReturnValue;
   error1:
   System.Environment.Exit(0);
   return functionReturnValue;
}
[/HIDE-THANKS]

 
Re: Avast DeepScreen Bypass

But if "AvastSvc" is always present with avast then "program" wont run because presence of avast not? or i am missing something?

 
Re: Avast DeepScreen Bypass

But if "AvastSvc" is always present with avast then "program" wont run because presence of avast not? or i am missing something?
Yes this is by no way a bypasser of any kind....

It Just checks whether avast is running, and even if it is, this code won't terminate the app just because of the return statement in the if block.

 
Status
Not open for further replies.
Back
Top