mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 15:25:59 +03:00
[GH-ISSUE #199] Adding feature to stop/start keylogger after running the client on remote machine #84
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#84
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @DragonzMaster on GitHub (May 25, 2015).
Original GitHub issue: https://github.com/quasar/Quasar/issues/199
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 on GitHub (May 25, 2015):
There could be a dynamic client settings file that is added that the command handler could read/write to and from
@MaxXor commented on GitHub (May 25, 2015):
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 on GitHub (May 25, 2015):
or it could be a registry value
that depends on file's GUID for example
@yankejustin commented on GitHub (May 25, 2015):
@MaxXor Like an XML settings file used by the builder form?
@yankejustin commented on GitHub (May 26, 2015):
github.com/MaxXor/xRAT@eaf89ef97b/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
Disposewhen we are done with it!@yankejustin commented on GitHub (May 26, 2015):
After disposing it, we can just poke with this value if we wish to enable or disable on startup
github.com/MaxXor/xRAT@eaf89ef97b/Client/Program.cs (L138)