
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
auth0-react-lock
Advanced tools
Reusable React component for Auth0's Lock Widget.
Auth0 is an authentication broker that supports social identity providers as well as enterprise identity providers such as Active Directory, LDAP, Google Apps, Salesforce.
Lock Widget is a drop and use widget for Auth0 which comes with most authentication options that you can think of:
npm install --save auth0-react-lock
The component is what you are used to if you ever used React but this time with options to configure Lock and callbacks to handle authentication.
showLock(){
this.refs.lock1.showLock();
}
hashHandler(err, profile){
if(err) console.log(err);
console.log(`:) ${profile}`)
}
render() {
return (
<div>
<Lock
clientID={Env.CLIENT_ID}
domain={Env.DOMAIN}
ref={"lock1"}
connections={['google-oauth2', 'facebook']}
socialBigButtons={false}
hashHandler={this.hashHandler}
/>
<button onClick={this.showLock.bind(this)}>Show</button>
</div>
);
}
showLock(){
this.refs.lock1.showLock(function(err, profile){
if(err) console.log(err);
console.log(profile);
});
}
render() {
return (
<div>
<Lock
clientID={Env.CLIENT_ID}
domain={Env.DOMAIN}
ref={"lock1"}
connections={['google-oauth2', 'facebook']}
socialBigButtons={false}
popup={true}
/>
<button onClick={this.showLock.bind(this)}>Show</button>
</div>
);
}
// If the contaaner property is set, lock will be automatically embedded
<Lock
container={"container-id"}
clientID={Env.CLIENT_ID}
domain={Env.DOMAIN}
ref={"lock1"}
connections={['google-oauth2', 'facebook']}
socialBigButtons={false}
popup={true}
/>
You can also grab an instance of lock:
componentDidMount() {
this.lock = this.refs.lock1.getLock();
// And also grab Auth0.js instance
this.auth0js = this.lock.getClient();
}
The example to this component is implicit to the project.
# Install webpack-dev-server
npm install --g webpack-dev-server
# Clone
git clone https://github.com/auth0/auth0-react-lock
# Install dependencies
npm install
# Run Example
webpack-dev-server
To run the tests:
Run grunt
.
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
This project is licensed under the MIT license. See the LICENSE file for more info.
FAQs
React Component for Auth0's Lock.js
The npm package auth0-react-lock receives a total of 5 weekly downloads. As such, auth0-react-lock popularity was classified as not popular.
We found that auth0-react-lock 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.