
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
pyintesishome
Advanced tools
A python3 library for running asynchronus communications with IntesisHome Smart AC Controllers
This project is a python3 library for interfacing with Intesis air conditioning controllers, including cloud control of IntesisHome (Airconwithme + anywAiR) and local control of IntesisBox devices. It is fully asynchronous using the aiohttp library, and utilises the private API used by the IntesisHome mobile apps.
To use with Home Assistant, add the following to your configuration.yaml
climate:
- platform: intesishome
username: YOUR_USERNAME
password: YOUR_PASSWORD
climate:
- platform: intesishome
device: IntesisBox
host: 192.168.1.50
import asyncio
from pyintesishome import IntesisHome
async def main(loop):
controller = IntesisHome('username', 'password', loop=loop, device_type='airconwithme')
await controller.connect()
print(repr(controller.get_devices()))
# Imagine you have a device with id 12015601252591
if await controller.get_power_state('12015601252591') == 'off':
await controller.set_power_on('12015601252591')
await controller.set_mode_heat('12015601252591')
await controller.set_temperature('12015601252591', 22)
await controller.set_fan_speed('12015601252591','quiet')
if __name__ == "__main__":
loop = asyncio.get_event_loop()
result = loop.run_until_complete(main(loop))
FAQs
A python3 library for running asynchronus communications with IntesisHome Smart AC Controllers
We found that pyintesishome demonstrated a healthy version release cadence and project activity because the last version was released less than 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
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.