mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Properly moved and improved inject.goStacked() function and newly
implemented Time based blind SQL injection now is a single test file within the lib/techniques/ folder. Renamed lib/techniques/inference to lib/techniques/blind, it is more approriate and adapted the rest of the libraries. Updated ChangeLog file.
This commit is contained in:
parent
9329f8c9c4
commit
ecc4a98071
10 changed files with 63 additions and 31 deletions
|
|
@ -31,6 +31,7 @@ from lib.core.data import kb
|
|||
from lib.core.dump import dumper
|
||||
from lib.core.exception import sqlmapUnsupportedDBMSException
|
||||
from lib.core.settings import SUPPORTED_DBMS
|
||||
from lib.techniques.blind.timebased import timeTest
|
||||
from lib.techniques.inband.union.test import unionTest
|
||||
|
||||
|
||||
|
|
@ -70,7 +71,7 @@ def action():
|
|||
|
||||
# Techniques options
|
||||
if conf.timeTest:
|
||||
dumper.string("time based sql injection", conf.dbmsHandler.timeTest())
|
||||
dumper.string("time based blind sql injection payload", timeTest())
|
||||
|
||||
if conf.unionTest:
|
||||
dumper.string("valid union", unionTest())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue