
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
ssb-identities
Advanced tools
manage multiple ssb identities, as an sbot plugin.
var createSbot = require('scuttlebot')
.use(require('scuttlebot/plugins/master'))
.use(require('scuttlebot/plugins/gossip'))
.use(require('scuttlebot/plugins/replicate'))
.use(require('ssb-identities'))
var sbot = createSbot(config)
// locally or via an remote ssb-client connection
sbot.identities.list(function (err, data) {
// do things
})
This module uses the addUnboxer method of ssb db so that encrypted messages will be decrypted before being passed to database views.
returns the main identity (sbot.id)
returns the list of identities, with the main identity first.
create a new identity, stored in ~/.ssb/identities/secret_[N].butt
where N is the left-padded number of this identity.
returns the id of the newly created identity.
The file created will use the ssb-keys format`
publish a message as a specific identity.
id must be provided and must be already in
the identities list. If private is true,
content.recps must be set. recps must contain
the id.
For more information about these type of plugins, refer to the plugins.md in the secret-stack repository.
MIT
FAQs
use multiple identities from a single sbot instance
We found that ssb-identities demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 19 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.