
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.
engine.io-browser
Advanced tools
This is the browser-only client for Engine.IO, the implementation of transport-based cross-browser/cross-device bi-directional communication layer for Socket.IO.
You can find an engine.io.js file in this repository, which is a
standalone build you can use as follows:
<script src="/path/to/engine.io.js"></script>
<script>
// eio = Socket
const socket = eio("ws://localhost");
socket.on("open", () => {
socket.on("message", (data) => {});
socket.on("close", () => {});
});
</script>
Engine.IO is a commonjs module, which means you can include it by using
require on the browser and package using browserify:
install the package
$ npm install engine.io-browser
write your app code
const socket = require("engine.io-browser")("ws://localhost");
socket.on("open", () => {
socket.on("message", (data) => {});
socket.on("close", () => {});
});
build your app bundle
$ browserify app.js > bundle.js
include on your page
<script src="/path/to/bundle.js"></script>
<script src="/path/to/engine.io.js"></script>
<script>
const socket = new eio.Socket("ws://localhost/");
socket.binaryType = "blob";
socket.on("open", () => {
socket.send(new Int8Array(5));
socket.on("message", (blob) => {});
socket.on("close", () => {});
});
</script>
FAQs
Client for the realtime Engine
We found that engine.io-browser 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.