
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
@ambassify/aql-postgres
Advanced tools
Uitilities to run AQL queries on postgres databases. Currently it only supports building the condition part of the query.
More information about AQL can be found in the spec.
Note that this utility builds raw SQL strings based on your input. You can provide
a context object that implements escapeKey(key)
, escapeValue(value)
and escapeList(list)
functions if you need some parts of the condition to be escaped.
npm install --save @ambassify/aql-postgres
const pgAQL = require('@ambassify/aql-postgres');
const condition = {
operator: 'and',
value: [
{ key: 'e.type', operator: 'in', value: [ 'video', 'image' ] },
{ key: 'e.likes', operator: 'gte', value: 10 },
]
};
/**
* You need to provide a context object that has methods to escape values
* to make them safe for use in SQL. The easiest way to do this is by using
* parameters in your query. Knex allows named parameters for example. This
* example shows you how it could be done.
*/
const context = {
parameters: {},
escapeKey(key) {
return `${context.escapeValue(key)}:`;
},
escapeValue(value) {
const name = `param_${Object.keys(context.parameters).length}`;
context.parameters[name] = value;
return `:${name}`;
},
escapeList(value) {
return value.map(v => context.escapeValue(v)).join(',');
}
};
const query = `
SELECT *
FROM engagement e
WHERE ${pgAQL.condition(condition, context)}
`;
// use your favorite driver to execute the query
const results = await knex().raw(query, context.parameters);
FAQs
AQL postgres utilities
The npm package @ambassify/aql-postgres receives a total of 1 weekly downloads. As such, @ambassify/aql-postgres popularity was classified as not popular.
We found that @ambassify/aql-postgres demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.