-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wip hot fix #401
wip hot fix #401
Conversation
(req, res, next) => { | ||
passport.authenticate('link_facebook_account', { | ||
failureRedirect: | ||
(process.env.NODE_ENV === "mainnet" ? (req.origins.header.includes('https://app.satt.com') ? process.env.METAMASK_BASED_URL : process.env.BASED_URL) : process.env.BASED_URL ) + | ||
'/home/settings/social-networks?message=access-denied', | ||
})(req, res, next) | ||
}, |
Check failure
Code scanning / CodeQL
Missing rate limiting High
authorization
(req, res, next) => { | ||
passport.authenticate('link_google_account', { | ||
failureRedirect: | ||
(process.env.NODE_ENV === "mainnet" ? (req.origins.header.includes('https://app.satt.com') ? process.env.METAMASK_BASED_URL : process.env.BASED_URL) : process.env.BASED_URL ) + | ||
'/home/settings/social-networks?message=access-denied', | ||
})(req,res,next) | ||
}, |
Check failure
Code scanning / CodeQL
Missing rate limiting High
authorization
(req, res, next) => { | ||
passport.authenticate('link_facebook_account', { | ||
failureRedirect: | ||
(process.env.NODE_ENV === "mainnet" ? (req.origins.header.includes('https://app.satt.com') ? process.env.METAMASK_BASED_URL : process.env.BASED_URL) : process.env.BASED_URL ) + |
Check failure
Code scanning / CodeQL
Incomplete URL substring sanitization High
https://app.satt.com
(req, res, next) => { | ||
passport.authenticate('link_google_account', { | ||
failureRedirect: | ||
(process.env.NODE_ENV === "mainnet" ? (req.origins.header.includes('https://app.satt.com') ? process.env.METAMASK_BASED_URL : process.env.BASED_URL) : process.env.BASED_URL ) + |
Check failure
Code scanning / CodeQL
Incomplete URL substring sanitization High
No description provided.