Update sudovB.sh

Modified the regex that checks for vulnerable sudo versions to include sudo version 1.9.17 (not including 1.9.17p1), which is vulnerable to CVE-2025-32463 (https://www.exploit-db.com/exploits/52352).
This commit is contained in:
tropkal
2025-10-04 09:08:37 +03:00
committed by GitHub
parent 7c7884fb72
commit 40cf08af85

View File

@@ -13,4 +13,5 @@
# Small linpeas: 1
sudovB="[01].[012345678].[0-9]+|1.9.[01234][^0-9]|1.9.[01234]$|1.9.5p1"
#sudovB="[01].[012345678].[0-9]+|1.9.[01234][^0-9]|1.9.[01234]$|1.9.5p1"
sudovB="[01]\.[012345678]\.[0-9]+|1\.9\.[0-9]+|1\.9\.5p1"