我试着用sqlmap。尽管每次我使用它时,我都会得到以下回复:
[13:39:11] [CRITICAL] previous heuristics detected that the target is protected by some kind of WAF/IPS
[13:39:11] [INFO] testing if the target URL content is stable
[13:39:12] [INFO] target URL content is stable
[13:39:12] [CRITICAL] no parameter(s) found for testing in the provided data (e.g. GET parameter 'id' in 'www.site.com/index.php?id=1'). You are advised to rerun with '--forms --crawl=2'
[*] ending @ 13:39:12 /2020-07-29/
我正在使用我在教程中找到的网站(比如:https://www.binarytides.com/sqlmap-hacking-tutorial/)。但我总能收到这样的信息。如果不是的话,它会不断地向我要东西,然后就不管用了。
下面是我使用的命令:python sqlmap.py -u "www.example.com"
发布于 2020-07-30 07:13:36
您应该对易受攻击的参数进行测试。
[13:39:12] [CRITICAL] no parameter(s) found for testing in the provided data (e.g. GET parameter 'id' in 'www.site.com/index.php?id=1'). You are advised to rerun with '--forms --crawl=2'
您还应该确保您正在测试的网站正在运行SQL并接受数据。
https://security.stackexchange.com/questions/235394
复制相似问题