mirror of
https://github.com/speed47/spectre-meltdown-checker.git
synced 2026-06-06 14:43:04 +02:00
Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f4801e6a7 | |||
| 9a3688b6fd | |||
| 0c89d162a3 | |||
| 02fa416bab | |||
| 1c067add59 | |||
| 00bb4a951c | |||
| 43d5b77885 | |||
| 78a6e4a418 | |||
| 5af1a9fec9 | |||
| b93027640f | |||
| 5c27284119 | |||
| f2e5999fc0 | |||
| 25f20b8860 | |||
| 77e3dbd6b2 | |||
| 8a6f9d5d63 | |||
| f2d871acff | |||
| 83ebe2f75f | |||
| a05f8aab34 | |||
| f9c3d19f72 | |||
| 8389d9593c | |||
| 3a822fdcf2 |
@@ -0,0 +1,41 @@
|
|||||||
|
name: autoupdate
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '42 9 * * *'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
autoupdate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v5
|
||||||
|
with:
|
||||||
|
ref: source
|
||||||
|
- name: Install prerequisites
|
||||||
|
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends iucode-tool sqlite3 unzip shfmt
|
||||||
|
- name: Update microcode versions
|
||||||
|
run: ./scripts/update_mcedb.sh
|
||||||
|
- name: Update Intel models
|
||||||
|
run: ./scripts/update_intel_models.sh
|
||||||
|
- name: Check git diff
|
||||||
|
id: diff
|
||||||
|
run: |
|
||||||
|
echo change="$(git diff | awk '/MCEDB/ { if(V) { print V" to "$4; exit } else { V=$4 } }')" >> "$GITHUB_OUTPUT"
|
||||||
|
echo nbdiff="$(git diff | grep -cE -- '^\+# [AI],')" >> "$GITHUB_OUTPUT"
|
||||||
|
git diff
|
||||||
|
cat "$GITHUB_OUTPUT"
|
||||||
|
- name: Create Pull Request if needed
|
||||||
|
if: steps.diff.outputs.nbdiff != '0'
|
||||||
|
uses: peter-evans/create-pull-request@v7
|
||||||
|
with:
|
||||||
|
branch: autoupdate-fwdb
|
||||||
|
commit-message: "update: fwdb from ${{ steps.diff.outputs.change }}, ${{ steps.diff.outputs.nbdiff }} microcode changes"
|
||||||
|
title: "[Auto] Update fwdb from ${{ steps.diff.outputs.change }}"
|
||||||
|
body: |
|
||||||
|
Automated PR to update fwdb from ${{ steps.diff.outputs.change }}
|
||||||
|
Detected ${{ steps.diff.outputs.nbdiff }} microcode changes
|
||||||
@@ -25,81 +25,21 @@ jobs:
|
|||||||
mv spectre-meltdown-checker.sh dist/
|
mv spectre-meltdown-checker.sh dist/
|
||||||
- name: check direct execution
|
- name: check direct execution
|
||||||
run: |
|
run: |
|
||||||
set -x
|
|
||||||
expected=$(cat .github/workflows/expected_cve_count)
|
expected=$(cat .github/workflows/expected_cve_count)
|
||||||
cd dist
|
cd dist
|
||||||
|
nb=$(sudo ./spectre-meltdown-checker.sh --batch json | jq '.[]|.CVE' | wc -l)
|
||||||
json=$(sudo ./spectre-meltdown-checker.sh --batch json || true)
|
|
||||||
|
|
||||||
# Validate JSON is well-formed (and show it if not)
|
|
||||||
echo "$json" | jq . >/dev/null || {
|
|
||||||
echo "Invalid JSON produced by spectre-meltdown-checker.sh"
|
|
||||||
echo "$json"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# Validate required keys exist
|
|
||||||
for key in meta system cpu cpu_microcode vulnerabilities; do
|
|
||||||
echo "$json" | jq -e ".$key" >/dev/null || {
|
|
||||||
echo "Missing top-level key: $key"
|
|
||||||
echo "$json" | jq .
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
done
|
|
||||||
|
|
||||||
# Use -r to get raw scalars (no quotes)
|
|
||||||
fmtver=$(echo "$json" | jq -r '.meta.format_version // empty')
|
|
||||||
if [ "$fmtver" != "1" ]; then
|
|
||||||
echo "Unexpected format_version: $fmtver"
|
|
||||||
echo "$json" | jq .
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
run_as_root=$(echo "$json" | jq -r '.meta.run_as_root // empty')
|
|
||||||
if [ "$run_as_root" != "true" ]; then
|
|
||||||
echo "Expected run_as_root=true, got: $run_as_root"
|
|
||||||
echo "$json" | jq .
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
mocked=$(echo "$json" | jq -r '.meta.mocked // "false"')
|
|
||||||
if [ "$mocked" = "true" ]; then
|
|
||||||
echo "mocked=true must never appear in production"
|
|
||||||
echo "$json" | jq .
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Count CVEs robustly (as a number)
|
|
||||||
nb=$(echo "$json" | jq -r '[.vulnerabilities[].cve] | length')
|
|
||||||
if [ "$nb" -ne "$expected" ]; then
|
if [ "$nb" -ne "$expected" ]; then
|
||||||
echo "Invalid number of CVEs reported: $nb instead of $expected"
|
echo "Invalid number of CVEs reported: $nb instead of $expected"
|
||||||
echo "$json" | jq '.vulnerabilities[].cve'
|
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "OK $nb CVEs reported"
|
echo "OK $nb CVEs reported"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Validate json-terse backward compatibility
|
|
||||||
nb_terse=$(sudo ./spectre-meltdown-checker.sh --batch json-terse | jq -r 'map(.CVE) | length')
|
|
||||||
if [ "$nb_terse" -ne "$expected" ]; then
|
|
||||||
echo "json-terse backward compat broken: $nb_terse CVEs instead of $expected"
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "OK json-terse backward compat: $nb_terse CVEs"
|
|
||||||
fi
|
|
||||||
- name: check docker compose run execution
|
- name: check docker compose run execution
|
||||||
run: |
|
run: |
|
||||||
expected=$(cat .github/workflows/expected_cve_count)
|
expected=$(cat .github/workflows/expected_cve_count)
|
||||||
cd dist
|
cd dist
|
||||||
docker compose build
|
docker compose build
|
||||||
json=$(docker compose run --rm spectre-meltdown-checker --batch json || true)
|
nb=$(docker compose run --rm spectre-meltdown-checker --batch json | jq '.[]|.CVE' | wc -l)
|
||||||
echo "$json" | jq . > /dev/null
|
|
||||||
fmtver=$(echo "$json" | jq '.meta.format_version')
|
|
||||||
if [ "$fmtver" != "1" ]; then
|
|
||||||
echo "Unexpected format_version: $fmtver"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
nb=$(echo "$json" | jq '.vulnerabilities[].cve' | wc -l)
|
|
||||||
if [ "$nb" -ne "$expected" ]; then
|
if [ "$nb" -ne "$expected" ]; then
|
||||||
echo "Invalid number of CVEs reported: $nb instead of $expected"
|
echo "Invalid number of CVEs reported: $nb instead of $expected"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -111,14 +51,7 @@ jobs:
|
|||||||
expected=$(cat .github/workflows/expected_cve_count)
|
expected=$(cat .github/workflows/expected_cve_count)
|
||||||
cd dist
|
cd dist
|
||||||
docker build -t spectre-meltdown-checker .
|
docker build -t spectre-meltdown-checker .
|
||||||
json=$(docker run --rm --privileged -v /boot:/boot:ro -v /dev/cpu:/dev/cpu:ro -v /lib/modules:/lib/modules:ro spectre-meltdown-checker --batch json || true)
|
nb=$(docker run --rm --privileged -v /boot:/boot:ro -v /dev/cpu:/dev/cpu:ro -v /lib/modules:/lib/modules:ro spectre-meltdown-checker --batch json | jq '.[]|.CVE' | wc -l)
|
||||||
echo "$json" | jq . > /dev/null
|
|
||||||
fmtver=$(echo "$json" | jq '.meta.format_version')
|
|
||||||
if [ "$fmtver" != "1" ]; then
|
|
||||||
echo "Unexpected format_version: $fmtver"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
nb=$(echo "$json" | jq '.vulnerabilities[].cve' | wc -l)
|
|
||||||
if [ "$nb" -ne "$expected" ]; then
|
if [ "$nb" -ne "$expected" ]; then
|
||||||
echo "Invalid number of CVEs reported: $nb instead of $expected"
|
echo "Invalid number of CVEs reported: $nb instead of $expected"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -159,19 +92,15 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
- name: create a pull request to ${{ github.ref_name }}-build
|
- name: create a pull request to ${{ github.ref_name }}-build
|
||||||
run: |
|
run: |
|
||||||
# all the files in dist/* and .github/* must be moved as is to the -build branch root, move them out for now:
|
|
||||||
tmpdir=$(mktemp -d)
|
tmpdir=$(mktemp -d)
|
||||||
mv ./dist/* .github $tmpdir/
|
mv ./dist/* .github $tmpdir/
|
||||||
rm -rf ./dist
|
rm -rf ./dist
|
||||||
|
|
||||||
git fetch origin ${{ github.ref_name }}-build
|
git fetch origin ${{ github.ref_name }}-build
|
||||||
git checkout -f ${{ github.ref_name }}-build
|
git checkout -f ${{ github.ref_name }}-build
|
||||||
rm -rf doc/
|
|
||||||
mv $tmpdir/* .
|
mv $tmpdir/* .
|
||||||
rm -rf src/ scripts/ img/
|
rm -rf src/
|
||||||
mkdir -p .github
|
mkdir -p .github
|
||||||
rsync -vaP --delete $tmpdir/.github/ .github/
|
rsync -vaP --delete $tmpdir/.github/ .github/
|
||||||
|
|
||||||
git add --all
|
git add --all
|
||||||
echo =#=#= DIFF CACHED
|
echo =#=#= DIFF CACHED
|
||||||
git diff --cached
|
git diff --cached
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
32
|
26
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
name: 'Manage stale issues and PRs'
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '37 7 * * *'
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
action:
|
||||||
|
description: "dry-run"
|
||||||
|
required: true
|
||||||
|
default: "dryrun"
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- dryrun
|
||||||
|
- apply
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stale:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v10
|
||||||
|
with:
|
||||||
|
any-of-labels: 'needs-more-info,answered'
|
||||||
|
labels-to-remove-when-unstale: 'needs-more-info,answered'
|
||||||
|
days-before-stale: 30
|
||||||
|
days-before-close: 7
|
||||||
|
stale-issue-label: stale
|
||||||
|
remove-stale-when-updated: true
|
||||||
|
debug-only: ${{ case(inputs.action == 'dryrun', true, false) }}
|
||||||
@@ -0,0 +1,190 @@
|
|||||||
|
name: Online search for vulns
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '42 8 * * *'
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
model:
|
||||||
|
description: 'Claude model to use (cron runs default to Sonnet)'
|
||||||
|
required: false
|
||||||
|
type: choice
|
||||||
|
default: claude-sonnet-4-6
|
||||||
|
options:
|
||||||
|
- claude-sonnet-4-6
|
||||||
|
- claude-opus-4-7
|
||||||
|
- claude-haiku-4-5-20251001
|
||||||
|
window_hours:
|
||||||
|
description: 'Lookback window in hours (cron runs use 25)'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: '25'
|
||||||
|
reconsider_age_days:
|
||||||
|
description: 'Only reconsider backlog entries last reviewed ≥ N days ago (0 = all, default 7)'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: '7'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
actions: read # needed to list/download previous run artifacts
|
||||||
|
id-token: write # needed by claude-code-action for OIDC auth
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: vuln-watch
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
watch:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 20
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# The scripts driving this workflow live on the `vuln-watch` branch so
|
||||||
|
# they don't clutter master (which is what ships to production). The
|
||||||
|
# workflow file itself MUST stay on the default branch, as GitHub only
|
||||||
|
# honors `schedule:` triggers on the default branch.
|
||||||
|
- name: Checkout vuln-watch branch (scripts + prompt)
|
||||||
|
uses: actions/checkout@v5
|
||||||
|
with:
|
||||||
|
ref: vuln-watch
|
||||||
|
fetch-depth: 1
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.12'
|
||||||
|
|
||||||
|
- name: Install Python dependencies
|
||||||
|
run: python -m pip install --quiet feedparser
|
||||||
|
|
||||||
|
# ---- Load previous state ---------------------------------------------
|
||||||
|
# Find the most recent successful run of THIS workflow (other than the
|
||||||
|
# current one) and pull its `vuln-watch-state` artifact. On the very
|
||||||
|
# first run there will be none — that's fine, we start empty.
|
||||||
|
- name: Find previous successful run id
|
||||||
|
id: prev
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
run_id=$(gh run list \
|
||||||
|
--workflow="${{ github.workflow }}" \
|
||||||
|
--status=success \
|
||||||
|
--limit 1 \
|
||||||
|
--json databaseId \
|
||||||
|
--jq '.[0].databaseId // empty')
|
||||||
|
echo "run_id=${run_id}" >> "$GITHUB_OUTPUT"
|
||||||
|
if [ -n "$run_id" ]; then
|
||||||
|
echo "Found previous successful run: $run_id"
|
||||||
|
else
|
||||||
|
echo "No previous successful run — starting from empty state."
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Download previous state artifact
|
||||||
|
if: steps.prev.outputs.run_id != ''
|
||||||
|
uses: actions/download-artifact@v5
|
||||||
|
continue-on-error: true # tolerate retention expiry
|
||||||
|
with:
|
||||||
|
name: vuln-watch-state
|
||||||
|
path: state/
|
||||||
|
run-id: ${{ steps.prev.outputs.run_id }}
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# ---- Fetch + diff (token-free; runs every time) ---------------------
|
||||||
|
# Performs conditional GETs (ETag / If-Modified-Since) against every
|
||||||
|
# source, parses RSS/Atom/HTML, dedups against state.seen + state.aliases,
|
||||||
|
# applies the time-window filter, and emits new_items.json.
|
||||||
|
# Updates state.sources (HTTP cache metadata + per-source high-water
|
||||||
|
# marks) in place so the cache survives even when Claude doesn't run.
|
||||||
|
- name: Fetch + diff all sources
|
||||||
|
id: diff
|
||||||
|
env:
|
||||||
|
SCAN_DATE: ${{ github.run_started_at }}
|
||||||
|
# Cron runs have no `inputs` context, so the fallback kicks in.
|
||||||
|
WINDOW_HOURS: ${{ inputs.window_hours || '25' }}
|
||||||
|
RECONSIDER_AGE_DAYS: ${{ inputs.reconsider_age_days || '7' }}
|
||||||
|
run: python -m scripts.vuln_watch.fetch_and_diff
|
||||||
|
|
||||||
|
# ---- Fetch checker code so Claude can grep it for coverage ---------
|
||||||
|
# The orphan vuln-watch branch has none of the actual checker code,
|
||||||
|
# so we pull the `test` branch (the dev branch where coded-but-
|
||||||
|
# unreleased CVE checks live) into ./checker/. The prompt tells
|
||||||
|
# Claude this is the canonical source of truth for "is CVE-X already
|
||||||
|
# implemented?". Only fetched on days with something to classify.
|
||||||
|
- name: Checkout checker code (test branch) for coverage grep
|
||||||
|
if: steps.diff.outputs.new_count != '0' || steps.diff.outputs.reconsider_count != '0'
|
||||||
|
uses: actions/checkout@v5
|
||||||
|
with:
|
||||||
|
ref: test
|
||||||
|
path: checker
|
||||||
|
fetch-depth: 1
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
# ---- Classify new items with Claude (skipped when nothing is new) ---
|
||||||
|
# Model selection: a manual workflow_dispatch run picks from a dropdown
|
||||||
|
# (defaulting to Sonnet). Scheduled cron runs have no `inputs` context,
|
||||||
|
# so the `|| 'claude-sonnet-4-6'` fallback kicks in — cron always uses
|
||||||
|
# Sonnet to keep the daily cost floor low.
|
||||||
|
- name: Run classifier with Claude
|
||||||
|
id: classify
|
||||||
|
if: steps.diff.outputs.new_count != '0' || steps.diff.outputs.reconsider_count != '0'
|
||||||
|
uses: anthropics/claude-code-action@v1
|
||||||
|
env:
|
||||||
|
SCAN_DATE: ${{ github.run_started_at }}
|
||||||
|
with:
|
||||||
|
prompt: |
|
||||||
|
Read the full task instructions from scripts/daily_vuln_watch_prompt.md
|
||||||
|
and execute them end-to-end. Your input is new_items.json (already
|
||||||
|
deduped, windowed, and pre-filtered — do NOT re-fetch sources).
|
||||||
|
Write the three watch_${TODAY}_*.md files and classifications.json.
|
||||||
|
Use $SCAN_DATE as the canonical timestamp.
|
||||||
|
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
||||||
|
# model + tool allowlist pass through claude_args (v1 dropped the
|
||||||
|
# dedicated `model:` and `allowed_tools:` inputs). Job-level
|
||||||
|
# `timeout-minutes: 20` above bounds total runtime.
|
||||||
|
claude_args: |
|
||||||
|
--model ${{ inputs.model || 'claude-sonnet-4-6' }}
|
||||||
|
--allowedTools "Read,Write,Edit,Bash,Grep,Glob,WebFetch"
|
||||||
|
|
||||||
|
- name: Upload Claude execution log
|
||||||
|
if: ${{ always() && steps.classify.outputs.execution_file != '' }}
|
||||||
|
uses: actions/upload-artifact@v5
|
||||||
|
with:
|
||||||
|
name: claude-execution-log-${{ github.run_id }}
|
||||||
|
path: ${{ steps.classify.outputs.execution_file }}
|
||||||
|
retention-days: 30
|
||||||
|
if-no-files-found: warn
|
||||||
|
|
||||||
|
# ---- Merge classifications back into state --------------------------
|
||||||
|
# Also writes stub watch_*.md files if the classify step was skipped, so
|
||||||
|
# the report artifact is consistent across runs.
|
||||||
|
- name: Merge classifications into state
|
||||||
|
if: always()
|
||||||
|
env:
|
||||||
|
SCAN_DATE: ${{ github.run_started_at }}
|
||||||
|
run: python -m scripts.vuln_watch.merge_state
|
||||||
|
|
||||||
|
- name: Upload new state artifact
|
||||||
|
if: always()
|
||||||
|
uses: actions/upload-artifact@v5
|
||||||
|
with:
|
||||||
|
name: vuln-watch-state
|
||||||
|
path: state/seen.json
|
||||||
|
retention-days: 90
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
|
- name: Upload daily report
|
||||||
|
if: always()
|
||||||
|
uses: actions/upload-artifact@v5
|
||||||
|
with:
|
||||||
|
name: vuln-watch-report-${{ github.run_id }}
|
||||||
|
path: |
|
||||||
|
watch_*.md
|
||||||
|
current_toimplement.md
|
||||||
|
current_tocheck.md
|
||||||
|
new_items.json
|
||||||
|
classifications.json
|
||||||
|
retention-days: 90
|
||||||
|
if-no-files-found: warn
|
||||||
@@ -40,14 +40,6 @@ CVE | Name | Aliases
|
|||||||
[CVE-2024-45332](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-45332) | Branch Privilege Injection | BPI
|
[CVE-2024-45332](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-45332) | Branch Privilege Injection | BPI
|
||||||
[CVE-2025-54505](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-54505) | AMD Zen1 Floating-Point Divider Stale Data Leak | FPDSS
|
[CVE-2025-54505](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-54505) | AMD Zen1 Floating-Point Divider Stale Data Leak | FPDSS
|
||||||
|
|
||||||
The following entries are ARM64 silicon errata that the kernel actively works around. They have no assigned CVE; they are tracked only by ARM's erratum numbers. Select them with `--errata <number>` or the associated `--variant` mnemonic.
|
|
||||||
|
|
||||||
ID | Name | Affected cores
|
|
||||||
-- | ---- | --------------
|
|
||||||
CVE-0001-0001 | Speculative AT TLB corruption (errata 1165522, 1319367, 1319537, 1530923) | Cortex-A55/A57/A72/A76
|
|
||||||
CVE-0001-0002 | Speculative unprivileged load (errata 2966298, 3117295) | Cortex-A510/A520
|
|
||||||
CVE-0001-0003 | MSR SSBS not self-synchronizing (erratum 3194386 + siblings) | Cortex-A76/A77/A78/A78C/A710/A715/A720/A720AE/A725, X1/X1C/X2/X3/X4/X925, Neoverse-N1/N2/N3/V1/V2/V3/V3AE
|
|
||||||
|
|
||||||
## Am I at risk?
|
## Am I at risk?
|
||||||
|
|
||||||
Depending on your situation, the table below answers whether an attacker in a given position can extract data from a given target.
|
Depending on your situation, the table below answers whether an attacker in a given position can extract data from a given target.
|
||||||
|
|||||||
@@ -188,18 +188,6 @@ Observable timing discrepancy in some Intel processors allows an authenticated u
|
|||||||
|
|
||||||
**Why out of scope:** Like CVE-2020-24511, this is a microcode-only fix with no Linux kernel sysfs entry, no CPUID bit, no MSR, and no kernel configuration option. Detection would require a per-CPU-stepping microcode version lookup table. The vulnerability has low severity (CVSS 2.8) and practical exploitation is limited. Intel dropped microcode support for Sandy Bridge and Ivy Bridge, leaving those generations permanently vulnerable.
|
**Why out of scope:** Like CVE-2020-24511, this is a microcode-only fix with no Linux kernel sysfs entry, no CPUID bit, no MSR, and no kernel configuration option. Detection would require a per-CPU-stepping microcode version lookup table. The vulnerability has low severity (CVSS 2.8) and practical exploitation is limited. Intel dropped microcode support for Sandy Bridge and Ivy Bridge, leaving those generations permanently vulnerable.
|
||||||
|
|
||||||
## CVE-2021-26314 / CVE-2021-26313 — Floating-Point Value Injection (FPVI) and Speculative Code Store Bypass (SCSB)
|
|
||||||
|
|
||||||
- **Bulletin:** [AMD-SB-1003](https://www.amd.com/en/resources/product-security/bulletin/amd-sb-1003.html) (FPVI and SCSB); [AMD-SB-7050](https://www.amd.com/en/resources/product-security/bulletin/amd-sb-7050.html) (FPVI variant, informational)
|
|
||||||
- **Intel advisory:** [Floating Point Value Injection](https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/advisory-guidance/floating-point-value-injection.html)
|
|
||||||
- **Research paper:** [Rage Against the Machine Clear (FPVI/SCSB) — VUSec, USENIX Security '21](https://www.vusec.net/projects/fpvi-scsb/)
|
|
||||||
- **Affected CPUs:** All supported AMD CPU products; Intel CPUs (FPVI)
|
|
||||||
- **CVSS:** 5.5 (Medium) for both
|
|
||||||
|
|
||||||
FPVI (CVE-2021-26314) lets an attacker inject arbitrary floating-point values into the transient execution window opened by a floating-point machine clear, so that dependent operations transiently compute on attacker-influenced values that can then be inferred through a microarchitectural covert channel. SCSB (CVE-2021-26313) is the companion vulnerability where overwritten instructions may still be executed speculatively. AMD-SB-7050 documents an FPVI variant (from the "TREVEX" detection-framework paper) that can be triggered without denormal inputs; AMD considers it to fall within the existing scope of CVE-2021-26314 and assigned it no new CVE, classifying it as informational only.
|
|
||||||
|
|
||||||
**Why out of scope:** The mitigation responsibility falls on individual software, not on the kernel or microcode. Both AMD and Intel recommend that software vendors analyze their code for vulnerable speculative floating-point sequences and insert an `LFENCE` to serialize execution. No microcode update, no CPUID flag, no MSR, and no kernel configuration option was issued, and there is no `/sys/devices/system/cpu/vulnerabilities/` entry for FPVI or SCSB — the kernel never added one, because the fix is not a kernel-level control. This is the same situation as [SLAM (CVE-2020-12965)](#cve-2020-12965--transient-execution-of-non-canonical-accesses-slam) and "Take A Way": the vendor's guidance is "software inserts LFENCE in its own code," leaving nothing for this tool to check. The AMD-SB-7050 variant adds nothing detectable, as it is informational and reuses the existing (software-only) FPVI guidance.
|
|
||||||
|
|
||||||
## CVE-2021-26318 — AMD Prefetch Attacks through Power and Time
|
## CVE-2021-26318 — AMD Prefetch Attacks through Power and Time
|
||||||
|
|
||||||
- **Issue:** [#412](https://github.com/speed47/spectre-meltdown-checker/issues/412)
|
- **Issue:** [#412](https://github.com/speed47/spectre-meltdown-checker/issues/412)
|
||||||
@@ -319,24 +307,3 @@ A weakness in AMD's microcode signature verification (AES-CMAC hash) allows load
|
|||||||
Exploits a synchronization failure in the AMD stack engine via an undocumented MSR bit, targeting AMD SEV-SNP confidential VMs. Requires hypervisor-level (ring 0) access.
|
Exploits a synchronization failure in the AMD stack engine via an undocumented MSR bit, targeting AMD SEV-SNP confidential VMs. Requires hypervisor-level (ring 0) access.
|
||||||
|
|
||||||
**Why out of scope:** Not a transient/speculative execution side channel. This is an architectural attack on AMD SEV-SNP confidential computing that requires hypervisor access, which is outside the threat model of this tool.
|
**Why out of scope:** Not a transient/speculative execution side channel. This is an architectural attack on AMD SEV-SNP confidential computing that requires hypervisor access, which is outside the threat model of this tool.
|
||||||
|
|
||||||
## CVE-2025-52533 — AMD On-Chip Debug Interface Improper Access Control
|
|
||||||
|
|
||||||
- **Advisory:** [NVD CVE-2025-52533](https://nvd.nist.gov/vuln/detail/CVE-2025-52533)
|
|
||||||
- **Affected CPUs:** AMD (various; on-chip debug/test interface)
|
|
||||||
- **CVSS:** 8.7 (High)
|
|
||||||
- **CWE:** [CWE-1191 (On-Chip Debug and Test Interface With Improper Access Control)](https://cwe.mitre.org/data/definitions/1191.html)
|
|
||||||
|
|
||||||
Improper access control in an on-chip debug interface could allow a privileged attacker to enable a debug interface and potentially compromise data confidentiality or integrity.
|
|
||||||
|
|
||||||
**Why out of scope:** Not a transient or speculative execution vulnerability — this is an access-control flaw in a hardware debug/test interface (CWE-1191), with no side-channel or speculative execution component, and it requires a privileged attacker. There is no Linux kernel sysfs entry, no CPUID flag, and no kernel-side mitigation: the fix is delivered as platform/PSP firmware and proven via remote attestation against AMD's Key Distribution Service (KDS), with several SKUs marked "no fix planned." None of this is detectable by this tool, which inspects OS-loadable microcode revisions, CPUID/MSR bits, kernel capabilities, and sysfs.
|
|
||||||
|
|
||||||
## No CVE — Jump Conditional Code (JCC) Erratum
|
|
||||||
|
|
||||||
- **Issue:** [#329](https://github.com/speed47/spectre-meltdown-checker/issues/329)
|
|
||||||
- **Intel whitepaper:** [Mitigations for Jump Conditional Code Erratum](https://www.intel.com/content/dam/support/us/en/documents/processors/mitigations-jump-conditional-code-erratum.pdf)
|
|
||||||
- **Affected CPUs:** Intel 6th through 10th generation Core and Xeon processors (Skylake through Cascade Lake)
|
|
||||||
|
|
||||||
A microarchitectural correctness erratum where a conditional jump instruction that straddles or ends at a 64-byte instruction fetch boundary can corrupt the branch predictor state, potentially causing incorrect execution. Intel addressed this in a November 2019 microcode update. Compilers and assemblers (GCC, LLVM, binutils) also introduced alignment options (`-mbranch-alignment`, `-x86-branches-within-32B-boundaries`) to pad jump instructions away from boundary conditions, preserving performance on CPUs with updated microcode.
|
|
||||||
|
|
||||||
**Why out of scope:** The JCC erratum is a microarchitectural correctness bug, not a transient or speculative execution side-channel vulnerability. No CVE was ever assigned. Red Hat noted that privilege escalation "has not been ruled out" but made no definitive security finding, and no exploit has been demonstrated. There is no Linux sysfs entry, no CPUID bit, and no MSR flag exposing the mitigation status. The microcode fix introduces no detectable hardware indicator, so checking for it would require maintaining a per-CPU-stepping minimum microcode version table (the design principle 3 exception) — costly to maintain without a CVE anchor or confirmed exploitability to justify the ongoing work. The kernel compiler mitigation is a build-time-only change (instruction alignment) with no observable runtime state.
|
|
||||||
|
|||||||
+122
-696
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user