
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.
monkey-patches-rx
Advanced tools
monkey patch for https://github.com/Reactive-Extensions/RxJS
npm i monkey-patches-rx --save --save-exact
var options = {/* ... */};
Rx = require('rx');
require('monkey-patches-rx')(Rx, options);
with this option you can enable all patch.
options = {all: true};
// setup
with this option following methods will be added to Observables.
isTruthty
isFalsey
isDefined
isNull
isUndefined
isString
options = {typeFilter: true};
// setup
var obj$ = Rx.Observable.from([0, 1, null, undefined, false, true, '', {}, [], 'Hi']);
obj$.isTruthty(); // 1 true {} [] 'Hi'
obj$.isFalsey(); // 0 null undefined false ''
obj$.isDefined(); // 0 1 null false true '' {} [] 'Hi'
obj$.isNull(); // null
obj$.isUndefined(); // undefined
obj$.isString(); // '' 'Hi'
I test this package with rx@4.1.0
and node@v5.3.0
No. this is only :monkey_face: patch. so every time install this package with --save-exact
option.
FAQs
monkey patch for https://github.com/Reactive-Extensions/RxJS
We found that monkey-patches-rx 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.