
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@signalapp/sqlcipher
Advanced tools
A fast N-API-based Node.js addon wrapping sqlcipher and FTS5 segmenting APIs
A fast N-API-based Node.js addon wrapping sqlcipher and Signal-specific FTS5 segmenting APIs.
import Database from '@signalapp/sqlcipher';
const db = new Database('/path/to/db');
db.exec(`
CREATE TABLE t (
a INTEGER,
b TEXT,
c BLOB
);
`);
const insert = db.prepare('INSERT INTO t (a, b, c) VALUES ($a, $b, $c)');
insert.run({ a: 1, b: 'hello', c: Buffer.from('world') });
insert.run({ a: 2, b: 'world', c: Buffer.from('hello') });
console.log(db.prepare('SELECT * FROM t').all());
On macOS:
cd deps/sqlcipher
export OPENSSL_PREFIX=`brew --prefix openssl`
export CFLAGS="-I $OPENSSL_PREFIX/include"
export LIBRARY_PATH="$LIBRARY_PATH:$OPENSSL_PREFIX/lib"
./update.sh v4.10.0
cd -
Copyright 2025 Signal Messenger, LLC.
Licensed under the AGPLv3: http://www.gnu.org/licenses/agpl-3.0.html
FAQs
A fast N-API-based Node.js addon wrapping sqlcipher and FTS5 segmenting APIs
The npm package @signalapp/sqlcipher receives a total of 732 weekly downloads. As such, @signalapp/sqlcipher popularity was classified as not popular.
We found that @signalapp/sqlcipher demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 9 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.