nur jetz kannst du bitte mal ein Beispiel posten wie du ein du einen befehl von dem CLI_IDENT Kram sendest?
[EDIT]
Hm ich galub ich habs jetzt verstanden
[/EDIT]
asswords are roasted when sent to the host. This is done so they aren't sent in "clear text" over the wire, although they are still trivial to decode. Roasting is performed by first xoring each byte in the password with the equivalent modulo byte in the roasting array ( 0xF3, 0x26, 0x81, 0xC4, 0x39, 0x86, 0xDB, 0x92, 0x71, 0xA3, 0xB9, 0xE6, 0x53, 0x7A, 0x95, 0x7C )
Code: Alles auswählen
*server_password = AllocateMemory(1024)
PokeS(*server_password, "EinTest")
*roasted_password = AllocateMemory(1024)
For i = 0 To (MemoryStringLength(*server_password) - 1)
PokeB(*roasted_password + i, (PeekB(*server_password + i) ! PeekB(?Password_Encrypt + i)))
Next i
Debug PeekS(*roasted_password)
End
DataSection
Password_Encrypt:
Data.b $f3, $26, $81, $c4, $39, $86, $db, $92, $71, $a3, $b9, $e6, $53, $7a, $95, $7c
EndDataSection

Das echte ICQ ProtokollNik hat geschrieben:Ist das jetzt ein eigens Protokoll wie wir (KoMaNi IM ) es verwenden oder das echte ICQ Protkoll?