Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/12/2011 in all areas

  1. Hi everybody! Here is my new super tool! It's an AutoItObject TCP Class! Very simple to use, with example and complet decumentation (Made with NaturalDocs) There are two classes: Client, and Server. - The data are encrypted! - The server can handle multiple clients - Data buffering, if you send a big amount of data, it will received as it was sent, not as many little parts of it - OOP programing! (very simple!) PS: You don't need to download AutoItObject, everything you need is in the zip. Update: 03/11/2011 +: Added, -: Deleted/Deprecated, *: Modified, !: Bug corrected === 1.1c === (30/10/2011) Server: +: ClientGetBufferLen method +: Completed doc of ClientPropertyGet and ClientPropertySet methods (Return values) *: Now, when calling .Shutdown, the Callback_LostClient is called for each client. !: Corrected bug: Script error when calling .DisconnectAll befor calling at least one time .Startup (Main socket array was not dimensioned)UDF_TCPClass.rar
    1 point
  2. water

    need help in array

    Change the For loop in your script because you start with the first element in the array and this element keeps the number of elements (in your example 4). ; Get the files into arrays #include<Array.au3> #include <File.au3> Global $aFile_sip[3] _FileReadToArray("siplist.txt", $aFile_sip) ;_ArrayDisplay($aFile_sip, "ip Array") For $iIndex = 1 To $aFile_sip[0] $data = StringSplit($aFile_sip[$iIndex], ",", 2) ; <== modified so the array doesn't contain the counter in $data[0] $ip = $data[0] ; first elemnt in array $user = $data[1] ;second $pass = $data[2] ;third > i got error here illegal charcter WinActivate("[CLASS:Notepad]") ; JUST FOR TRY BUT IT WILL SEND TO ANOTHER APP Send($ip) Send("{TAB}") Send($user) Send("{TAB}") Send($pass) Send("{TAB}") Send("{ENTER}") NextEdit: modified so the array doesn't contain the counter in $data[0]
    1 point
  3. GEOSoft

    Email sending keylogger?

    The answer is you won't likely get an answer nor will you get any code. You also posted this in the wrong forum.
    1 point
  4. monoceres

    Zlib UDF

    I'm thinking of changing the behaviour of _Zlib_CompressBinary so it adds a 4 byte header that contains the length of the original data, any thoughts of that? It would be much easier to use the compressed data in your script if you don't have to pass around the original length all the time ?
    1 point
×
×
  • Create New...