
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.
homebridge-http-humidity
Advanced tools
Supports http/https devices on HomeBridge Platform. This version only supports humidity sensors returning a JSON with the data or the raw data.
This plug-in acts as an interface between a web endpoint and homebridge only. You will still need some dedicated hardware to expose the web endpoints with the humidity information. In my case, I used an Arduino board with Wifi capabilities.
npm install -g homebridgenpm install -g homebridge-http-humidityThe available fields in the config.json file are:
url [Mandatory] Endpoint URL.name [Mandatory] Accessory name.http_method [Optional] HTTP method used to get the humidity (Default: GET)manufacturer [Optional] Additional information for the accessory.model [Optional] Additional information for the accessory.serial [Optional] Additional information for the accessory.field_name [Optional] Field that will be used from the JSON response of the endpoint. Alternatively, if the field_name contains an empty string ("field_name": ""), the expected response is directly the current humidity value (Default: humidity).timeout [Optional] Waiting time for the endpoint response before fail (Default: 5000ms).auth [Optional] JSON with user and pass fields used to authenticate the request into the device.update_interval [Optional] If not zero, the field defines the polling period in milliseconds for the sensor state (Default is 120000ms). When the value is zero, the state is only updated when homebridge requests the current value.debug [Optional] Enable/disable debug logs (Default: false).Example:
"accessories": [
{
"accessory": "HttpHumidity",
"name": "Outside Humidity",
"url": "http://192.168.1.210/humidity?format=json",
"http_method": "GET",
"field_name": "humidity",
"auth": {
"user": "test",
"pass": "1234"
}
}
]
The defined endpoint will return a json looking like this:
{
"humidity": 38
}
This plugin acts as an interface between a web endpoint and homebridge only. You will still need some dedicated hardware to expose the web endpoints with the relative humidity information. In my case, I used an Arduino board with Wifi capabilities.
FAQs
https plugin for homebridge
We found that homebridge-http-humidity 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.