
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
This project allows you to connect to an Urbit ship via a JavaScript application.
Start a new project, run npm install urbit and run the below, or run node.js from the root of this project.
const Urbit = require('urbit').default;
// Assuming
// a) you are running a fakezod on port 8080
// b) you have created a chat called 'mc' on that fakezod,
const url = 'localhost';
const port = 8080;
const code = 'lidlut-tabwed-pillex-ridrup';
async function mars() {
const ship = new Urbit(`http://${url}:${port}`, code);
await ship.connect();
await ship.subscribe('zod', 'chat-store', '/mailbox/~/~zod/mc');
const pipe = ship.eventSource();
await ship.poke('zod', 'chat-hook', 'json', {message: {path: '/~/~zod/mc', envelope: {
uid: Urbit.uid(),
number: 1, // Dummy, gets overwritten immediately
author: '~zod',
when: new Date().getTime(),
letter: { text: 'Hello, Mars!' }
}}});
}
mars();
console.log('Press ctrl-c to quit');
This library is designed to be useful for node applications that communicate with an urbit running either on the local computer or on a remote one.
The majority of its methods are asynchronous and return Promises. This is due to the non-blocking nature of JavaScript. If used in a React app, response handlers should be bound with this to setState after a message is received.
It uses the Axios library to polyfill the native JavaScript fetch which is only available in the browser context. It uses a similar approach to EventSource.
Future features include:
fetch-compatible syntaxdist file (let me know if you have experience with this)FAQs
Library to interact with an Urbit ship
We found that urbit 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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.