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.
sql-light
A simple SQLite query builder.
Example using Bun SQLite:
import sql from 'sql-light';
import db from './my-db.db' with { type: 'sqlite' };
// Create user table
const userTable = sql.table({
name: 'Users',
schema: {
name: 'text not null',
pass: 'text not null'
},
// Type hint here
primaryKeys: ['name']
});
// Run create table statement
db.run(userTable.init);
// Create a query
const selectUser = sql.query<{
name: string
}>($ => `select ${userTable.col('pass')} from ${userTable} where ${userTable.$name} = ${$.name}`);
// Feed to Bun query initializer
const query = db.query<{ pass: string }, typeof selectUser.infer>(selectUser);
FAQs
SQLite query builder for ya smol project
The npm package sql-light receives a total of 8 weekly downloads. As such, sql-light popularity was classified as not popular.
We found that sql-light 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
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.