Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b4685aa

Browse files
committed
quick fix
1 parent f9f79ff commit b4685aa

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

plugins/dbms/mssqlserver/fingerprint.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ def checkDbms(self):
104104
result = True
105105
else:
106106
randInt = randomInt()
107-
payload = agent.fullPayload(" AND BINARY_CHECKSUM(%d)=BINARY_CHECKSUM(%d))" % (randInt, randInt))
107+
payload = agent.fullPayload(" AND BINARY_CHECKSUM(%d)=BINARY_CHECKSUM(%d)" % (randInt, randInt))
108+
import pdb
109+
pdb.set_trace()
108110
result = Request.queryPage(payload)
109111

110112
if result:

0 commit comments

Comments
 (0)