随笔分类 -  CTF

CTF相关知识
摘要:今天把CTFshow的萌新web题做了一下,还是有收获的。期间也看了不少大佬的wp。 阅读全文
posted @ 2023-02-15 16:00 LuckMeteor 阅读(1868) 评论(2) 推荐(1)
摘要:浅拷贝知识。 阅读全文
posted @ 2023-02-03 14:25 LuckMeteor 阅读(128) 评论(0) 推荐(0)
摘要:PHP反序列化字符串逃逸 阅读全文
posted @ 2023-02-03 11:52 LuckMeteor 阅读(348) 评论(0) 推荐(0)
摘要:不会做,待更新。 阅读全文
posted @ 2023-02-03 11:29 LuckMeteor 阅读(37) 评论(0) 推荐(0)
摘要:一、代码 <?php */ highlight_file(__FILE__); include('flag.php'); class message{ public $from; public $msg; public $to; public $token='user'; public functi 阅读全文
posted @ 2023-02-03 11:28 LuckMeteor 阅读(250) 评论(0) 推荐(0)
摘要:不想做,待更新 阅读全文
posted @ 2023-02-03 11:26 LuckMeteor 阅读(94) 评论(0) 推荐(0)
摘要:一、代码 <?php error_reporting(0); highlight_file(__FILE__); include('flag.php'); if(preg_match('/ctfshow_i_love_36D/',serialize($_GET['ctfshow']))){ echo 阅读全文
posted @ 2023-02-03 11:24 LuckMeteor 阅读(51) 评论(0) 推荐(0)
摘要:没有做,带更新 阅读全文
posted @ 2023-02-03 11:21 LuckMeteor 阅读(37) 评论(0) 推荐(0)
摘要:一、代码 <?php error_reporting(0); highlight_file(__FILE__); class ctfShowUser{ private $username='xxxxxx'; private $password='xxxxxx'; private $isVip=fal 阅读全文
posted @ 2023-02-02 18:35 LuckMeteor 阅读(517) 评论(0) 推荐(0)
摘要:简单的POP链 阅读全文
posted @ 2023-02-02 18:15 LuckMeteor 阅读(475) 评论(0) 推荐(0)
摘要:一、代码 <?php error_reporting(0); highlight_file(__FILE__); include('flag.php'); class ctfShowUser{ public $username='xxxxxx'; public $password='xxxxxx'; 阅读全文
posted @ 2023-02-01 14:45 LuckMeteor 阅读(180) 评论(0) 推荐(0)
摘要:一、源码 <?php error_reporting(0); highlight_file(__FILE__); include('flag.php'); class ctfShowUser{ public $username='xxxxxx'; public $password='xxxxxx'; 阅读全文
posted @ 2023-02-01 14:37 LuckMeteor 阅读(271) 评论(0) 推荐(0)
摘要:一、源码 <?php error_reporting(0); highlight_file(__FILE__); include('flag.php'); class ctfShowUser{ public $username='xxxxxx'; public $password='xxxxxx'; 阅读全文
posted @ 2023-02-01 14:28 LuckMeteor 阅读(96) 评论(0) 推荐(0)
摘要:这几天在学习PHP反序列化,在遇到魔法函数的时候总忘记作用,因此在这里记录一下。 方法名称 作用 __construct() 构造函数:具有构造函数的类会在每次创建新对象时先调用此方法。 __destruct() 析构函数:析构函数会在到某个对象的所有引用都被删除或者当对象被显式销毁时执行。 __s 阅读全文
posted @ 2022-09-30 10:07 LuckMeteor 阅读(304) 评论(0) 推荐(0)
摘要:import base64 s = "暖星东" //加密 bs = base64.b64encode(s.encode("utf-8")) print(bs) //解密 s = str(base64.b64decode(bs),"utf-8") print(s) 阅读全文
posted @ 2022-09-19 09:34 LuckMeteor 阅读(40) 评论(0) 推荐(0)