
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@itcutives/adapter-mysql
Advanced tools
This repo contains MySQL adapter for ITcutives Serverless Framework
npm install @itcutives/adapter-mysql
connection-provider.js
const Adapter = require('../src/adapter');
const Connect = require('../src/connection');
class MySQL extends Adapter {
static CONNECT(config) {
if (!MySQL.CONN) {
MySQL.CONN = new Connect(config);
}
return Promise.resolve(MySQL.CONN);
}
}
module.exports = MySQL;
user.js
const Abstract = require('./connection-provider');
class User extends Abstract {
/**
* @returns {string}
*/
static get PLURAL() {
return 'users';
}
/**
* @returns {string}
*/
static get TABLE() {
return 'user';
}
/**
* @returns {Array}
*/
static get FIELDS() {
return ['id', 'name', 'type', 'attributes'];
}
/**
* @returns {{}}
*/
static get SERIALIZED() {
return {
"attributes": "json",
};
}
}
module.exports = User;
/* eslint-disable no-console */
const User = require('./user');
async function init() {
let records;
let found;
let changes;
await User.CONNECT({
host: 'localhost',
port: 3306,
user: 'root',
password: 'root',
database: 'serverless',
connectionLimit: 2,
});
const user = new User({ type: 'ADMIN', name: 'itcutives', attributes: { phone: '1234-5678' } });
const insertId = await user.INSERT();
console.log(`Inserted record with id ${insertId}.`);
const conditions = [{
field: 'id',
operator: '=',
value: insertId,
condition: 'AND',
}];
records = await user.SELECT(conditions);
[found] = records;
console.log(`Found record with name '${found.get('name')}'.`);
found.set('name', 'new name');
changes = await found.UPDATE();
console.log(`Updated ${changes} records.`);
records = await user.SELECT();
[found] = records;
console.log(`Found record with name '${found.get('name')}'.`);
changes = await found.DELETE();
console.log(`Deleted ${changes} records.`);
records = await user.SELECT();
console.log(`Found ${records.length} records.`);
}
init();
Example 1:
let condition = {
"name": "ashish",
"type": {
"field": "type",
"operator": "in",
"value": ["ADMIN", "SUPER", "USER"]
}
};
builds
WHERE `name` = ? AND `type` IN (?, ?, ?)
-- arguments: ["ashish", "ADMIN", "SUPER", "USER"]
Example 2:
let condition = [
{
"field": "id",
"value": 1
},
{
"field": "type",
"operator": "!=",
"value": "ADMIN",
"condition": "OR"
}
]
builds
WHERE `id` = ? OR `type` != ?
-- arguments: [1, "ADMIN"]
Example 3:
let condition = {
"attributes": {
"field": "attributes.email",
"operator": "in",
"value": ["ashish@test.com", "manish@test.com"],
},
}
builds
WHERE `attributes`->>"$.email" IN (?, ?)
-- arguments: ["ashish@test.com", "manish@test.com"]
Example 4:
let condition = [
{
"field": "id",
"operator": "between",
"value": [10, 20]
},
{
"field": "y",
"operator": "regexp",
"value": "/find/",
"condition": "OR"
},
{
"field": "name",
"operator": "like",
"value": "%abc%"
}
]
builds
WHERE `id` BETWEEN (?, ?) OR `y` REGEXP ? AND `name` LIKE '%abc%'
-- arguments: [10, 20, "/find/"]
The adapter takes care of serialisation/deserialisation defined under
Supported Types
json
/**
* @returns {{}}
*/
static get SERIALIZED() {
return {
"attributes": "json",
};
}
takes
let object = {
"name": "ashish",
"attributes": {
"email": "ashish@test.com",
"phone": "0412123456"
}
};
and converts to
let object = {
"name": "ashish",
"attributes": "{\"email\":\"ashish@test.com\",\"phone\":\"0412123456\"}"
};
FAQs
MySQL Adapter for ITcutives API
We found that @itcutives/adapter-mysql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.