Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
node-red-contrib-tcc-honeywell
Advanced tools
Node for interfacing with legacy (my total connect comfort/TCC) Honeywell thermostats in Node-Red
Interface for Honeywell Legacy Thermostats Node for Node-Red. Pulls data from the Honeywell TCC (Total Connect Comfort) API, which appears to be mostly undocumented now.
Project status: presently testing the ability to send data. Getting the status works fine and changng settings seems to properly connect tot he API and return data, but I have had issues with the cahnges actually being reflected on my thermostat. Settings are limited to data that can be sent to the api body. Since the api is undocumented, the only things I've found are turning the termostat on and off, setting a hold temperature, changing the running mode (heat, cool, etc.), and setting a hold time.
From other sources (referenced below), the commands that the (undocumented) api seems to accept are:
SystemSwitch
0 = emergency heat; 1 = heat; 2 = coolHeatSetpoint
temperature to set the heat toCoolSetpoint
temperature to set the a/c toHeatNextPeriod
time to end hold and go back to next scheduled actionCoolNextPeriod
time to end hold and go back to next scheduled actionStatusHeat
1 for hold, 0 for regular (set to 0 to cancel an existing hold)StatusCool
1 for hold, 0 for regular (set to 0 to cancel an existing hold)FanMode
0 = auto; 1 = onIn node-red, for a node input, to change a setting, msg.payload
is expected to be an object (or JSON) containing the settings to send in the request to the thermostat. For example, to set the cool setpoint until a time: msg.payload could be { CoolNextPeriod: 12345, CoolSetpoint: 74, StatusCool: 1 }
. If msg.payload
is instead the string "status"
- or if it is any string or anything other than JSON or an object - the node will simply request the status from the thermostat and return the result. Results are output as an object, but can be converted to JSON.
Some Useful References:
FAQs
Node for interfacing with legacy (my total connect comfort/TCC) Honeywell thermostats in Node-Red
The npm package node-red-contrib-tcc-honeywell receives a total of 1 weekly downloads. As such, node-red-contrib-tcc-honeywell popularity was classified as not popular.
We found that node-red-contrib-tcc-honeywell 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.