上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页
摘要: 渣渣今天写了一题misc,第一次学习md5的python写法,赶紧记录一波 背景知识: import hashlib md51=hashlib.md5() md52=hashlib.md5() # 【用法】: # hashlib.md5() # 获取一个md5加密算法对象 # md5.update( 阅读全文
posted @ 2019-12-04 14:43 东坡肉肉君 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 查源码发现一个文件读取:http://cms.nuptzj.cn/about.php?file=sm.txt,用它把能找到的php都读取下来 <?php if (!isset($_COOKIE['username'])) { setcookie('username', ''); setcookie( 阅读全文
posted @ 2019-12-03 00:29 东坡肉肉君 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 跟则提示走,美滋滋: 1.找到邮箱: 2.下载备份: 3.PHP弱类型,string与int用的是“==” ........这一行是省略的代码........ if(!empty($token)&&!empty($emailAddress)){ if(strlen($token)!=10) die( 阅读全文
posted @ 2019-12-02 20:27 东坡肉肉君 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 开场就是一个js混淆,直接丢到console里面 然后根据tip查头: 看到这个tip,一开始还以为要考注入了,用访问历史来进行注入,后来发现是我高估这题了,,,: 阅读全文
posted @ 2019-12-02 19:41 东坡肉肉君 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 没错我又偷偷写了道web【并查集好难啊,脑阔疼QAQ】 http://chinalover.sinaapp.com/web15/index.php?username=%5C&password=or%201%23 记得要url编码后再发啊喂!! <? error_reporting(0); requi 阅读全文
posted @ 2019-12-01 22:54 东坡肉肉君 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 最近一直在做算法题,头都要大了,今天悄咪咪来一个web换换脑子,一发flag敲开♥[虽然知道这是个水题ε=ε=ε=┏(゜ロ゜;)┛] 阅读全文
posted @ 2019-12-01 22:37 东坡肉肉君 阅读(615) 评论(0) 推荐(0) 编辑
摘要: B. Obtain Two Zeroes time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You are given two in 阅读全文
posted @ 2019-11-28 13:43 东坡肉肉君 阅读(252) 评论(0) 推荐(1) 编辑
摘要: 题目: 给定一个数组 {3, 1, 2, 1} 和一个数字k =4。求这个数组的一个最长连续子数组,这个最长连续子数组中所有数字的和必须小于或等于k。 例如,上面这个例子中,连续子数组有这么多种情况: {3}, {1}, {2}, {1}, {3, 1}, {1, 2}, {2, 1}, {3, 1 阅读全文
posted @ 2019-11-27 10:31 东坡肉肉君 阅读(371) 评论(0) 推荐(0) 编辑
摘要: A - How Many Tables #include<iostream> using namespace std; const int maxn = 1050; int set[maxn]; void init_set() { for(int i=0;i<=maxn;++i)set[i]=i; 阅读全文
posted @ 2019-11-26 23:28 东坡肉肉君 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 给定一个非负整数数组,你最初位于数组的第一个位置。 数组中的每个元素代表你在该位置可以跳跃的最大长度。 判断你是否能够到达最后一个位置。 示例 1: 输入: [2,3,1,1,4]输出: true解释: 我们可以先跳 1 步,从位置 0 到达 位置 1, 然后再从位置 1 跳 3 步到达最后一个位置 阅读全文
posted @ 2019-11-18 17:47 东坡肉肉君 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页