mirror of
https://github.com/jtesta/ssh-audit.git
synced 2025-06-23 19:14:32 +02:00
OpenSSH-portable patch level 1 now considered equivalent to stock OpenBSD version.
This commit is contained in:
@ -90,6 +90,9 @@ class Software:
|
||||
opatch = mx1.group(1)
|
||||
if mx2 is not None:
|
||||
spatch = mx2.group(1)
|
||||
# OpenBSD version and p1 versions are considered the same.
|
||||
if ((spatch == '') and (opatch == '1')) or ((spatch == '1') and (opatch == '')):
|
||||
return 0
|
||||
if spatch < opatch:
|
||||
return -1
|
||||
elif spatch > opatch:
|
||||
|
Reference in New Issue
Block a user