摘要: 打开靶场后网页显示 从注释可以看到flag可能存在fl4g.php中,要想返回fl4g.php需要绕过以下三个条件 1 要绕过wake up 函数__wakeup()是在反序列化操作中起作用的魔法函数,当unserialize的时候,会检查时候存在__wakeup()函数,如果存在的话,会优先调用_ 阅读全文
posted @ 2023-10-05 21:29 Brad1 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 源代码:$is_upload = false; $msg = null; if (isset($_POST['submit'])) { if (file_exists(UPLOAD_PATH)) { if (($_FILES['upload_file']['type'] == 'image/jpeg 阅读全文
posted @ 2023-09-15 17:47 Brad1 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 源代码: function checkFile() { var file = document.getElementsByName('upload_file')[0].value; if (file == null || file == "") { alert("请选择要上传的文件!"); retu 阅读全文
posted @ 2023-09-15 17:17 Brad1 阅读(135) 评论(0) 推荐(0) 编辑
摘要: import socketfrom datetime import datetime# 线程池from multiprocessing.dummy import Pool as ThreadPool# 目标IPremote_server_ip = "192.168.88.128"# 目标ip启用端口 阅读全文
posted @ 2023-09-14 20:14 Brad1 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 顺序表 顺序表的基本概念 是用一组地址连续的存储单元依次存储线性表中的数据元素,从而使得逻辑上相邻的两个元素在位置上也相邻 存在唯一的一个被称作第一个的数据元素 存在唯一的一个被称作最后一个的数据元素 除第一个外,集合中的每个数据元素均只有一个前继元素 除最后一个外,集合中的每个数据元素均只有一个后 阅读全文
posted @ 2019-07-19 17:05 Brad1 阅读(95) 评论(0) 推荐(0) 编辑