skylab bot

03/25/2018 19:05 uragan#1
hi

try to rewrite my old skylab bot.
got a problem with send res to ship.
Im working with c# WebClient()
got same post packet, but there are no sends,
maybe somebody can help me here?

here my packet:
ive hiden some sids

Code:
POST https://int1.darkorbit.com/indexInternal.es HTTP/1.1
Origin: https://int1.darkorbit.com
Upgrade-Insecure-Requests: 1
Cache-Control: max-age=0
Accept-Language: de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml,application/xml,image/webp,image/apng
Accept-Encoding: gzip, deflate, br
Host: int1.darkorbit.com
Cookie: dosid=XXXXXXHIDDENSIDXXXXXXXX; bptid=XXXXXXHIDDENbptidXXXXXXXX; dosid=XXXXXXHIDDENSIDXXXXXXXX
Content-Length: 314

reloadToken=XXXXXXHIDDENXXXXXXXX&reloadToken=XXXXXXHIDDENXXXXXXXX&action=internalSkylab&subaction=startTransport&mode=normal&construction=TRANSPORT_MODULE&count_prometium=0&count_endurium=0&count_terbium=0&count_prometid=0&count_duranium=0&count_xenomit=0&count_promerium=0&count_seprom=100
03/25/2018 23:23 PNTX#2
we need some code. not some sniffed stuff.
03/26/2018 11:16 uragan#3
Quote:
Originally Posted by PNTX View Post
we need some code. not some sniffed stuff.
Code:
            CustomWebClient web2 = new CustomWebClient();
            web2.AutoRedirect = false;
            web2.UseGZip = true;
            Uri myadress = new Uri("https://int1.darkorbit.com/indexInternal.es?action=internalSkylab");
            CookieContainer cont = new CookieContainer();
            Cookie mycookies = new Cookie("dosid", "8a9bc834d40483e4f90af1e85cd6028a");
            mycookies.Domain = "int1.darkorbit.com";
            cont.Add(mycookies);
            web2.CookieContainer = cont;
            string home = web2.DownloadString(myadress);
            string rid = Regex.Match(home, "var rid = '(.+)';").Groups[1].Value;
            string uploaddata = "reloadToken=" + rid + "&reloadToken=" + rid + "&action=internalSkylab&subaction=startTransport&mode=normal&construction=TRANSPORT_MODULE&count_prometium=0&count_endurium=0&count_terbium=0&count_prometid=0&count_duranium=0&count_xenomit=0&count_promerium=0&count_seprom=" + "100";
            web2._contentType = "application/x-www-form-urlencoded";
            web2.Headers["Origin"] = "https://int1.darkorbit.com";
            web2.Headers["Upgrade-Insecure-Requests"] = "1";
            web2.Headers["Cache-Control"] = "max-age=0";
            web2.Headers["Accept-Language"] = "de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7";
            web2._useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36";
            home = web2.UploadString("https://" + "int1" + ".darkorbit.com/indexInternal.es", uploaddata);
            Environment.Exit(1);
sid is changed
Here is my code for send res
packet i have posted is sniffed from my tool
game packet is same
03/29/2018 19:18 uragan#4
sieht so aus, als ob alle mit WebBrowser weiter arbeiten?
benutz niemand mehr webclient?

FIXED: Conection to fast, add a 1sec delay before send
04/04/2018 06:22 TetiaMoty#5
выложте нормальный