mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Update for an Issue #272
This commit is contained in:
parent
a14697e8cf
commit
d4b5133df7
2 changed files with 6 additions and 1 deletions
|
|
@ -40,6 +40,7 @@ from lib.core.exception import sqlmapUserQuitException
|
|||
from lib.core.threads import getCurrentThreadData
|
||||
from lib.request import inject
|
||||
from lib.utils.hash import attackCachedUsersPasswords
|
||||
from lib.utils.hash import storeHashesToFile
|
||||
from lib.utils.pivotdumptable import pivotDumpTable
|
||||
|
||||
class Users:
|
||||
|
|
@ -300,6 +301,8 @@ class Users:
|
|||
for user in kb.data.cachedUsersPasswords:
|
||||
kb.data.cachedUsersPasswords[user] = list(set(kb.data.cachedUsersPasswords[user]))
|
||||
|
||||
storeHashesToFile(kb.data.cachedUsersPasswords)
|
||||
|
||||
message = "do you want to perform a dictionary-based attack "
|
||||
message += "against retrieved password hashes? [Y/n/q]"
|
||||
test = readInput(message, default="Y")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue