-
Notifications
You must be signed in to change notification settings - Fork 115
[Demo] #5747
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
base: master
Are you sure you want to change the base?
[Demo] #5747
Conversation
|
|
||
| except Exception as e: | ||
| logging.exception("Error verifying claim") | ||
| return jsonify({"error": str(e)}), 500 |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
| return jsonify({"claims": claims}) | ||
| except Exception as e: | ||
| logging.exception("Error extracting claims") | ||
| return jsonify({"error": str(e)}), 500 |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
| tab.url.startsWith('about:') || | ||
| tab.url.startsWith('view-source:') || | ||
| tab.url.startsWith('https://chrome.google.com/webstore') || | ||
| tab.url.startsWith('https://chromewebstore.google.com')) { |
Check failure
Code scanning / CodeQL
Incomplete URL substring sanitization High
https://chromewebstore.google.com
| } else if (event.data.type === 'VERIFY_ERROR') { | ||
| loading.style.display = 'none'; | ||
| verifyBtn.disabled = false; | ||
| resultsDiv.innerHTML = `<div class="error-message" style="color: #d93025; padding: 10px; background: #fce8e6; border-radius: 4px;">${event.data.error}</div>`; |
Check failure
Code scanning / CodeQL
Client-side cross-site scripting High
user-provided value
| iframe.contentWindow.postMessage({ | ||
| type: 'SET_API_KEY', | ||
| key: geminiApiKey | ||
| }, '*'); |
Check warning
Code scanning / CodeQL
Cross-window communication with unrestricted target origin Medium
Sensitive data
Sensitive data
Sensitive data
| iframe.contentWindow.postMessage({ | ||
| type: 'SET_API_KEY', | ||
| key: geminiApiKey | ||
| }, '*'); |
Check warning
Code scanning / CodeQL
Cross-window communication with unrestricted target origin Medium
Sensitive data
Sensitive data
Sensitive data
…ct class. Cleanup overall
No description provided.