当前位置:网站首页>BUUCTF--reverse2
BUUCTF--reverse2
2022-06-29 10:38:00 【X.IO】
reverse2
1 Preprocessing
Get information
64 Bit file
2. Drag in IDA64,shift+F12
You can see directly flag, But this is not the end flag, Double click to follow up
then F5 Pseudocode found
Analyze pseudo code , Find key functions
for ( i = 0; i <= strlen(&flag); ++i )
{
if ( *(&flag + i) == 105 || *(&flag + i) == 114 )
*(&flag + i) = 49;
}
Be careful : there 105、114、49 All are ASCII code , Reference resources ASCII The code table shows that
105 Express i 114 Express r 49 Express 1
So the final flag It's a flag Medium i and r Replace with 1.
flag{hack1ng_fo1_fun}
边栏推荐
- std::make_shared<T>/std::make_unique<T>与std::shared_ptr<T>/std::unique_ptr<T>的区别与联系
- F5 big IP Icontrol rest command execution (cve-2022-1388)
- Print prime numbers between 100 and 200 (C language)
- Web漏洞手动检测分析
- 二叉树
- C#MDI打开子窗体去掉自动生成的菜单栏
- 在实践中学习Spark计算框架(01)
- CLR via C reading notes - single instance application
- Talk about threads and concurrency
- The process of updating a record in MySQL
猜你喜欢
随机推荐
BUUCTF--新年快乐
智能组卷系统设计
Call another interface button through win32API
SQL Server 数据库的几种简单查询
September 21, 2020 referer string segmentation boost gateway code organization level
mysql 8.0 一条insert语句的具体执行流程分析(三)
给定两个整形变量的值,将两个值的内容进行交换 (C语言)
InnoDB in MySQL_ page_ Cleaners details
二叉树
BUUCTF--内涵的软件
Rikka with cake (segment tree + segment tree)
BUUCTF--reverse2
《MongoDB入门教程》第02篇 MongoDB安装
Web漏洞手动检测分析
Installing and configuring wmware esxi 6.5.0 in VMware Workstation
Win32Exception (0x80004005): 组策略阻止了这个程序。要获取详细信息,请与系统管理员联系。
Dynamic planning summary
Add/modify/drop column of alter table operation in MySQL
Analysis of BlockingQueue source code of AQS
September 29, 2020 non commodity templating code level rapidjson Library







