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.
clever-auth
Advanced tools
This CleverStack Module provides easy to use, easy to configure, reliable and scalable Authentication System that allows you to (within minutes) have authentication via Google, Facebook, Github, LinkedIn, and many more...
clever-orm
and the clever-odm
modules.grunt prompt:cleverAuthConfig
.clever install clever-auth
.clever-auth
with new Authentication Providers that are not implemented yet.clever-users
module - OR - with any other module that exports the UserController
, UserService
and UserModel
resources/classes.UserController
, UserService
and UserModel
resources/classes.clever install clever-auth
and follow the promptsclever serve
to start your application.modules/clever-auth
)grunt prompt:cleverAuthConfig
and fill in your configuration options.grunt db
to rebase and seed the data.grunt server
to start your application.For more information about how modules (including clever-auth) are configured, please see the cleverstack.io Documentation sections, Backend Configuration and Module Configuration for more information.
grunt prompt:cleverAuthConfig
can be used to generate your config for any environment you want.store
- Session Store Driverin-memory
- Using the In-Memory Session Store.{
"clever-auth": {
"store" : "in-memory"
}
}
redis
- Using Redis to Store Sessions. (implemented using connect-redis
){
"clever-auth": {
"store" : "redis",
"redis": {
"key" : "",
"port" : "6379",
"host" : "localhost",
"prefix" : ""
}
}
}
memcache
- Using Memcache to Store Sessions. (implemented using connect-memcached
){
"clever-auth": {
"store" : "memcache",
"memcache": {
"host" : "localhost",
"port" : "11211",
"prefix" : ""
}
}
}
secretKey
- extra salt to be used to help secure any cookies.{
"clever-auth": {
"secretKey": "",
}
}
See cleverstack.io for more detailed information on the Node Seed or visit the Getting Started Guide if you have never used CleverStack before.
See our LICENSE
FAQs
CleverStack Authentication Module
The npm package clever-auth receives a total of 49 weekly downloads. As such, clever-auth popularity was classified as not popular.
We found that clever-auth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.