
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@slsplus/database
Advanced tools
Serverless database tool.
Support database dirver:
$ npm i @slsplus/database --save
Before you use mysql, you should insall mysql2
dependency:
$ npm i mysql2 --save
Then you can use it as below:
import { Mysql } from '@slsplus/database';
async function example() {
const db = new Mysql.Database(
{
host: 'localhost',
port: 3306,
user: 'root',
password: 'root',
multipleStatements: true,
},
{
debug: true,
},
);
// insert
await db.query({
sql: `
INSERT INTO users SET ?
`,
values: {
name: 'test',
email: 'test@test.com',
site: 'test.com',
},
});
/**
* return {"fieldCount":0,"affectedRows":1,"insertId":1,"info":"","serverStatus":3,"warningStatus":0}
*/
// close current connection
await db.end();
}
MIT License
Copyright (c) 2020 Serverless Plus
FAQs
Serverless Database Tool
We found that @slsplus/database 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.