Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
node-red-contrib-change-detect
Advanced tools
[![NPM Version](https://img.shields.io/npm/v/node-red-contrib-change-detect.svg)](https://www.npmjs.com/package/node-red-contrib-change-detect) [![Build status](https://travis-ci.org/andig/node-red-contrib-change-detect.svg?branch=master)](https://travis-
A change detection node for Node-RED
Change detecting works by keeping track of
Date.now()
) andmsg.payload
)By keeping track of timestamp and value by identifier (typically msg.topic
) the node is able to determine if a message timestamp or value has changed enough according to the criteria defined.
Individual change detection nodes- if more than one is used- are independent. Each node builds its own cache of message identifiers and time/value history. Note that this map will continue to grow with each new identifier found.
Message that fulfill the change detection criteria are forwarded to the pass
output, all other messages are forwarded on the skip
output.
To use this node configure the following settings.
minTimeDelta
specifies the minimum time resolution in milliseconds. If another message of the same identifier arrives within minTimeDelta
it will be removed.
minValueDelta
specifies the minimum value resolution. If another message of the same identifier arrives that is not different from the previous message by at least minValueDelta
it will be removed.
maxTimeDelta
can be used to ensure that once in a while a message is passed even if it's value did not change. Specifying maxTimeDelta
is only helpful if matching mode is AND
.
Conditions matching mode indicates under what condition messages are allowed to pass:
minValueDelta
or minTimeDelta
conditions are true. This is the default.minValueDelta
and minTimeDelta
conditions are trueFAQs
[![NPM Version](https://img.shields.io/npm/v/node-red-contrib-change-detect.svg)](https://www.npmjs.com/package/node-red-contrib-change-detect) [![Build status](https://travis-ci.org/andig/node-red-contrib-change-detect.svg?branch=master)](https://travis-
The npm package node-red-contrib-change-detect receives a total of 1 weekly downloads. As such, node-red-contrib-change-detect popularity was classified as not popular.
We found that node-red-contrib-change-detect 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.