mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Fixes #1811
This commit is contained in:
parent
c4b74c2e01
commit
66061e8c5f
2 changed files with 2 additions and 2 deletions
|
|
@ -521,7 +521,7 @@ def start():
|
|||
injection = checkSqlInjection(place, parameter, value)
|
||||
proceed = not kb.endDetection
|
||||
|
||||
if injection is not None and injection.place is not None:
|
||||
if getattr(injection, "place", None) is not None:
|
||||
kb.injections.append(injection)
|
||||
|
||||
# In case when user wants to end detection phase (Ctrl+C)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue