
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.
@acurast/transport-websocket
Advanced tools
[](https://www.npmjs.com/package/@acurast/transport-websocket)
An implementation of the Acurast P2P WebSocket Transport.
$ npm install @acurast/transport-websocket
WebSocketTransportClient
A client that can communicate with the Acurast P2P network using WebSocket.
To create a new instance call it constuctor and provide an Acurast P2P WebSocket server url
and an optional connectionTimeoutMillis
.
The connection timeout is the number of milliseconds to wait for an initial response from the server. If the server does not respond within the specified time, an error is thrown.
constructor(url: string, connectionTimeoutMillis: number)
connect
Opens a connection between the client and the server using the calling peer's P256 keyPair
.
/*
interface KeyPair {
publicKey: Uint8Array
secretKey: Uint8Array
}
*/
connect(keyPair: KeyPair): Promise<void>
onMessage
Registers a new listener
which will be notified on incoming message
.
/*
interface Message {
sender: Uint8Array
recipient: Uint8Array
payload: Uint8Array
}
*/
onMessage(listener: (message: Message) => void | Promise<void>): void
send
Sends a new message with the payload
to a peer that identifies with the publicKey
.
send(publicKey: Uint8Array, payload: Uint8Array): Promise<void>
close
Terminates the ongoing connection.
close(): Promise<void>
FAQs
[](https://www.npmjs.com/package/@acurast/transport-websocket)
We found that @acurast/transport-websocket demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.