quasar / Quasar

Remote Administration Tool for Windows
MIT License
8.6k stars 2.44k forks source link

Adding feature to stop/start keylogger after running the client on remote machine #199

Open DragonzMaster opened 9 years ago

DragonzMaster commented 9 years ago

when we open the keylogger form can we send a request to the client to get keylogger statue (On/Off) if it is turned off a button (will be added to keylogger form ) will be enabled and when we press it the keylogger starts its work and vice-versa

ghost commented 9 years ago

There could be a dynamic client settings file that is added that the command handler could read/write to and from

MaxXor commented 9 years ago

No, we will just set a lock file in the Logs folder when the Keylogger should be disabled. We can easily remove/add (on/off) this file.

DragonzMaster commented 9 years ago

or it could be a registry value that depends on file's GUID for example

yankejustin commented 9 years ago

@MaxXor Like an XML settings file used by the builder form?

yankejustin commented 9 years ago

https://github.com/MaxXor/xRAT/blob/eaf89ef97b953d88e5039f221ae866c1b63e1072/Client/Program.cs#L143 We got the handle to the logger, so we should be able to very easily just store it internally and tell it to Dispose when we are done with it!

yankejustin commented 9 years ago

After disposing it, we can just poke with this value if we wish to enable or disable on startup https://github.com/MaxXor/xRAT/blob/eaf89ef97b953d88e5039f221ae866c1b63e1072/Client/Program.cs#L138