-
Notifications
You must be signed in to change notification settings - Fork 3
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
CLI: Auth0 integration #334
base: main
Are you sure you want to change the base?
Conversation
…loud-sdk into od-feat-pcc-1882
const response = await axios.post(url, { | ||
grant_type: "refresh_token", | ||
client_id: apiConfig.auth0ClientId, | ||
refresh_token: refreshToken, | ||
}); |
Check warning
Code scanning / CodeQL
File data in outbound network request Medium
file data
|
||
const server = http.createServer(async (req, res) => { | ||
try { | ||
if (!req.url) { |
Check failure
Code scanning / CodeQL
User-controlled bypass of security check High
action
user-provided value
{ | ||
refreshToken, | ||
}, |
Check warning
Code scanning / CodeQL
File data in outbound network request Medium
file data
|
||
const server = http.createServer(async (req, res) => { | ||
try { | ||
if (!req.url) { |
Check failure
Code scanning / CodeQL
User-controlled bypass of security check High
action
user-provided value
} catch (_err) { | ||
return null; | ||
} | ||
writeFileSync(filePath, JSON.stringify(payload, null, 2)); |
Check warning
Code scanning / CodeQL
Network data written to file Medium
Untrusted data
Write to file system depends on
Untrusted data
Write to file system depends on
No description provided.