
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.
is-connected-to-systemd-journal
Advanced tools
Determine if stdout or stderr is connected to the systemd journal
Determine if the current process is connected via stdout or stderr to the systemd journal.
This module checks the environment variable JOURNAL_STREAM
which was introduced in systemd v231. As of this writing, Ubuntu
16.04 is using systemd v229, which means that this module will
always return false
in Ubuntu 16.04.
It is suggested that, in Ubuntu 16.04 and other systems with systemd < 231, set an environment variable for your process and use that to determine whether to log to systemd's journal or to stdout.
if (isConnected.sync() || process.env.VARIABLE_I_SET_TO_TRIGGER_JOURNAL) {
// Log to the journal
}
npm install --save is-connected-to-systemd-journal
const isConnected = require('is-connected-to-systemd-journal')
let log = null;
if (isConnected.sync()) {
// set up logging to require('systemd-journald') or other
}
else {
// set up logging to some other sink (like console.out)
}
isConnected.stdoutSync() // is stdout connected to the journal
isConnected.stderrSync() // is stdout connected to the journal
isConnected.sync() // same as isConnected.stdoutSync
const isConnected = require('is-connected-to-systemd-journal')
isConnected((err, connected) => {
let log = null;
if (connected) {
// set up logging to require('systemd-journald') or other
}
else {
// set up logging to some other sink (like console.out)
}
})
isConnected.stdout(cb) // is stdout connected to the journal
isConnected.stderr(cb) // is stdout connected to the journal
isConnected(cb) // same as isConnected.stdoutSync
FAQs
Determine if stdout or stderr is connected to the systemd journal
We found that is-connected-to-systemd-journal 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
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.