| Author | Message | ||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| Preventing text leak in the official client.
Hey,I want to know how to prevent the occurrence of text leak when the client is minimized . I tried hooking some winapi functions with no hope... looks like when the client is minimized it gets text in someway other than when it's active. --- Remember when is not an organization nor a fucking group , it's simply an idea that we believe in and live for. The priority of Remember when should come before oxygen , as oxygen is cosmetic even life itself is cosmetic,that's why offer our worthless lives to The "Remember when"
|
| Re: Preventing text leak in the official client.
I'm not sure if this might help or if its even close to what you need.
#include <tlhelp32.h> #include <winable.h> bool ProcessRunning( const char* name )
BlockInput(true);
} else { } }
|
| Re: Preventing text leak in the official client.
Thnx man for your time, it tells me BlockInput wasn't declared , im using mingw compiler. --- Remember when is not an organization nor a fucking group , it's simply an idea that we believe in and live for. The priority of Remember when should come before oxygen , as oxygen is cosmetic even life itself is cosmetic,that's why offer our worthless lives to The "Remember when"
|
| Re: Preventing text leak in the official client.
I forgot 1 of the headers #include <winable.h> I'm going to keep working on this for a bit and post back what I find I am currious.
|
| Re: Preventing text leak in the official client.
It's not the header actually it's my compiler it's old i m going to upgrade it and try, but honestly this could be done in a better way if you know the method the client uses to detect key inputs then do the window test function there. --- Remember when is not an organization nor a fucking group , it's simply an idea that we believe in and live for. The priority of Remember when should come before oxygen , as oxygen is cosmetic even life itself is cosmetic,that's why offer our worthless lives to The "Remember when"
|
| Re: Preventing text leak in the official client.
weedindeed posted: (5th Feb 2016, 09:50 am) You can hook WNDPROC and intercept messages with that.
|
| Re: Preventing text leak in the official client.
What exactly does "text leak" mean? I'm not sure if this is what you're looking for, but I've used SetWindowsHookEx to detect keypresses system-wide (kind of like a keylogger). See WH_KEYBOARD_LL. There are tons of examples of how to do use on the internet. https://msdn.microsoft.com/en-us/library/windows/desktop/ms644990(v=vs.85).aspx You could use this to inject a hook into a running process (say, endless.exe). ---
class EOSERV {
Programmer | Oldbie
Open source EO Client: https://github.com/ethanmoffat/EndlessClient
};
|
| Re: Preventing text leak in the official client.
Easiest way to prevent leaking is to minimize with the button on the top right next to the red X If you minimize by clicking the taskbar tab icon you will leak anything you type. --- Tire me.
|
| Re: Preventing text leak in the official client.
Click add friend in the client or press the exit button once so it physically stops you typing public, that's what I do
|
| Re: Preventing text leak in the official client.
ethanmoffat posted: (5th Feb 2016, 05:14 pm) You know what , this is the best i have seen to detect keypresses . Now i need a way to block the input when the client is minimized. Blockinput doesn't work. --- Remember when is not an organization nor a fucking group , it's simply an idea that we believe in and live for. The priority of Remember when should come before oxygen , as oxygen is cosmetic even life itself is cosmetic,that's why offer our worthless lives to The "Remember when"
|
| Re: Preventing text leak in the official client.
You can prevent text from leaking with a basic client modification. It's pretty hacky, but it's the only way I know how to do it. The way I would go about it, to make it work the way you intend, is to make a simple program to check when the EO window is activated/deactivated and apply the
memory modification/default accordingly. I'm sure there is much better ways, but it's the easiest/only way I'd know how. =d --- EO Resources/Guides: â—„ eobud.boards.net â–º
|
| Re: Preventing text leak in the official client.
the easiest way is to simply press the logout botton and bring up the drop box before you minimize, it blocks all text.
|
| Re: Preventing text leak in the official client.
Hmmm can a process suspend itself and unsuspend itself? I remember suspending malware before and it continued using 2% cpu. --- I not hacker “Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid.†- Albert Einstein : Really Great Quote Ramy!
|
| Re: Preventing text leak in the official client.
I was messing around with chat leak, and made a SMALL/BASIC tool to prevent chat leak for the window title you specify. --- EO Resources/Guides: â—„ eobud.boards.net â–º |
