摘要: 二分 lower_bound/upper_bound 这两个函数是STL中用于二分查找的两个函数,用法:假定我们有一个有序的数组a,并将数x作为二分查找的目标,那么: lower_bound(a,a+n,x)-a; //下标从0开始 lower_bound(a + 1,a+n+1,x) - a;// 阅读全文
posted @ 2024-12-09 13:32 weikelai 阅读(45) 评论(0) 推荐(0)
摘要: MD5绕过 http://challenge.basectf.fun:49136/ <?php highlight_file(__FILE__); error_reporting(0); require 'flag.php'; if (isset($_GET['name']) && isset($_ 阅读全文
posted @ 2024-12-09 13:32 weikelai 阅读(37) 评论(0) 推荐(0)
摘要: 2024湖北大学新星杯实践能力赛ez-httpRCE - Level 2先访问./static/script.jsPing Results for 127.0.0.1:执行成功Ping Results for 127.0.0.1;ls / >>static/script.js:执行成功## Ping 阅读全文
posted @ 2024-12-09 13:31 weikelai 阅读(90) 评论(0) 推荐(0)
摘要: RSA入门(二) - Kicky_Mu - 博客园 按键音(即DTMF)解密网站:DTMF Decoder PHP伪协议 e.g http://node5.anna.nssctf.cn:25660/falg.php 不能通过 换思路 http://node5.anna.nssctf.cn:25660 阅读全文
posted @ 2024-12-09 13:13 weikelai 阅读(292) 评论(0) 推荐(0)
摘要: Crypto RSA1 题目 from Crypto.Util.number import * from random import choice flag = b'HUBUCTF{*********}' def getMyPrime(nbits): while True: p = 1 while 阅读全文
posted @ 2024-11-23 21:16 weikelai 阅读(75) 评论(0) 推荐(0)
摘要: title publish 01-HTML标签:图片标签 true img标签介绍 <img src="图片的URL"/> 能插入的图片类型 能够插入的图片类型是:jpg(jpeg)、gif、png、bmp等。 不能往网页中插入的图片格式是:psd、ai等。 img标签的src属性 这里涉及到图片的 阅读全文
posted @ 2024-08-19 16:29 weikelai 阅读(55) 评论(0) 推荐(0)