-
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
Arthera evm integration #419
Conversation
|
||
router.post( | ||
'/code-export-keystore', | ||
verifyAuth, |
Check failure
Code scanning / CodeQL
Missing rate limiting High
authorization
'/code-export-keystore', | ||
verifyAuth, | ||
getCodeKeyStoreValidation, | ||
getCodeKeyStore |
Check failure
Code scanning / CodeQL
Missing rate limiting High
a database access
This route handler performs
authorization
router.get('/nfts/:address', checkEVMValidation,getNftByAddress) | ||
router.post( | ||
'/export-keystore', | ||
verifyAuth, |
Check failure
Code scanning / CodeQL
Missing rate limiting High
authorization
'/export-keystore', | ||
verifyAuth, | ||
exportKeyStoreValidation, | ||
exportKeyStore |
Check failure
Code scanning / CodeQL
Missing rate limiting High
a database access
This route handler performs
a database access
|
||
router.post('/export-keystore-mobile', verifyAuth, exportKeyStoreMobile) |
Check failure
Code scanning / CodeQL
Missing rate limiting High
authorization
{ hash: hash }, | ||
{ $set: { retrieved: true } } | ||
) | ||
await Campaigns.updateOne({ hash: hash }, { $set: { retrieved: true } }) |
Check failure
Code scanning / CodeQL
Database query built from user-controlled sources High
user-provided value
*/ | ||
router.post( | ||
'/arthera/approval', | ||
verifyAuth, |
Check failure
Code scanning / CodeQL
Missing rate limiting High
authorization
'/arthera/approval', | ||
verifyAuth, | ||
evmApprovalValidation, | ||
artheraApproval |
Check failure
Code scanning / CodeQL
Missing rate limiting High
a database access
This route handler performs
a system command
* "500": | ||
* description: error:"error" | ||
*/ | ||
router.post('/arthera/allow', verifyAuth, artheraAllow) |
Check failure
Code scanning / CodeQL
Missing rate limiting High
authorization
* "500": | ||
* description: error:"error" | ||
*/ | ||
router.post('/arthera/allow', verifyAuth, artheraAllow) |
Check failure
Code scanning / CodeQL
Missing rate limiting High
No description provided.