-
Notifications
You must be signed in to change notification settings - Fork 36
Confidential Computing with CoCo #671
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: main
Are you sure you want to change the base?
Conversation
|
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
| os.makedirs(workdir, exist_ok=True) | ||
| pod_path = os.path.join(workdir, "pod.yaml") | ||
| with open(pod_path, "w") as f: | ||
| f.write(contents) |
Check failure
Code scanning / CodeQL
Clear-text storage of sensitive information High
sensitive data (secret)
| @app.route("/upload", methods=["POST"]) | ||
| def upload_file(): | ||
| file = request.files["file"] | ||
| file.save(f"{file.filename}") |
Check failure
Code scanning / CodeQL
Uncontrolled data used in path expression High
user-provided value
| def upload_file(): | ||
| file = request.files["file"] | ||
| file.save(f"{file.filename}") | ||
| with open(f"{file.filename}") as f: |
Check failure
Code scanning / CodeQL
Uncontrolled data used in path expression High
No description provided.