mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
The dominoconsole match is too general and can match things that it
shouldn't. Also, because of the use of ([...]*), captures can be too long to fill into the template. This change forces hostname and domain name to be non-empty. This match should be made more specific but without example content any changes would involve guessing.
This commit is contained in:
parent
c182e7291f
commit
df99409651
1 changed files with 1 additions and 1 deletions
|
|
@ -9061,7 +9061,7 @@ Probe TCP dominoconsole q|\#ST\n|
|
|||
rarity 8
|
||||
sslports 2050
|
||||
|
||||
match dominoconsole m|^([^/]*)/([^:]*):([^:]*):([^:]*):| p/Lotus Domino Console/ o/$3/ h/$2/ i/domain: $1; description: "$4"/
|
||||
match dominoconsole m|^([^/]+)/([^:]+):([^:]*):([^:]*):| p/Lotus Domino Console/ o/$3/ h/$2/ i/domain: $1; description: "$4"/
|
||||
|
||||
##############################NEXT PROBE##############################
|
||||
# Informix probe
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue