login bot with packet

06/24/2012 15:51 flobo21#1
hello,

I want to code a login automatically in dark orbit (With packets) but I need help for find packet to login.

I have two months to do that. I know basics of programming (C, C + +, Vb, AutoIt). But I know it's not enough so if someone have the sympathy to help me in my research.

This message is for people who have made ​​bots that works on dark orbit (pbdobot, kbot, iBOT, OpenStealth ...). These people have made very powerful bots. Respect for them, without them dark orbit will be less enjoyable.

Send me private messages;)
I would be happy to answer you.
06/24/2012 15:59 Arby#2
I don't know alot of coding however, I find this would be a good place to research from.

[Only registered and activated users can see links. Click Here To Register...]

Try using that, I don't know if it would completely work, but it's best to look in that section. Good luck making a bot!
06/25/2012 01:21 flobo21#3
thank you for the link, but "WPE - wpe09a_0delay.rar" is no longer available ... The tutorial is interesting even when I had already read ...
06/25/2012 01:46 DumbassIsKing#4
good luck with your tools^^
06/25/2012 16:44 flobo21#5
thank you but nobody knows programming packages?
06/25/2012 16:51 Arby#6
Quote:
Originally Posted by flobo21 View Post
thank you but nobody knows programming packages?
WPE does work, try downloading it from the official link. I just tried it, it works fine for me

[Only registered and activated users can see links. Click Here To Register...]
06/25/2012 17:02 Andrew™#7
Quote:
Originally Posted by flobo21 View Post
...I want to code a login automatically in dark orbit (With packets) but I need help for find packet to login... I know basics of programming...
:facepalm: You know only basics and you try to make bot? Sorry bro, but I mean itīs impossible. :( The first you can make simple applications, for darkorbit too, but bot is hard for beginners. And I mean, nobody from begginers canīt make good bot. You must know, e*pvp need bot with "anti-ban" flying, no like UDOBot ;)
[Only registered and activated users can see links. Click Here To Register...]

Learn, learn, learn bro...:rtfm:
06/25/2012 18:21 flobo21#8
for andrew12341
Instead of telling me that this is impossible and call me a beginner. If you knew that, then I think I can do the same step by step ...

for Arbyii
thank you very much, I'll be able to advance =)
06/28/2012 15:16 flobo21#9
Can you help me with this code ?


$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")

$oHTTP.Open("GET","http://www.darkorbit.fr", True)


$oHTTP.Send()

$something = $oHTTP.ResponseText()

FileWrite("page.html",$something)

; Test with real account please
$gamer = "User"
$passer = "PassWord"

$oHTTP.Open("POST", "http://darkorbit.fr/?locale=fr&aid=?", False)

$oHTTP.SetRequestHeader("User-Agent", "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0.1")
$oHTTP.SetRequestHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
$oHTTP.SetRequestHeader("Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7")
$oHTTP.SetRequestHeader("Accept-Language","fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3")
$oHTTP.SetRequestHeader("Accept-Encoding"," gzip")
$oHTTP.SetRequestHeader("Referrer", "http://darkorbit.fr")


$oHTTP.Send("loginForm_default_input_username="&$g amer&"&loginForm_default_input_password="&$passer& "&loginForm_default_login_submit=Connexion")

MsgBox(0,"",$oHTTP)
06/28/2012 16:54 Vacak1#10
Seems to be a login subrutine using winhttp and written in AutoIt. What is your problem doesn't it work?
06/28/2012 20:10 flobo21#11
the problem is that I can't login.
06/28/2012 20:11 Mr.MS#12
Quote:
Originally Posted by Vacak1 View Post
Seems to be a login subrutine using winhttp and written in AutoIt. What is your problem doesn't it work?
Quote:
Originally Posted by flobo21 View Post
the problem is that I can't login.
In this topic is not any packet to tcp/ip login.
06/28/2012 20:13 flobo21#13
In addition I have a problem viewing the page on which I record.

good point, but nobody seems to want to help me on the packet tcp / ip so I try to do with the HttpRequest.
06/28/2012 20:22 Mr.MS#14
Quote:
Originally Posted by flobo21 View Post
In addition I have a problem viewing the page on which I record.

good point, but nobody seems to want to help me on the packet tcp / ip so I try to do with the HttpRequest.
There is no way to do it with HttpWebRequest
06/28/2012 20:35 -gameaddict-#15
Quote:
Originally Posted by flobo21 View Post
Can you help me with this code ?


$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")

$oHTTP.Open("GET","http://www.darkorbit.fr", True)


$oHTTP.Send()

$something = $oHTTP.ResponseText()

FileWrite("page.html",$something)

; Test with real account please
$gamer = "User"
$passer = "PassWord"

$oHTTP.Open("POST", "http://darkorbit.fr/?locale=fr&aid=?", False)

$oHTTP.SetRequestHeader("User-Agent", "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0.1")
$oHTTP.SetRequestHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
$oHTTP.SetRequestHeader("Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7")
$oHTTP.SetRequestHeader("Accept-Language","fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3")
$oHTTP.SetRequestHeader("Accept-Encoding"," gzip")
$oHTTP.SetRequestHeader("Referrer", "http://darkorbit.fr")


$oHTTP.Send("loginForm_default_input_username="&$g amer&"&loginForm_default_input_password="&$passer& "&loginForm_default_login_submit=Connexion")

MsgBox(0,"",$oHTTP)
If you want to create a bot in autoit language, you must use
function TCPConnect and not winhttp request method.
for connecting to server:
TCPConnect(server ip, port)
for sending:
TCPSend(connection,packet)
and for receiving:
TCPRecv(connection, port)