mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
minor cosmetic update
This commit is contained in:
parent
43892cddbb
commit
1369529103
6 changed files with 65 additions and 56 deletions
|
|
@ -194,7 +194,7 @@ class Fingerprint(GenericFingerprint):
|
|||
query += "LIKE '%Windows NT " + data[0] + "%')>0"
|
||||
query = agent.forgeCaseStatement(query)
|
||||
|
||||
if inject.getValue(query, charsetType=1) == "1":
|
||||
if inject.getValue(query, charsetType=1, suppressOutput=True) == "1":
|
||||
kb.osVersion = version
|
||||
infoMsg += " %s" % kb.osVersion
|
||||
|
||||
|
|
@ -221,7 +221,7 @@ class Fingerprint(GenericFingerprint):
|
|||
query += "LIKE '%Service Pack " + getUnicode(sp) + "%')>0"
|
||||
query = agent.forgeCaseStatement(query)
|
||||
|
||||
if inject.getValue(query, charsetType=1) == "1":
|
||||
if inject.getValue(query, charsetType=1, suppressOutput=True) == "1":
|
||||
kb.osSP = sp
|
||||
break
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue