Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
mysql-generator
Advanced tools
A Library which to generate mysql statements.
npm install mysql-generator
const sqlHelper = require('mysql-generator');
##Examples
select
const sqlHelper = require('mysql-generator');
let selectSql = sqlHelper
.Select
.from('user', 'u')
.leftJoin('company', 'c', 'u.companyId = c.id')
.field('u.name')
.field('c.name', 'companyName')
.where('u.id = ?', 22)
.toString();
console.log(selectSql);
//SELECT u.name, c.name AS companyName FROM `user` AS u LEFT JOIN `company` AS c ON u.companyId = c.id WHERE u.id = 22;
update
let updateSql = sqlHelper
.Update
.table('user')
.set('password', 'abcd')
.setFields({
name: 'kyo'
})
.useFunction('password', 'MD5')
.where('id IN (?)', [1, 2, 3])
.toString();
console.log(updateSql);
//UPDATE `user` SET password = MD5('abcd'), name = 'kyo' WHERE id IN (1, 2, 3);
insert
let insertSql = sqlHelper
.Insert
.into('user')
.set('name', 'kyo')
.setFieldsRow({
sex: 1,
age: 20,
email: 'some@qq.com',
password: 'abcd'
})
.useFunction('password', 'SHA')
.toString();
console.log(insertSql);
//INSERT INTO `user` (name, sex, age, email, password) VALUES ('kyo', 1, 20, 'some@qq.com', SHA('abcd'));
insertSql = sqlHelper
.Insert
.into('user')
.setFieldsRows([{
sex: 1,
age: 20,
email: 'some1@qq.com',
password: 'abcd'
}, {
sex: 0,
age: 18,
email: 'some2@qq.com',
password: 'hjkl'
}])
.useFunction('password', 'MD5')
.toString();
console.log(insertSql);
//INSERT INTO `user` (sex, age, email, password) VALUES (1, 20, 'some1@qq.com', MD5('abcd')), (0, 18, 'some2@qq.com', MD5('hjkl'));
delete
let deleteSql = sqlHelper
.Delete
.from('user')
.where('id IN (?)', [1, 2, 3])
.toString();
console.log(deleteSql);
//DELETE FROM user WHERE id IN (1, 2, 3);
##Testing
We prepare some test, coming soon.
##Contributing
Contributors are welcome, please fork and send pull requests! If you have any ideas on how to make this project better then please submit an issue.
FAQs
mysql generator
The npm package mysql-generator receives a total of 0 weekly downloads. As such, mysql-generator popularity was classified as not popular.
We found that mysql-generator 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.