Jump to content

Recommended Posts

Posted

Hey, I start to make a packet sniffer for MSN Messenger but i don't know why it doesn't work !

$ip = "64.4.37.70"

TCPStartup()

$packet = TCPConnect($ip, 1863)

While 1
    
    TCPAccept($packet)
    $rec = TCPRecv($packet,1000000)
    if $rec <> "" Then
        FileWriteLine("Packet.txt",$rec)
    EndIf
WEnd

Func onAutoitExit()
TCPShutdown()
EndFunc

EndFunc

Need advice, Thanks !

Posted (edited)

Hi,

you have some udf for tcp like create server,send message or files :)

Can u show a simple example ?

Thanks anyway !

Edited by Goblin
  • Developers
Posted (edited)

Hey, I start to make a packet sniffer for MSN Messenger but i don't know why it doesn't work !

$ip = "64.4.37.70"

TCPStartup()

$packet = TCPConnect($ip, 1863)

While 1
    
    TCPAccept($packet)
    $rec = TCPRecv($packet,1000000)
    if $rec <> "" Then
        FileWriteLine("Packet.txt",$rec)
    EndIf
WEnd

Func onAutoitExit()
TCPShutdown()
EndFunc

EndFunc

Need advice, Thanks !

This is not a packet sniffer... what is it you want to accomplish here?

Hi,

you have some udf for tcp like create server,send message or files :)

Sure... do you have fries with that? Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)

You forgot to answer my question.... What is your goal for this script?

alot :) ! Train myself to make a packet sniffer for a mmorpg or maybe a spammer for MSN !

Edited by Goblin
Posted

Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org

Posted

Yes they do, but you have to copy the link and then paste it in your browser (I don't know why that happen but it works for me in Opera & Chrome)

You are right, Thanks !

@torels: U didin't get what i am doing !

Posted

I actually didn't take a look at all the funcs in the udfs so i suggested them just in case

Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org

  • 3 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...