
WEB安全
文章平均质量分 64
TyRant_Xx
这个作者很懒,什么都没留下…
展开
-
Sqli-labs全套(1-65)-通关笔记
Basic Challenges01-Error Based-Single quotesError Based: 可以通过报错知道闭合方式> paylod: ?id=1') and ;--+源码拼接后:SELECT * FROM users WHERE id=('$id') LIMIT 0,1;SELECT * FROM users WHERE id=('1') and ;-- ') LIMIT 0,1;> err: You have an error in your SQL原创 2022-04-10 21:31:29 · 4682 阅读 · 0 评论 -
SQL注入中sleep函数的一些小tips
sleep(duration) : 睡眠duration秒,返回0,若没有执行,则返回1mysql> select * from users where id=1 and sleep(1);Empty set (1.00 sec)mysql> select * from users where id=1 or sleep(1);+----+----------+----------+| id | username | password |+----+----------+-----原创 2022-03-24 13:58:49 · 1163 阅读 · 0 评论