即使在更改请求的文件后,SQLMAP 后数据错误仍然存在

SQLMAP post data error persists even after changing the requested file

提问人:Joginder Singh 提问时间:6/13/2023 最后编辑:greybeardJoginder Singh 更新时间:6/14/2023 访问量:268

问:

我试图使用POST方法运行sqlmap,但我收到此错误:

[CRITICAL] no parameter(s) found for testing in the provided data (e.g. GET parameter 'id' in 'www.site.com/index.php?id=1')

即使我在请求中提供了参数

sqlmap -r variablespatch.txt --dbs --batch --data variable_id

data used in the request

上面是我在请求中使用的数据的图像

我也尝试过多次更改格式,但没有用。
我也尝试过这个请求
sqlmap -r variablespatch.txt --dbs --batch --p variable_id

Linux SQL注入 SQLMAP

评论

0赞 Joginder Singh 6/13/2023
sqlmap -r 变量patch.txt --dbs --batch --p variable_id我也尝试过这个请求
0赞 greybeard 6/14/2023
要添加信息,请编辑您的帖子。若要显示文本,请复制并粘贴到块引号中,而不是使用呈现的文本图像。

答:

0赞 Rexha Rex 6/14/2023 #1

您使用的标头格式不正确。 必须将 post 参数放在两个换行符下 前任:

Accept-Language: en-US, en;q=0.9

{“variable_id”:“tjdm4k1o”

评论

0赞 boylec1986 6/16/2023
考虑在答案中使用代码块。