
Security News
Socket Releases Free Certified Patches for Nuxt Security Vulnerabilities
Socket releases free Certified Patches for high-severity Nuxt vulnerabilities, including server-side remote code execution through server island props.
SSB plugin for discovery of other peers in the same LAN. Works by broadcasting UDP packets to all other peers in the local network. The data in these packets is (symmetrically) encrypted using your chosen network caps. Is backwards-compatible with ssb-local.
Prerequisites:
secret-stack@^6.2.0npm install --save ssb-lan
Add this plugin to ssb-server like this:
var createSsbServer = require('ssb-server')
.use(require('ssb-onion'))
.use(require('ssb-unix-socket'))
.use(require('ssb-no-auth'))
.use(require('ssb-plugins'))
.use(require('ssb-master'))
.use(require('ssb-conn'))
+ .use(require('ssb-lan'))
.use(require('ssb-replicate'))
.use(require('ssb-friends'))
// ...
Now you should be able to access the following muxrpc APIs under ssb.lan.*:
| API | Type | Description |
|---|---|---|
start() | sync | Triggers the start of LAN discovery of peers. |
stop() | sync | Stops the LAN discovery of peers if it is currently active. |
discoveredPeers() | source | A pull-stream that emits "discovery objects" (see definition below) every time a peer is (re)discovered on the local area network. Only peers using the same network caps are discovered. |
A "discovery" is an object with the following shape:
type Discovery = {
address: string;
verified: boolean;
};
By default, ssb-lan will operate two modes: legacy and normal. Legacy mode mimics how ssb-local behaves, broadcasting UDP packets with the same format for the contents of the packet, i.e. multiserver addresses as strings. Normal mode broadcasts packets with encrypted contents, using the network caps as symmetric encryption key.
You can turn off legacy mode by updating your SSB config object:
{
path: ssbPath,
keys: keys,
port: 8008,
conn: {
autostart: false
},
+ lan: {
+ legacy: false
+ }
}
MIT
FAQs
SSB plugin for discovery of other peers in the same LAN
We found that ssb-lan 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.

Security News
Socket releases free Certified Patches for high-severity Nuxt vulnerabilities, including server-side remote code execution through server island props.

Security News
An open letter signed by 50 companies, from NVIDIA and Microsoft to Mistral and Hugging Face, urges Washington not to restrict open weight AI.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.