
Research
/Security News
Intercom’s npm Package Compromised in Ongoing Mini Shai-Hulud Worm Attack
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.
symbiotic
Advanced tools
Symbiotic allows you to create a smart environment where you have full control of your IoT devices. Sensors can be paired to devices and services to create complex actions and schedules.
Some of the main features are
Install and update using pip
pip install symbiotic[yaml]
from symbiotic import Symbiotic
from symbiotic.schedule import Schedule
app = Symbiotic()
app.config.from_yaml('config.yaml')
ifttt = app.services.IFTTT() # <-- the service to control your device
light_bulb = app.devices.light_bulb('bedroom', service=ifttt)
# create custom schedules
weekdays_morning = Schedule().weekdays().at('08:00')
every_evening = Schedule().every_day().at('19:00')
# tell the app how to use your schedules
with app.scheduler(weekdays_morning) as scheduler:
scheduler.add(light_bulb.on, brightness=80, transition_duration='30m')
with app.scheduler(every_evening) as scheduler:
scheduler.add(
light_bulb.on,
brightness=50,
color='red',
transition_duration='60m'
)
app.run()
* The application is running... (Press CTRL+C to terminate)
See example.py to learn how to configure devices like motion sensors.
To learn how to configure an IFTTT applet, please read the documentation. Once your applet is configured, make sure to add your configuration parameters in config.yaml.
Contributions are welcome! Feel free fork the project and to open a pull request.
FAQs
Connect your smart devices and sensors to create complex, schedulable actions.
We found that symbiotic 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
/Security News
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.

Research
Socket detected a malicious supply chain attack on PyPI package lightning versions 2.6.2 and 2.6.3, which execute credential-stealing malware on import.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.