![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
ldap-verifyuser
Advanced tools
ldap-verifyuser is a node.js library based on ldapjs, that authenticates a user against a LDAP or AD without requiring an configured administrator account.
ldap-verifyuser
?ldap-verifyuser
is a node.js library based on ldapjs, that authenticates a user against a LDAP or AD without requiring an configured administrator account (which is required by MANY other implementations). This is done, by using the userprovided credentials itself to bind against the LDAP and verify the account's status.
One possible implementation of this lib would be:
var lib = require('ldap-verifyuser');
var config = {
server: 'ldap://<ip>',
adrdn: 'MYCORP\\',
adquery: 'dc=MYCORP,dc=LOCAL',
debug: false,
rawAdrdn: false
},
username = 'myacc',
password = 'mypass'
lib.verifyUser(config, username, password, function(err, data){
if(err) {
console.error('error', err);
} else {
console.log('valid?', data.valid);
console.log('locked?', data.locked);
console.log('raw data available?', data.raw ? true : false);
}
process.exit(data.status);
});
Set config.rawAdrdn
to true
to use the supplied adrdn
without modifications/appending the username.
To install you need to:
npm install ldap-verifyuser
(You will need >node.js< of course)
This is the first inital version and will have rough edges, so please keep that in mind. Thus: 'here be dragons!'.
Temporarily i use my hotfixed version of ldapjs to make it compatible with node 0.12.x. Whenever a new upstream version of the official ldapjs is available i will switch back to it.
FAQs
ldap-verifyuser is a node.js library based on ldapjs, that authenticates a user against a LDAP or AD without requiring an configured administrator account.
The npm package ldap-verifyuser receives a total of 3 weekly downloads. As such, ldap-verifyuser popularity was classified as not popular.
We found that ldap-verifyuser 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.