mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
some more speed ups for hash cracking
This commit is contained in:
parent
2f355db230
commit
ea125d820d
2 changed files with 22 additions and 8 deletions
|
|
@ -75,3 +75,9 @@ class HashDB(object):
|
|||
raise
|
||||
else:
|
||||
break
|
||||
|
||||
def beginTransaction(self):
|
||||
self.cursor.execute('BEGIN TRANSACTION')
|
||||
|
||||
def endTransaction(self):
|
||||
self.cursor.execute('END TRANSACTION')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue