#!/usr/bin/python #-*- coding: utf-8 -*- #-=-=-=-=-=-=- Cythosia Botnet Grabber -=-=-=-=-=-= #* spys all the commands sent to the bots * #* by aaSSfxxx * #* under BeerWare licence :þ * #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= import urllib import sys import time hwid = time.time() if __name__ == "__main__": print "" if (len(sys.argv) != 4): print "Usage: %s <url_of_cythosia> <comp_name> <ip>" % sys.argv[0] sys.exit(0) data = urllib.urlencode({ "pcname":sys.argv[2], "botver":"1.3.37", "country":"FR", "winver":"Windows XP SP2", "hwid":hwid, "ip":sys.argv[3] }) print "Starting grabbing commands..." while True: wtf = sys.argv[1] + "/connect.php" tapz = urllib.urlopen(wtf,data) print tapz.read() time.sleep(2)
aaSSfxxx