merge upstream - #12
Merged
Merged
Conversation
… RCE (NVBug 6119291) Fixes insecure YAML deserialization vulnerability reported via Intigriti (NVIDIA-WHT18LD0). yaml.load() with FullLoader (or no Loader) allows Python object construction tags (!!python/object/new:...) enabling arbitrary code execution. Affected files: - scripts/k8s/update_kubeflow_config.py (2 sinks: outer + inner yaml.load) - workloads/examples/k8s/kubeflow-pipeline-deploy/triton_ops.py (1 sink: no Loader) Fix: replace all instances with yaml.safe_load() which disables Python-specific type constructors entirely.
fix: replace yaml.load with yaml.safe_load to prevent deserialization…
chore(release): bump component versions for 26.05
release: 26.05 notes and README tag
feat(dgx): update DGX software stack role
Refresh CUDA example images
Refresh DCGM exporter
Add Ubuntu 24.04 NVIDIA Container Toolkit path
Retire legacy PXE provisioning paths
docs: clarify legacy CI and virtual lab status
Support Red Hat NVIDIA Container Toolkit path
Refresh Container Toolkit airgap docs
docs: clarify current OS validation targets
parse_versioning kept the last json.loads-parseable line and then indexed it with a string key. When that line parsed to a non-dict (e.g. a JSON array), the index raised an uncaught TypeError because only KeyError was handled, aborting the task. Guard that the parsed value is a dict before indexing and fall through to the existing 'no JSON could be loaded' path otherwise. Adds a regression test covering the non-dict input case.
scripts/common.sh printed an always-empty DEEPOPS_VERSION unless a user happened to set it in config/env.sh. Default it to the checkout's git tag description (git describe --tags --always) with an unknown fallback, keep the env.sh override, and document the variable in config.example/env.sh.
…or-6394703 fix: handle non-dict parsed JSON in firmware version manifest parser
Refresh workload, RoCE, and registry examples
chore(release): bump component versions for 26.07
Clarify Kubernetes storage helper support boundaries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.