mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
initial support for PostgreSQL 9.0 - #223
This commit is contained in:
parent
f4745a95ea
commit
fdbd8bfe37
3 changed files with 15 additions and 2 deletions
|
|
@ -45,7 +45,9 @@ class Takeover(GenericTakeover):
|
|||
|
||||
banVer = kb.bannerFp["dbmsVersion"]
|
||||
|
||||
if banVer >= "8.4":
|
||||
if banVer >= "9.0":
|
||||
majorVer = "9.0"
|
||||
elif banVer >= "8.4":
|
||||
majorVer = "8.4"
|
||||
elif banVer >= "8.3":
|
||||
majorVer = "8.3"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue