Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
att-express-auth
Advanced tools
Super simple oauth middleware for AT&T's alpha auth
First you have to go register your application and get a client ID and client secret. Just drop those into the code below and then just add a link or button that points to /auth
somewhere on your page and you're good to go.
npm install att-express-auth
The code below should work once you've dropped in your client id and secret:
var express = require('express'),
attAuth = require('att-express-auth'),
app = express();
// config our middleware
app.use(express.cookieParser());
app.use(express.session({ secret: 'phone phone phone' }));
app.use(attAuth.middleware({
app: app,
clientId: 'YOUR CLIENT ID',
clientSecret: 'YOUR CLIENT SECRET',
scopes: ['profile', 'addessbook', 'locker', 'messages', 'geo'],
accountsUrl: 'https://auth.tfoundry.com' // whatever accounts server you want to use, defaults to https://auth.tfoundry.com
redirectUrl: 'http://localhost:3000/secured' // whatever URL you want users to be redirected to after auth
}));
app.get('/', function (req, res) {
res.send('<h1>AT&T Express App sample</h1><a href="/auth">login</a>');
});
app.get('/login', function (req, res) {
res.send('<h1>Please login</h1><a href="/auth">login</a>');
});
app.get('/login-failed', function (req, res) {
res.send('<h1>Login failed</h1>');
});
app.get('/secured', attAuth.secure(), function (req, res) {
res.send(req.session.user);
});
app.get('/other-secured', attAuth.secure(), function (req, res) {
res.send(req.session.user);
});
app.listen(3000);
console.log('Demo AT&T auth app running on port 3000');
FAQs
Drop-in auth middleware for alpha-auth AT&T.
The npm package att-express-auth receives a total of 0 weekly downloads. As such, att-express-auth popularity was classified as not popular.
We found that att-express-auth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.