mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
fix for a bug reported by Kirill (value is None in attack table phase) and minor fix for loading request file
This commit is contained in:
@@ -215,7 +215,7 @@ def __feedTargetsDict(reqFile, addedTargetUrls):
|
||||
|
||||
for line in lines:
|
||||
if len(line) == 0 or line == "\n":
|
||||
if method == HTTPMETHOD.POST:
|
||||
if method == HTTPMETHOD.POST and data is None:
|
||||
data = ""
|
||||
params = True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user