Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
An AsyncIO-compatible Python client for Intex Spa wifi interface
This python package aims to provide an interface with the Intex Spa wifi module.
It is compatible with Intex wifi-enabled spas without any specific hardware, as it uses the built-in Intex wifi module.
It uses direct TCP connection to the spa, and does not require access to the Intex cloud. The built-in Intex wifi module only has to be connected to a wifi Access Point.
It is written with asyncio network functions. It only supports asyncio usage.
python3 -m pip install -U aio-intex-spa
Below are some examples, see examples
directory for more delight.
from aio_intex_spa import IntexSpa
async def get_spa_status():
spa = IntexSpa(SPA_ADDRESS)
await spa.async_update_status()
asyncio.run(get_spa_status())
from aio_intex_spa import IntexSpa
async def set_spa_heater_state():
spa = IntexSpa(SPA_ADDRESS)
await spa.async_set_heater(True)
asyncio.run(set_spa_heater_state())
The versioning of this python package follows Semantic Versioning 2.0.0
Reminder: Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable.
For Changelog, please read releases.
FAQs
Python client for Intex Spa wifi interface
We found that aio-intex-spa 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.