当前位置:网站首页>[GXYCTF2019]StrongestMind
[GXYCTF2019]StrongestMind
2022-07-28 18:49:00 【A new reading of the tea classic】
[GXYCTF2019]StrongestMind

Enter the page , Say yes a thousand times flag, Script boy rushed out :
import re
import requests
from time import sleep
def count():
s = requests.session()
url = 'http://af42a67c-c7e4-45f2-961d-30c8591b3c30.node4.buuoj.cn:81/'
match = re.compile(r"[0-9]+ [+|-] [0-9]+")
r = s.get(url)
for i in range(1001):
sleep(0.1)
str = match.findall(r.text)[0]
# print(eval(str))
data = {"answer" : eval(str)}
r = s.post(url, data=data)
r.encoding = "utf-8"
#print('{} : {}'.format(i,eval(str)))
# print(r.text)
print(r.text)
if __name__ == '__main__':
count()Here I omit the process , Not stuck for a long time , If you want to see the process, remove it directly #print('{} : {}'.format(i,eval(str))) Just the previous comments , obtain flag

边栏推荐
- Docker builds MySQL master-slave replication
- MYSQL入门与进阶(八)
- UE5 GAS 学习笔记 1.5 Gameplay Effects游戏效果
- redis优势以及数据结构相关知识
- Gaode map realizes customized small blue dots, customized point markers, drawing polygon / circular areas, and displaying or hiding customized point markers according to the movement of the map
- Look at Devops construction from SRE
- UE5 GAS 学习笔记 1.7 任务Ability Tasks
- Is it difficult for novices to change careers through self-study software testing?
- 记录自己在厦门两年来的面试经历--完结篇
- MYSQL入门与进阶(十)
猜你喜欢
随机推荐
Interviewer: what are the usage scenarios of ThreadLocal? How to avoid memory leakage?
LeetCode_1137_第N个泰波那契数
Gateway入门
记录自己在厦门两年来的面试经历--完结篇
1.2、队列
MYSQL入门与进阶(十)
redis优势以及数据结构相关知识
Zen project management software is an indispensable tool for agile development teams
Gaode map realizes customized small blue dots, customized point markers, drawing polygon / circular areas, and displaying or hiding customized point markers according to the movement of the map
数字经济时代的开源数据库创新 | 2022开放原子全球开源峰会数据库分论坛圆满召开
配置教程:新版本EasyCVR(v2.5.0)组织结构如何级联到上级平台?
The switching language of unity causes an error: system FormatException:String was not recognized as a valid DateTime.
[GXYCTF2019]StrongestMind
2022.7.26 构造函数,面试:new的作用、深拷贝和浅拷贝
Noise of creative coding
ERROR 2003 (HY000) Can‘t connect to MySQL server on ‘localhost3306‘ (10061)解决办法
How to see the future development of software testing?
MYSQL入门与进阶(六)
2022-07-27 第四小组 修身课 学习笔记(every day)
Introduction and advanced level of MySQL (6)









