
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.
@parity/schnorrkel-js
Advanced tools
Provides a Javascript wrapper for some of the high-level functionality provided by schnorrkel.
npm install @parity/schnorrkel-js
The functions exposed via wasm are explained here(rust) or [here(js)]. You can clone the repo and run the following to see the details:
cargo docs --open
Current experimental setup is created using wasm-pack
and webpack/node/npm
. Make sure to have both of them, alongside the latest nightly version of Rust installed.
In the root of the project run:
wasm-pack build --target browser
A directory named pkg
should be created. Then:
cd pkg
npm link
This creates a local binding to npm, instructing it to use this folder whenever schnorrkel-js
was imported as an npm module using require()
or import
.
Next, create head to the provided www
folder (experimental test folder created via npm: npm init wasm-app www
) and:
# Run just once
npm link schnorrkel-js
npm install
npm run start
The current index.js
does absolutely nothing. It just binds the compiled wasm blob as a parsed object to the window
object so that it can be easily tested in the console.
import * as schnorrkel from 'schnorrkel-js'
window.schnorrkel = schnorrkel
To make any further changes, given that the linking with npm link
is correct, just re-compile with wasm-pack build
and let the npm run start
be running in a separate process. It should automatically reload.
The default webpage
Run the tests in Node.Js environment via
wasm-pack test --node
or to run them directly in the browser:
add this line to the tests module in lib.rs
wasm_bindgen_test_configure!(run_in_browser);
Then
wasm-pack test --chrome
FAQs
a wasm port of the schnorrkel crypto library.
We found that @parity/schnorrkel-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
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.