
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
A NodeJS client for the QMotion blinds (using a QSync device) based on my observations of the network protocol using tcpdump and Wireshark.
To install from NPM, do npm install qmotion, or just clone the github repo (but you'll need to run npm install in this dir to get the "clone" dependency if you get from github).
If you install form NPM, then do require("qmotion");. If you cloned the github repo then you'll need to do something like require("./qmotion"); (ie specify the path to the dir you cloned into).
There is 1 main file (qmotion.js) which is all you need plus some example CLI apps:
The file cli1.js is a working example.
To begin with, you must include the library and you can then either create a new QMotion object with a given ip address or find a QSync device using the search function.
Hard coded ip example:
var qmotion = require('./qmotion');
var device = new qmotion("192.168.0.1");
Network discovery example:
var qmotion = require('./qmotion');
var client = qmotion.search();
client.on("found", function(device) {
...
});
Target an individual blind:
var blind = device.blinds[0];
blind.move(50); // open blind to 50%
If you want to see debug messages then call
qmotion.setDebug(true);
FAQs
JS library for QMotion blinds
We found that qmotion 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.