mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-13 21:20:42 +00:00
hello big tables, this is sqlmap, sqlmap this is big tables
This commit is contained in:
parent
82e1e61554
commit
ec1bc0219c
8 changed files with 108 additions and 26 deletions
|
|
@ -13,6 +13,7 @@ import time
|
|||
from lib.core.agent import agent
|
||||
from lib.core.common import arrayizeValue
|
||||
from lib.core.common import Backend
|
||||
from lib.core.common import BigArray
|
||||
from lib.core.common import clearConsoleLine
|
||||
from lib.core.common import dataToStdout
|
||||
from lib.core.common import getRange
|
||||
|
|
@ -1385,7 +1386,7 @@ class Enumeration:
|
|||
|
||||
for column in colList:
|
||||
lengths[column] = 0
|
||||
entries[column] = []
|
||||
entries[column] = BigArray()
|
||||
|
||||
colList = sorted(colList, key=lambda x: len(x) if x else MAX_INT)
|
||||
|
||||
|
|
@ -1706,7 +1707,7 @@ class Enumeration:
|
|||
lengths[column] = 0
|
||||
|
||||
if column not in entries:
|
||||
entries[column] = []
|
||||
entries[column] = BigArray()
|
||||
|
||||
if Backend.getIdentifiedDbms() in ( DBMS.MYSQL, DBMS.PGSQL ):
|
||||
query = rootQuery.blind.query % (column, conf.db, conf.tbl, index)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue