Loginserver_autoit???

09/18/2012 17:22 sfigmo#1
Can my script read the nostale client packets?
It's autoit ;)

Code:
hotkeyset("{F1}","Esci")
Msgbox(64,"Istruzioni","Premi f1 per uscire.. Il tuo ip e' " & @ipaddress1)
Func Esci()
   Exit
EndFunc

TCPStartup()
TCPConnect(@IPAddress1,4003)
Global $Listen = TCPListen(@IPAddress1, 4003)
Global $Socket = TCPAccept($Listen)
while 1
   filewrite("Log_packets.txt","Pacchetto criptato ricevuto alle ore: " & @hour & ":" & @MIN & ":" & "{" & TCPRecv($Socket,255) & @CRLF & "}" & @CRLF) 
WEnd
TCPCloseSocket()
TCPShutdown()
09/18/2012 17:30 Mr.Tr33#2
If you wanna creat your own loginserver, then it's possbile ;)
I made one a short time ago and the source code is in the video description.
Oh and you have to change the Nostale IP to 127.0.0.1 or forward it with the host file to 127.0.0.1 ;)
09/18/2012 17:38 sfigmo#3
Thank you, but my request was if my code could read the package ...
I have ubuntu and I can not test the program, so I would ask you
09/18/2012 17:44 Mr.Tr33#4
It looks right, if you forward the client to 127.0.0.1 (@IPAddress1)
09/18/2012 17:48 sfigmo#5
Ok, thx! :)
After i decript packets ;) (PS: On google i found the script (in autoit) for decript and encript the packets! ;)
09/18/2012 17:54 Mr.Tr33#6
You mean this?
[Only registered and activated users can see links. Click Here To Register...]
09/18/2012 17:58 sfigmo#7
Thanks, the codes you gave me are much more complex ..
My parents were two functions xD
Thanks, you can close the discussion!