fix: add rebleet to --variant

built from commit 7a7408d124
 dated 2026-04-04 18:17:35 +0200
 by Stéphane Lesimple (speed47_github@speed47.net)
This commit is contained in:
github-actions[bot]
2026-04-04 16:23:18 +00:00
parent 24d92540a7
commit ea6b8efd18

View File

@@ -13,7 +13,7 @@
# #
# Stephane Lesimple # Stephane Lesimple
# #
VERSION='26.26.0404672' VERSION='26.26.0404682'
# --- Common paths and basedirs --- # --- Common paths and basedirs ---
readonly VULN_SYSFS_BASE="/sys/devices/system/cpu/vulnerabilities" readonly VULN_SYSFS_BASE="/sys/devices/system/cpu/vulnerabilities"
@@ -1831,7 +1831,7 @@ while [ -n "${1:-}" ]; do
case "$2" in case "$2" in
help) help)
echo "The following parameters are supported for --variant (can be used multiple times):" echo "The following parameters are supported for --variant (can be used multiple times):"
echo "1, 2, 3, 3a, 4, msbds, mfbds, mlpds, mdsum, l1tf, taa, mcepsc, srbds, zenbleed, downfall, inception, reptar, tsa, tsa-sq, tsa-l1, its, vmscape, bpi" echo "1, 2, 3, 3a, 4, msbds, mfbds, mlpds, mdsum, l1tf, taa, mcepsc, srbds, zenbleed, downfall, retbleed, inception, reptar, tsa, tsa-sq, tsa-l1, its, vmscape, bpi"
exit 0 exit 0
;; ;;
1) 1)
@@ -1894,6 +1894,10 @@ while [ -n "${1:-}" ]; do
opt_cve_list="$opt_cve_list CVE-2022-40982" opt_cve_list="$opt_cve_list CVE-2022-40982"
opt_cve_all=0 opt_cve_all=0
;; ;;
retbleed)
opt_cve_list="$opt_cve_list CVE-2022-29900 CVE-2022-29901"
opt_cve_all=0
;;
inception) inception)
opt_cve_list="$opt_cve_list CVE-2023-20569" opt_cve_list="$opt_cve_list CVE-2023-20569"
opt_cve_all=0 opt_cve_all=0