
Security News
Rust RFC Proposes a Security Tab on crates.io for RustSec Advisories
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.
@wishcore/wish-sdk
Advanced tools
Node.js SDK for building peer-to-peer applications on the Wish protocol.
Features:
npm install @wishcore/wish-sdk
const { App, WishCoreRunner } = require('@wishcore/wish-sdk');
// Start wish-core (bundles pre-built binaries for macOS/Linux)
await WishCoreRunner.start({ appPort: 9094 });
const app = new App({
name: 'MyApp',
corePort: 9094,
protocols: ['chat']
});
app.on('ready', async () => {
// Create or get identity
const identities = await app.request('identity.list', []);
const identity = identities[0] || await app.request('identity.create', ['Alice']);
console.log('Ready as:', identity.alias);
});
app.on('online', async (peer) => {
// Send message to peer
await app.request('services.send', [peer, Buffer.from('Hello!')]);
});
app.on('frame', async (peer, data) => {
// Receive message from peer
const identity = await app.request('identity.get', [peer.ruid]);
console.log(`${identity.alias}: ${data.toString()}`);
});
identity.create(alias) - Create new identityidentity.list() - List identitiesidentity.get(uid) - Get identity detailsservices.send(peer, buffer) - Send data to peerready - Connected to wish-coreonline(peer) - Peer came onlineoffline(peer) - Peer went offlineframe(peer, data) - Received data from peerFAQs
Wish API for node. Used for building Wish Apps.
The npm package @wishcore/wish-sdk receives a total of 117 weekly downloads. As such, @wishcore/wish-sdk popularity was classified as not popular.
We found that @wishcore/wish-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.

Security News
/Research
Socket found a Rust typosquat (finch-rust) that loads sha-rust to steal credentials, using impersonation and an unpinned dependency to auto-deliver updates.

Research
/Security Fundamentals
A pair of typosquatted Go packages posing as Google’s UUID library quietly turn helper functions into encrypted exfiltration channels to a paste site, putting developer and CI data at risk.