mirror of https://github.com/jtesta/ssh-audit.git
Recognize Allegro Software RomSShell.
This commit is contained in:
parent
cb19718568
commit
f6a6fb98bc
|
@ -589,6 +589,12 @@ class SSH(object):
|
||||||
v = None
|
v = None
|
||||||
os = cls._extract_os(banner.comments)
|
os = cls._extract_os(banner.comments)
|
||||||
return cls(v, p, mx.group(1), patch, os)
|
return cls(v, p, mx.group(1), patch, os)
|
||||||
|
mx = re.match(r'^RomSShell_([\d\.]+\d+)(.*)', software)
|
||||||
|
if mx:
|
||||||
|
patch = cls._fix_patch(mx.group(2))
|
||||||
|
v, p = 'Allegro Software', 'RomSShell'
|
||||||
|
return cls(v, p, mx.group(1), patch, None)
|
||||||
|
|
||||||
mx = re.match(r'^mpSSH_([\d\.]+\d+)', software)
|
mx = re.match(r'^mpSSH_([\d\.]+\d+)', software)
|
||||||
if mx:
|
if mx:
|
||||||
v, p = 'HP', 'iLO (Integrated Lights-Out) sshd'
|
v, p = 'HP', 'iLO (Integrated Lights-Out) sshd'
|
||||||
|
|
Loading…
Reference in New Issue