Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
node-red-auth-contrib-ldap
Advanced tools
LDAP authentication module for Node-RED
(1) Install LDAP authentication module
sudo npm install -g node-red-auth-contrib-ldap
(2) Add LDAP server information into settings.js
vi ~/.node-red/settings.js
Add adminAuth block in module.exports block as follows.
module.exports = {
...
adminAuth: require("node-red-auth-contrib-ldap").init({
url: "ldap://<hostname>:389",
dn: "uid=%username%,ou=people,o=example,c=jp"
}),
...
}
You can modify dn(distinguished name) which corresponds with your LDAP server. %username% is reserved word which dn string has as user name.
(3) Run Node-RED
node-red
FAQs
LDAP authentication module for Node-RED
The npm package node-red-auth-contrib-ldap receives a total of 10 weekly downloads. As such, node-red-auth-contrib-ldap popularity was classified as not popular.
We found that node-red-auth-contrib-ldap 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.