mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 22:21:30 +00:00
more update regarding error based injection support
This commit is contained in:
@@ -16,6 +16,7 @@ from lib.core.data import paths
|
||||
from lib.core.exception import sqlmapUnsupportedDBMSException
|
||||
from lib.core.settings import SUPPORTED_DBMS
|
||||
from lib.techniques.blind.timebased import timeTest
|
||||
from lib.techniques.error.error import errorTest
|
||||
from lib.techniques.inband.union.test import unionTest
|
||||
from lib.techniques.outband.stacked import stackedTest
|
||||
|
||||
@@ -57,6 +58,9 @@ def action():
|
||||
if conf.stackedTest:
|
||||
conf.dumper.technic("stacked queries support", stackedTest())
|
||||
|
||||
if conf.errorTest:
|
||||
conf.dumper.technic("error based injection support", errorTest())
|
||||
|
||||
if conf.timeTest:
|
||||
conf.dumper.technic("time based blind sql injection payload", timeTest())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user