![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Daemon that bridges IRC to JSON-RPC over UDP.
Usefull for tools or daemons that need to interact with IRC but don't want a persistent connection or the overhead of handling IRC stuff themselves.
% npm install ircbridged
% ircbridged
Options:
--server IRC server address [required]
--port IRC server port [default: 6667]
--nick IRC nick [default: "ircbridge"]
--realname IRC realname [default: "IRC Bridge"]
--ssl Use SSL [default: false]
--listenport UDP port for JSON-RPC [default: 41234]
You can talk to the bridge locally using nc. For example:
% nc -u 127.0.0.1 41234
{"method": "join", "params": ["#channel"]}
{"method": "message", "params": ["#channel", "Hello World!"]}
There's a client library for Node.js in https://github.com/calmh/node-ircbridge.
Join an IRC channel.
Params: channel
{"method": "join", "params": ["#channel"]}
{"method": "join", "params": ["#channel aChannelPassword"]}
Leave an IRC channel.
Params: channel
{"method": "part", "params": ["#channel"]}
Send a privmsg to a channel or individual.
Params: target
, message
{"method": "message", "params": ["#channel", "Hello all!"]}
{"method": "message", "params": ["someNick", "Hey there!"]}
Send a notice to a channel.
Params: target
, message
{"method": "notice", "params": ["#channel", "This is a channel notice!"]}
Subscribe to messages on a channel. For the duration of the subscription, any messages on the channel will be sent to the subscriber as "message" events.
Params: target
{"method": "subscribe", "params": ["#channel"]}
A subscribed
event is returned on successfull subscription. The event
contains the channel name and the subscription duration in milliseconds.
To continue receiving messages from the channel, the subscription needs
to be renewed by sending a new subscribe
command before the expiration
time.
{"method": "subscribed", "params": ["#channel", 1800000]}
The message events are in the form of message
notifications with
params
being from
, to
and message
.
{"method":"message","params":["someNick","#channel","hi everyone"]}
MIT
FAQs
Bridges IRC to JSON-RPC over UDP (server component).
We found that ircbridged 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.