Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Loglet.io node.js client for encrypted log streaming and storage.
The Loglet.io project uses UNLOQ.io personal encryption keys to generate shared secret keys, used to perform end-to-end encryption (above TLS) from your node.js apps to your browser. In this scenario, the loglet.io servers are working in zero-knowledge state.
Go to https://loglet.io, login with UNLOQ and create an application
npm install loglet.io
var loglet = require('loglet.io');
loglet({
key: 'YOUR_APP_KEY',
secret: 'YOUR_APP_SECRET'
});
/**
* The log item can contain the following properties:
* - name[=default] - the name of the logger or app instance
* - namespace[=global] - the namespace of the log event
* - level[=debug] - the log level. Values are: trace, debug, info, warn, error, fatal
* - message (required) - the message that we want to send.
* - data - additional data that can be attached to the log entry as a an object, array, string or number
* - tags - additional tags that can be attached to the log entry. Each tag entry must be a string.
* - error - additional error information. If we receive an error object, we will also include its stack trace.
* */
loglet.send({
level: 'trace',
message: 'Hello world!'
})
Q: What data is encrypted?
A: By default, the client encrypts the following fields:
message
data
error
Q: Can you read any of my logs?
A: Our servers work in a zero-knowledge state. That means that the node.js client encrypts the data before it sends it to our API for storage and livestream. The secret key is used to encrypt and decrypt all data, it is never stored in plaintext and we will never have access to it.
Q: How can you not have access to the secret key?
A: UNLOQ.io offers personal encryption keys for each user. The key is delivered directly in the user's browser and is used by the browser to encrypt all data before it sends it to our servers.
FAQs
Loglet.io node.js client for encrypted log sending
We found that loglet.io 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.