当前位置: 首页 > news >正文

RSI 2

将文件放进随波逐流里面,用binwalk分离,发现一个压缩包
image
将压缩包里面的文件提取出来,打开文件发现大量数据
image
借用大佬的脚本,将数据转成图片

点击查看代码
import matplotlib.pyplot as pltdef validate_coord(coord):length = len(coord) == 4 and int(coord[0]) > 0if length:x = 0 <= float(coord[1]) <= 512y = 0 <= float(coord[2]) <= 384return x and yreturn Falsewith open("_big_b.osr.extracted/7F") as replay_raw:coords_raw = replay_raw.readline().split(',')coords_raw = [tuple(x.split('|')) for x in coords_raw]
coords_raw = [t for t in coords_raw if validate_coord(t)]coords = []
for t in coords_raw:coords.append((int(t[0]), float(t[1]), float(t[2]), int(t[3])))x, y = [p[1] for p in coords], [-p[2] for p in coords]plt.scatter(x, y)
plt.show()
在python运行代码,获得flag,UMDCTF{CL1CK_TO_THE_B3AT}

image

http://www.zskr.cn/news/70603.html

相关文章:

  • RSI 1
  • MediatR 中介者模式
  • FluentValidation 模型校验框架
  • IdentityServer4认证授权之OpenId Connect认证流程
  • IdentityServer4认证授权之OpenId Connect方案
  • IdentityServer4认证授权之隐式流模式(Implicit)
  • .NET Core 微服务之RabbitMQ分布式链路追踪
  • M726芯片
  • centos6.9编译安装python37——SSL 模块缺失、GCOV 链接错误,以及 Bash 命令缓存混乱
  • 在 Windows 上本地部署 ComfyUI + zImage Turbo 模型(低显存友好)
  • Day10-20251203
  • 面向人机文明的价值协同:理论、实践与评估的完整框架
  • python调用大模型api来进行对话
  • expdp dmp 导出不完整导入ORA-39059 ORA-39246 故障抢救数据
  • 用 Rust 和 Leptess 构建轻量级验证码识别工具
  • 12.2 HTML
  • WIN11系统环境松灵机器人SCOUT2.0底盘CAN通信控制测试
  • 使用Frp+Caddy把https映射到内网的web服务
  • 第五十四篇
  • 12月2日总结 - 作业----
  • Flutter 安卓测试运行
  • 第七篇Scrum冲刺
  • 01-IFoxCAD概述与入门
  • 12月3日总结 - 作业----
  • 昌江019通道维修
  • 第五篇Scrum冲刺
  • 第四篇Scrum冲刺
  • Linux中级のRsync实战
  • 2025.12.3总结
  • 03 HTTP请求的url路由