评分(7)
解题动态
![](/static/images/face.webp)
Mambo 攻破了该题 17小时前
![](/static/images/face.webp)
2292055469 攻破了该题 18小时前
![](/upload/user/20250111/9a57f83ae73d499ca14f14ac15610c60.webp)
1997080520030530 攻破了该题 1天前
![](/static/images/face.webp)
primaryboy 攻破了该题 1天前
![](/static/images/face.webp)
PDXX 攻破了该题 1天前
![](/static/images/face.webp)
hh4h 攻破了该题 1天前
![](/static/images/face.webp)
faasfagasg 攻破了该题 1天前
![](/static/images/face.webp)
1148391538 攻破了该题 2天前
![](/static/images/face.webp)
2410968090 攻破了该题 2天前
![](/static/images/face.webp)
creamy 攻破了该题 3天前
![](/static/images/face.webp)
18283162726 攻破了该题 3天前
![](/static/images/face.webp)
2105989227 攻破了该题 3天前
![](/static/images/face.webp)
iamblue 攻破了该题 4天前
![](/static/images/face.webp)
土豆班长 攻破了该题 4天前
![](/static/images/face.webp)
Ktcc5 攻破了该题 4天前
![](/static/images/face.webp)
ckasdfg 攻破了该题 4天前
![](/static/images/face.webp)
syictdott 攻破了该题 4天前
![](/static/images/face.webp)
z723622533 攻破了该题 5天前
![](/static/images/face.webp)
2115032105 攻破了该题 5天前
![](/upload/user/20230829/914aff175d0112ccac39e3521f989322.webp)
评论
fonddream 1年前
举报
import requests #//引入request库 import re #//引入re库 url = '''http://114.67.175.224:17902/''' s = requests.session() #//用session会话保持表达式是同一个 retuen = s.get(url) equation = re.search(r'(\d+[+\-*])
n0pass 1年前
举报
环境打不开啊,退钱。
harry 管理员 1年前
举报
已修复,金币退了
老渡真的不懂 1年前
举报
真逆天,如果不留session就连脚本都跑不过
jitqingning 1年前
举报
import requests import re req=requests.session() url = "" r= req.get(url) mat=re.search(r"<div>(.*)=\?;</div>",r.text) total=eval(mat.group(1)) key={'value':tota
几度夕阳红 1年前
举报
import requests import re url="http://114.67.175.224:17849/" session=requests.Session() html=session.get(url) print(html.text) pattern=re.compile('<div>.+=\?;</div>')
wxy1343 1年前
举报
flag{341e6b6a035e07bde397a59b218857db}
Cyberbolt 1年前
举报
import httpx headers = {'Cookie': 'PHPSESSID=hfkhacgjeb1ldq8mgmtisd0df3; Timeout=alive'} r = httpx.get('http://114.67.175.224:17961/', headers=headers) print(r.text) m = r.text.split('=')[0]
106沐珩 1年前
举报
环境都不一样 退钱
homer123 1年前
举报
flag{514c884a0a35d2e0607e416b6b89bd3f}
꧁༺༽༾ཊ彪ཏ༿༼༻꧂ 2年前
举报
可以参考下https://blog.csdn.net/qq_56313338/article/details/126911189
ctfliu 1年前
举报
re.findall(r'<div>(.*?)=', a)[0] 用这个re