
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@acurast/dapp
Advanced tools
[](https://www.npmjs.com/package/@acurast/dapp)
Tools useful in dApp development.
$ npm install @acurast/dapp
AcurastClientA client that can communicate with the Acurast P2P network.
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. If this parameter is omitted, the default value of 15 seconds is used.
constructor(url: string, connectionTimeoutMillis?: number /* default: 15s */)
startOpens a connection between the client and the server using the dApp's P256 keyPair.
/*
interface KeyPair {
publicKey: string | Uint8Array
secretKey: string | Uint8Array
}
*/
start(keyPair: KeyPair): Promise<void>
onMessageRegisters 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
sendSends a new message with the payload to a peer that identifies with the publicKey.
If payload is not a valid raw bytes value (Uint8Array or a hex string), it will be encoded to UTF-8 bytes before sending.
send(publicKey: string | Uint8Array, payload: string | Uint8Array): Promise<void>
closeTerminates the ongoing connection.
close(): Promise<void>
import { AcurastClient, Message } from '@acurast/dapp'
const acurastClient = new AcurastClient('wss://example.com' /* Acurast P2P WebSocket Server */)
await acurastClient.start({
secretKey: 'f816e59353c58627039fbf5e96747a871244194b9db12095189554e78a6d4a45',
publicKey: '04ae00462e82af267b42b477493450b04b8ed05e510eca2a40c6f7679b14e364b9d6f9c867a7e72b4880f9632450e5c2c03bd69424f786e10bb77e9bd09e322ef3'
} /* P256 key pair */)
acurastClient.onMessage(async (message: Message) => {
console.log('Received Message', message)
await acurastClient.close()
})
await acurastClient.send(
'028aad55a45e1eba230e38243ee9221d765cdb59fde684bad516bffcc9970f3c15' /* processor's public key */,
'my message'
)
See the example dApp.
FAQs
[](https://www.npmjs.com/package/@acurast/dapp)
The npm package @acurast/dapp receives a total of 25 weekly downloads. As such, @acurast/dapp popularity was classified as not popular.
We found that @acurast/dapp demonstrated a not healthy version release cadence and project activity because the last version was released 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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.