摘要: 最近做ctf题目总是被虐的死去活来 关于php文件包含漏洞的题目: 参考资料:https://blog.csdn.net/qq_42181428/article/details/87090539 常见文件包含函数 php中常见的文件包含函数有以下四种: include() require() inc 阅读全文
posted @ 2020-02-13 20:58 ch0bits 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 从 第3章-22 输出大写英文字母 开始 1. a=str(input()) b='' for i in a: if 'A'<=i<='Z' and i not in b: b=b+i if len(b)>0: print(b) else: print('Not Found') 2. a=eval( 阅读全文
posted @ 2020-02-13 15:51 ch0bits 阅读(469) 评论(0) 推荐(0) 编辑