You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Answering the LDM boot gate with "Keep on SATA" left the 1 GB virtio probe disk
attached, relying on delete_on_termination — which only fires when the instance is
eventually deleted, so it lingered for the life of the VM. It is now hot-detached and
deleted. Safe while running: the probe is a raw, unformatted disk and viostor stays
in the DriverStore whether or not the device is present.
Needs two server-scoped OpenStack operations. DetachVolumeFromVM and WaitForVolume
resolve the instance via GetCurrentInstanceUUID — the vJailbreak appliance, not the
migrated VM — so they detach from the wrong server and then wait on an attachment that
is never theirs to release.
Best effort, bounded at 2 minutes: a guest that never loaded viostor may not
acknowledge the unplug, which is usually why "Keep on SATA" was chosen. On expiry the
probe stays attached as before.
⚠️ no_baseline: No baseline available (all vulnerabilities treated as new)
🚨 Added Vulnerabilities
Trivy (Dependencies) - 4 Added
Target:k8s/migration/go.mod Package: golang.org/x/net v0.47.0 Vulnerability:CVE-2026-46600 Severity: HIGH Title: golang.org/x/net/dns/dnsmessage: golang.org/x/net/dns/dnsmessage: Denial of Service via invalid DNS record parsing
Target:pkg/common/go.mod Package: golang.org/x/net v0.47.0 Vulnerability:CVE-2026-46600 Severity: HIGH Title: golang.org/x/net/dns/dnsmessage: golang.org/x/net/dns/dnsmessage: Denial of Service via invalid DNS record parsing
Target:pkg/vpwned/go.mod Package: golang.org/x/net v0.47.0 Vulnerability:CVE-2026-46600 Severity: HIGH Title: golang.org/x/net/dns/dnsmessage: golang.org/x/net/dns/dnsmessage: Denial of Service via invalid DNS record parsing
Target:v2v-helper/go.mod Package: golang.org/x/net v0.47.0 Vulnerability:CVE-2026-46600 Severity: HIGH Title: golang.org/x/net/dns/dnsmessage: golang.org/x/net/dns/dnsmessage: Denial of Service via invalid DNS record parsing
Only HIGH and CRITICAL severity vulnerabilities are tracked Baseline: 642e5fcc50500a271fedb5d39bf61eb08763b428
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
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.
What this PR does / why we need it
Answering the LDM boot gate with "Keep on SATA" left the 1 GB virtio probe disk
attached, relying on
delete_on_termination— which only fires when the instance iseventually deleted, so it lingered for the life of the VM. It is now hot-detached and
deleted. Safe while running: the probe is a raw, unformatted disk and
viostorstaysin the DriverStore whether or not the device is present.
Needs two server-scoped OpenStack operations.
DetachVolumeFromVMandWaitForVolumeresolve the instance via
GetCurrentInstanceUUID— the vJailbreak appliance, not themigrated VM — so they detach from the wrong server and then wait on an attachment that
is never theirs to release.
Best effort, bounded at 2 minutes: a guest that never loaded
viostormay notacknowledge the unplug, which is usually why "Keep on SATA" was chosen. On expiry the
probe stays attached as before.
fixes #2290
Testing Done