mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-02 06:21:03 +00:00
Minor update
This commit is contained in:
parent
a78885d2e3
commit
87eb93db15
4 changed files with 10 additions and 4 deletions
|
|
@ -41,6 +41,7 @@ from lib.core.common import readInput
|
|||
from lib.core.common import removePostHintPrefix
|
||||
from lib.core.common import safeCSValue
|
||||
from lib.core.common import showHttpErrorCodes
|
||||
from lib.core.common import singleTimeWarnMessage
|
||||
from lib.core.common import urldecode
|
||||
from lib.core.common import urlencode
|
||||
from lib.core.compat import xrange
|
||||
|
|
@ -528,6 +529,9 @@ def start():
|
|||
|
||||
checkWaf()
|
||||
|
||||
if any((conf.graphql, conf.nosql, conf.ldap, conf.xpath, conf.ssti)) and (conf.reportJson or conf.resultsFile):
|
||||
singleTimeWarnMessage("'--report-json'/'--results-file' do not (yet) capture non-SQL technique (--graphql/--nosql/--ldap/--xpath/--ssti) findings; these are reported on the console only")
|
||||
|
||||
if conf.graphql:
|
||||
from lib.techniques.graphql.inject import graphqlScan
|
||||
graphqlScan()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue