当前位置:网站首页>Strong net cup 2019 random note
Strong net cup 2019 random note
2022-04-22 07:39:00 【Misaka10046】
First try to inject directly , It seems useless to find

Try to use union Blind note ,preg_match() The function can search and match a string according to a regular expression , Found it all banned , So exclude union Inject

Use show, It is found that the table name can be viewed

Use desc Command to view the details of the two table structures respectively , here 1919810931114514 This table name must use Cover up .


Because I found that there are many functions filtered here , So consider how to bypass .
The preprocessing statement is used here . The first select * from ` 1919810931114514 `, adopt 16 The hexadecimal code becomes a string of numbers

And then use prepare from Precompiled function , This function will automatically put 16 Base string converted to SQL sentence , Through execute Perform precompiled SQL sentence .0';SET @a=0x73656C656374202A2066726F6D20603139313938313039333131313435313460;prepare m_string from @a;execute m_string;#

There are other ways to look online , For example, modify the table name and column name .
The first words Change to another table name , And then 1919810931114514 Renamed as words, Give new words Add new column name id, And then flag Renamed as data.
1';
rename table words to word1;
rename table `1919810931114514` to words;// Change the name of the watch
alert table words add id int unsigned not Null auto_increment primary key ;// Add a self increasing ID
alert table words change flag data varchar(100); # // Name change
版权声明
本文为[Misaka10046]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204220617111981.html
边栏推荐
- Kotlin collaboration + flow + retrofit to realize network request
- 驱动与R3的通信 -自定义包
- P1095 [noip2007 popularity group] escape of the catcher
- 762 · longest common subsequence II
- Explanation and use of interface
- Ffmpeg Command (vi), video extraction audio video
- Call gate
- Leetcode - 6 - (string multiplication, next larger element < Ⅰ Ⅱ Ⅲ >, K sets of inverted linked list)
- Page properties
- 【匿名对象】
猜你喜欢
随机推荐
Codeforces Round #588 (Div. 2) C D
Kotlin学习一、作用域函数let、with、run、apply、also
Ansible的使用
On time complexity and space complexity
Redis的设计与实现(4):什么是Redis的事件驱动程序
762 · longest common subsequence II
并发编程的艺术(11):JUC里的工具类介绍
Kotlin collaboration + flow + retrofit to realize network request
Definition and difference between rewriting and overloading
332 · recovery array
Kotlin Flow实现线程切换
Linked list problem record I
无参构造和全参构造
323 · string game
Educational Codeforces Round 125 (Rated for Div. 2)
Topic record——
296 · array de duplication
深入理解MySQL(5):详谈MySQL锁算法
L1-071 previous life files (20 points) (similar two points)
并发编程的艺术(3):深入理解Synchronized的原理









