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.
pg-access-apply
Advanced tools
Idempotent postgres database and role management
Loosely, this manages resources that are configured and then handed over to an application to use. Eg: you create a database and a role, then pass this configuration over to an application which creates and manages tables etc within that database. The goal of this library is to manage things like databases and roles.
import { Client } from 'pg';
import { pg_applier } from 'pg-access-apply';
// Create a database client and connect
const client = new Client({ ... });
client.connect();
try {
// Pass a 'query' function to pg_applier
const applier = pg_applier({
query: client.query.bind(client),
});
// Ensure database 'mydatabase' exists
await applier.database({
name: 'mydatabase',
});
// Ensure role 'myrole' exists and has password 'mypassword'
await applier.role({
name: 'myrole',
properties: {
password: 'mypassword',
login: true,
},
});
// Ensure role 'myrole' has all privileges on database 'mydatabase'
await applierDb.grantOnDatabase({
roles: ['myrole'],
properties: {
allPrivileges: true,
databases: ['mydatabase'],
},
});
} finally {
client.end();
}
FAQs
Idemponent postgres database and role management
We found that pg-access-apply 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.