
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.
mosquitto-acl-parser
Advanced tools
Parse and Stringify Mosquitto ACLs
This tiny module parses Mosquitto ACLs into a Javascript object and stringifies objects back into a ACL string.
npm install mosquitto-acl-parser
const macl = require('mosquitto-acl-parser');
const acl = macl.parse(`# This affects access control for clients with no username.
topic read $SYS/#
# This only affects clients with username "roger".
user roger
topic foo/bar
# This affects all clients.
pattern write $SYS/broker/connection/%c/state`);
acl contains then...
{
"topics": [
{
"perm": "read",
"topic": "$SYS/#"
}
],
"users": {
"roger": [
{
"perm": "readwrite",
"topic": "foo/bar"
}
]
},
"patterns": [
{
"perm": "write",
"topic": "$SYS/broker/connection/%c/state"
}
]
}
const macl = require('mosquitto-acl-parser');
console.log(macl.stringify({
topics: [
{
perm: 'read',
topic: 'everyone/can/read '
},
{
perm: 'readwrite',
topic: 'everyone/can/readwrite'
}
],
users: {
user1: [
{
perm: 'read',
topic: 'user1/can/read'
},
{
perm: 'readwrite',
topic: 'user1/can/readwrite'
}
],
user2: [
{
perm: 'read',
topic: 'user2/can/read'
},
{
perm: 'readwrite',
topic: 'user2/can/readwrite'
}
]
},
patterns: [
{
perm: 'read',
topic: 'pattern/%u/can/read'
},
{
perm: 'readwrite',
topic: 'pattern/%u/can/readwrite'
}
]
}));
Outputs...
# created by mosquitto-acl-parser
topic read everyone/can/read
topic readwrite everyone/can/readwrite
user user1
topic read user1/can/read
topic readwrite user1/can/readwrite
user user2
topic read user2/can/read
topic readwrite user2/can/readwrite
pattern read pattern/%u/can/read
pattern readwrite pattern/%u/can/readwrite
MIT (c) 2017 Sebastian Raff
FAQs
Parse and Stringify Mosquitto ACLs
We found that mosquitto-acl-parser 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
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.