查找右边界
查找小于等于数的最后一个数 (满足某个条件的最后一个数)
int SearchRight(int left, int right)
{while (left < right){int mid left right 1 >> 1;if (chech(mid)) left mid;else right mid - 1;}return left;
} 查找左边…
ctfshow-SQL注入
web171:爆库名->爆表名->爆字段名->爆字段值
-1 union select 1,database() ,3 -- //返回数据库名
-1 union select 1,2,group_concat(table_name) from information_schema.tables where table_schema库名 -- //获取数据库里的表名
-…