Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
updatable-log
Advanced tools
pretty logger with the ability to update lines in place
const log = require('updatable-log');
const chalk = require('chalk');
const delay = require('delay');
async function exampleApp({ quiet }) {
// ignore everything except log.important() and log.error()
log.quiet = quiet;
log.info(chalk.green('E X A M P L E - A P P'));
log.info('v1.2.0');
for (let page = 0; page < 40; page++) {
await fetchData(page);
}
log.clear();
console.log('call log.clear() before printing with the built-in console.log()');
try {
printResult();
} catch (e) {
log.error(e);
}
}
async function fetchData(page) {
log.update('fetching data from:', `http://get-data.com?page=${page}`);
await delay(100);
if (page === 10) {
log.warn('invalid data, skipping page', page);
}
}
function printResult() {
log.important(
JSON.stringify(
{
age: 6,
name: 'Ender Wiggin',
},
null,
2
)
);
this.will.throw.a.null.pointer.exception();
}
To run this example yourself:
git clone https://github.com/noahsug/updatable-log.git
cd updatable-log
npm i
npm run example
FAQs
pretty logger with the ability to update lines in place
We found that updatable-log 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.