Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ba264b commit 9bdbdc1Copy full SHA for 9bdbdc1
1 file changed
lib/controller/controller.py
@@ -155,8 +155,11 @@ def _formatInjection(inj):
155
return data
156
157
def _showInjections():
158
- header = "sqlmap identified the following injection points with "
159
- header += "a total of %d HTTP(s) requests" % kb.testQueryCount
+ if kb.testQueryCount > 0:
+ header = "sqlmap identified the following injection point(s) with "
160
+ header += "a total of %d HTTP(s) requests" % kb.testQueryCount
161
+ else:
162
+ header = "sqlmap resumed the following injection point(s) from stored session"
163
164
if hasattr(conf, "api"):
165
conf.dumper.string("", kb.injections, content_type=CONTENT_TYPE.TECHNIQUES)
0 commit comments