Advertisement
GNG

Untitled

GNG
Feb 1st, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. Public Sub AntiProcess()
  2. While True
  3. Dim Enemy As New List(Of String)
  4. Enemy.Add("megadumper")
  5. Enemy.Add("dumper")
  6. Enemy.Add("dump")
  7. Enemy.Add("dnspy")
  8. Enemy.Add("de4dot")
  9. Enemy.Add("nofuser")
  10. Enemy.Add("fiddler")
  11. Enemy.Add("wireshark")
  12. Enemy.Add("httpdebugger")
  13. While True
  14. Dim information As New List(Of String)
  15. For Each Process As Process In Process.GetProcesses()
  16. information.Add(Process.ProcessName)
  17. Try
  18. information.Add(Process.MainModule.FileName)
  19. information.Add(Process.MainModule.FileVersionInfo.FileDescription)
  20. Catch ex As Exception
  21. End Try
  22. information.Add(Process.MainWindowTitle)
  23. For Refliex As Integer = 0 To information.Count
  24. For Each Target In Enemy
  25. Try
  26. If information(Refliex).Contains(Target.ToLower) Then
  27. Else
  28. End If
  29. If information(Refliex).ToLower.Contains(Target.ToLower) Then
  30. End
  31. End If
  32. Catch ex As Exception
  33. Exit For
  34. End Try
  35. Next
  36. Next
  37. Next
  38. End While
  39. End While
  40. End Sub
  41. -----------------
  42. in form_load :
  43. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
  44. Dim th As New Threading.Thread(AddressOf Me.AntiProcess)
  45. th.Start()
  46. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement