
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
A simple, easy to use module for interacting with the Krunker.io Social Page
$ npm i krunker.js
// Require the NPM Module
const KrunkerJS = require('krunker.js');
// Create a new instance
const Krunker = new KrunkerJS();
// Get the stats of the user
Krunker.getUser('Helinho').then(data => {
// Console log the user stats as an object
console.log(data);
// [V1.2^ Feature] Gets all stats ready as an object
console.log(data.simplified);
// Convert Player Score to Level
Krunker.getLevel(data);
// Convert Time Played
Krunker.getPlayTime(data);
// Get user KDR
Krunker.getKDR(data);
// Get W/L
Krunker.getWL(data);
// Get SPK
Krunker.getSPK(data);
}).catch(console.error);
// Require the NPM Module
const KrunkerJS = require('krunker.js');
// Create a new instance
const Krunker = new KrunkerJS();
(async () => {
try {
// Get the stats of the user
const user = await Krunker.getUser('Helinho');
// Console log the user stats as an object
console.log(user);
// [V1.2^ Feature] Gets all stats ready as an object
console.log(user.simplified);
} catch (e) {
console.error(e);
}
})();
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join my Development Server.
FAQs
Krunker.io Social Page API
The npm package krunker.js receives a total of 7 weekly downloads. As such, krunker.js popularity was classified as not popular.
We found that krunker.js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.