Created
October 8, 2025 05:39
-
-
Save rxerium/3e92419ad01cebeae358e4fda5cc8458 to your computer and use it in GitHub Desktop.
Vulnerability checker for CVE-2025-32463
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
| 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