当前位置: 首页 > 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.jsqmd.com/news/60082/

相关文章:

  • RSI 1
  • CVE-2016-7124
  • 接口加密
  • 订单服务(Ordering.API)之领域层
  • 订单服务(Ordering.API)之应用层
  • 订单服务(Ordering.API)之基础设施层
  • 订单服务(Ordering.API)之表现层
  • 环信im云即时通讯
  • Minimal API(Net9)
  • MediatR 中介者模式
  • FluentValidation 模型校验框架
  • IdentityServer4认证授权之授权码模式(Authorization Code+PKCE)
  • IdentityServer4认证授权之OpenId Connect认证流程
  • IdentityServer4认证授权之OpenId Connect方案
  • IdentityServer4认证授权之隐式流模式(Implicit)
  • .NET Core 微服务之RabbitMQ分布式链路追踪
  • Asp.Net Core 过滤器之Filter
  • Asp.Net Core 请求管道中间件之Middleware
  • Git推送从失败到成功的解决方案
  • Microsoft-Store-error
  • STM32 HAL库 硬件IIC 从机一些问题整理(转载)
  • 本地人推荐的火锅,天台火锅/麻辣火锅/老火锅/市井火锅/川渝火锅约会地点推荐榜单
  • OBDSTAR P003+ Kit for DC706 Tablets: Simplify ECU, EEPROM, Flash IMMO Data Diagnostics Programming
  • 全程复盘:一次枚举值永远 Cloud2的坑——从玄学随机到只读属性
  • M726芯片
  • Fast Easy Electric Oil Siphon Pump: Professional Fluid Transfer for Cars, Motorcycles Boats
  • AutoCloseable接口 try-with-resources 、 try-catch-finally
  • 第44天(中等题 数据结构)
  • rizhi
  • element-plus el-select