To MSN+ Developers, suggestion - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: Scripting (/forumdisplay.php?fid=39) +----- Forum: Plug-Ins (/forumdisplay.php?fid=28) +------ Thread: To MSN+ Developers, suggestion (/showthread.php?tid=37186) To MSN+ Developers, suggestion by Ripper86 on 01-19-2005 at 05:22 AM
Hello, RE: To MSN+ Developers, suggestion by Ash_ on 01-19-2005 at 01:33 PM
quote: This can be implemented without even using Plus! by in MSN 6.2 there was as far as i know a registry setting you could change to enable proxy'ing but in MSN7.0 the new BETA it's alot harder. it's called Winsock Hooking and you have to do it with the Winsock in the IM Client. im noob at winsock hooking and i have never even attempted it because i havent needed to yet, but from what i can *guess* you'll have to set the Window Procedure of the winsock to one of your own window procedures (maybe by using the SetWindowLong api call). the next part i have no clue about but somehow you have to tell whats happing incoming or outgoing. so in your case if it was outgoing you would have to encrypt it, incoming you would have to decrypt it. then call MSN's winsock Window Procedure again. but thats just normal Subclassing routine. Winsock subclassing might be different. try google and CodeProject usually have some source. if your gonna look into winsock hooking first i suggest hooking one of the controls inside your own app. then dll injection, then subclassing something inside another program using your injected dll. some useful api's are FindWindow FindWindowEx SetWindowLong CallWindowProc there may be another possibility but i had some trouble with it. DLL Injection and subclassing the client's window procedure. if you can do this successfully then you can somehow get the value for when msn's send button or the enter key is pressed and get the text. and encrpyt it. then when msn recieves text and before it gets written on the form so the user can see it you'll need to decrypt it. In my opinion the winsock hooking way would be the way to go because you encrypt it just before it sends meaning the text written on the window wouldnt be encrypted like if you subclassed the IM. anyway good luck, and if you can successfully tell when text is recieved and sent and you could store it in a variable then maybe you should attempt making it into a dll people can use for their own projects. like an extension to the API. good luck RE: To MSN+ Developers, suggestion by matty on 01-19-2005 at 07:56 PM Plus! will not add a function that contains the conversation text due to privacy issues. So do what Ash_ says and "do it yourself". RE: To MSN+ Developers, suggestion by Ripper86 on 01-20-2005 at 03:54 AM
I've done DLL injection a few times. |