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.
knex-tablecleaner
Advanced tools
Library for sequentially deleting all rows from a given list of DB tables.
Simple library for deleting all rows from a given list of DB tables. Tables are cleaned sequentially in a given order, to avoid foreign key constraint violations.
Example usage:
const tableCleaner = require('knex-tablecleaner');
const knex = require('../db'); // pre-initialized instance of knex
const defaultTablesToClean = [
'orders',
'users'
];
function cleanDb(tablesToClean = defaultTablesToClean) {
return tableCleaner.cleanTables(knex, tablesToClean);
}
module.exports = {
cleanDb,
};
function cleanTables(knex, tableNames, verboseLog = false)
accepts following parameters:
knex
- pre-initialized knex instance that will be used for accessing the database;tableNames
- either a string with a table name, or an array of strings with table names;verboseLog
- if set to true, will log a list of tables being cleaned and the completion log messages.FAQs
Library for sequentially deleting all rows from a given list of DB tables.
We found that knex-tablecleaner 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.