摘要: 先好好审题: 根目录下面有key.txt文件,我们需要想办法访问它 漏洞查询:https://www.anquanke.com/vul/id/1124864 漏洞细节: 1 DETAILS 2 3 The documentation of uWSGI states that the php-docr 阅读全文
posted @ 2020-02-21 16:51 ch0bits 阅读(1677) 评论(0) 推荐(0)
摘要: 第4章-12 求满足条件的斐波那契数 a=eval(input()) b=c=1 d=1 for i in range(a): c=b b=d d=b+c if d>a: print('{}'.format(d)) break 第4章-13 求误差小于输入值的e的近似值 a=eval(input() 阅读全文
posted @ 2020-02-21 11:57 ch0bits 阅读(423) 评论(0) 推荐(0)