Skip to content

Instantly share code, notes, and snippets.

@rxerium
Created October 8, 2025 05:39
Show Gist options
  • Select an option

  • Save rxerium/3e92419ad01cebeae358e4fda5cc8458 to your computer and use it in GitHub Desktop.

Select an option

Save rxerium/3e92419ad01cebeae358e4fda5cc8458 to your computer and use it in GitHub Desktop.
Vulnerability checker for CVE-2025-32463
sudo --version | head -n1 | awk '{print $3}' | awk -F'p' '{printf "%s.%s", $1, ($2=="")?0:$2}' | awk '{if ($1 < 1.9 || ($1 == 1.9 && $2 < 17.1)) print "VULNERABLE"; else print "NOT-VULNERABLE"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment