1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 05:01:29 +00:00

Add version info for MS SQL 2017 and 2019

This commit is contained in:
dmiller
2020-01-06 18:39:54 +00:00
parent 81f0818d9e
commit a87b0ca133
2 changed files with 10 additions and 3 deletions

View File

@@ -322,7 +322,7 @@ SqlServerVersionInfo =
["^6%.0"] = "6.0", ["^6%.5"] = "6.5", ["^7%.0"] = "7.0",
["^8%.0"] = "2000", ["^9%.0"] = "2005", ["^10%.0"] = "2008",
["^10%.50"] = "2008 R2", ["^11%.0"] = "2012", ["^12%.0"] = "2014",
["^13%.0"] = "2016", ["^14%.0"] = "2017",
["^13%.0"] = "2016", ["^14%.0"] = "2017", ["^15%.0"] = "2019"
}
local product = ""
@@ -428,6 +428,11 @@ SqlServerVersionInfo =
["2017"] = {
{1000, "RTM"},
{3257, "CU18"},
},
["2019"] = {
{2000, "RTM"},
},
}