
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-red-contrib-buspro
Advanced tools
Node-Red implementation of HDL BusPro (SmartBus) protocol http://hdlautomation.com
Node-Red implementation of HDL BusPro (SmartBus) protocol http://hdlautomation.com
Based on https://github.com/caligo-mentis/smart-bus.
node that holds connection to IP Gateway of BusPro (Smart-Bus) network
defaults: {
host: {value:"",required:true}, // HDL BusPro IP gateway
port: {value:6000, required:true, validate:RED.validators.number()}, // and port, default: 6000
subnetid: {value: 1, required: true, validate: RED.validators.number()}, // Connector address in HDL network (Subnet ID)
deviceid: {value: 99, required: true, validate: RED.validators.number()} // Connector address in HDL network (Device ID)
}
Receive commands from BusPro (Smart-Bus) network
msg:{
sender: "1.2", //ID of Sender Device
target: "255.255", //ID of Target Device
code: 50, //Integer with command operation code
payload: {}, //Object with decoded data or raw buffer if data can not be parsed automatically
topic: 'buspro/1.2/255.255/50' // topic contains a brief selection of parameters "buspro/{sender}/{target}/{command code}
}
Send commands to BusPro (Smart-Bus) network
msg:{
target: "1.52", //Target device address
code: 49, //Integer with command operation code
sender: "1.99", // (Optional) Source device address. A message will be sent from this device address. If the sender is not presented, it will be sent from the controller address
payload: { //Object with data or raw buffer
channel: 2,
level: 100
}
}
FAQs
Node-Red implementation of HDL BusPro (SmartBus) protocol http://hdlautomation.com
We found that node-red-contrib-buspro 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.