
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
lepikevents
Advanced tools
An event based, Global Keyboard and Mouse listener.
Lepik Events is only part from LepikJS. Definitely try it out!
Visit LepikJS's website.
ㅤ
New Feature v2.0.0+
LepikEvents now does not ship whole python binary! The performance is up to 20x better with 10x smaller size! ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤLepikEventsv2.0.0
npm install lepikevents
// Require lepikEvents
const lepikEvents = require('lepikevents');
lepikEvents.events.on('mouseClick', (data) => {
console.log("Hello World!"); //Should print "Hello World!" after each click of mouse
});
// Require lepikEvents
const lepikEvents = require('lepikevents');
lepikEvents.events.on('keyPress', (data) => {
// Returns key pressed as String
console.log(data); // e||esc||space||backspace ...
});
lepikEvents.events.on('keyDown', (data) => {
// Returns key pushed as String
console.log(data); // e||esc||space||backspace ...
});
lepikEvents.events.on('keyUp', (data) => {
// Returns key released as String
console.log(data); // e||esc||space||backspace ...
});
lepikEvents.events.on('mouseClick', (data) => {
// Returns array containing mouse position x, y and button clicked
console.log(data); // [361, 235, *1]
// *1 for left, 2 for right, 3 for middle
});
lepikEvents.events.on('mouseDoubleClick', (data) => {
// Returns array containing mouse position x, y and button double-clicked
console.log(data); // [361, 235, *1]
// *1 for left, 2 for right, 3 for middle
});
lepikEvents.events.on('mouseMove', (data) => {
// Returns array containing mouse x, y and time (seconds)
console.log(data); // [20, -35, 1663787912.698]
});
lepikEvents.events.on('mouseUp', (data) => {
// Returns array containing mouse x, y
console.log(data); // [20, 35]
});
lepikEvents.events.on('mouseDown', (data) => {
// Returns array containing mouse x, y
console.log(data); // [20, 75]
});
Curently there are 7 events in total, mouseMove, mouseClick, mouseDown, mouseUp, keyPress, keyUp and keyDown.
Lepik Events uses native c++ winapi on windows, so you don't have to have anything installed.
On unix systems, it uses Python keyboard and Python mouse which runs on Python. So python is needed on non-windows systems. You need to have atleast Python3 installed.
Windows systems: Nothing needed Unix systems: Python3
PS: It's better to have atleast node13 but not required.
The code is licensed under the MIT license (http://opensource.org/licenses/MIT). See LICENSE file.
FAQs
Global mouse and keyboard events Listener
We found that lepikevents demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.

Research
A malicious package uses a QR code as steganography in an innovative technique.

Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.