FindPass

0x01 题目描述

0x02 题解

首先下载到一个apk文件,用模拟器安装一下,看看什么功能,如下

是一个要求输入正确key的程序。

用JEB打开,反汇编查看java源代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.example.findpass;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Toast;
import java.io.InputStreamReader;

public class MainActivity extends Activity {
public MainActivity() {
super();
}

public void GetKey(View arg16) {
String v5 = this.findViewById(2131230721).getText().toString();
if(TextUtils.isEmpty(v5.trim())) {
goto label_57;
}

char[] v4 = this.getResources().getString(2131034115).toCharArray();
int v2 = v4.length;
char[] v1 = new char[1024];
try {
new InputStreamReader(this.getResources().getAssets().open("src.jpg")).read(v1);
}
catch(Exception v3) {
v3.printStackTrace();
}

int v6;
for(v6 = 0; v6 < v2; ++v6) {
int v12 = v1[v4[v6]] % 10;
v4[v6] = v6 % 2 == 1 ? ((char)(v4[v6] + v12)) : ((char)(v4[v6] - v12));
}

if(v5.equals(new String(v4))) {
Toast.makeText(((Context)this), "恭喜您,输入正确!Flag==flag{Key}", 1).show();
}
else {
Toast.makeText(((Context)this), "not right! lol。。。。", 1).show();
return;
label_57:
Toast.makeText(((Context)this), "请输入key值!", 1).show();
}
}

protected void onCreate(Bundle arg2) {
super.onCreate(arg2);
this.setContentView(2130903040);
}

public boolean onCreateOptionsMenu(Menu arg3) {
this.getMenuInflater().inflate(2131165184, arg3);
return 1;
}

public boolean onOptionsItemSelected(MenuItem arg3) {
boolean v1 = arg3.getItemId() == 2131230723 ? true : super.onOptionsItemSelected(arg3);
return v1;
}
}

定位到关键位置

1
2
3
if(v5.equals(new String(v4))) {
Toast.makeText(((Context)this), "恭喜您,输入正确!Flag==flag{Key}", 1).show();
}

当v5等于v4的时候,就是正确的,这里v5是我们输入的值,而v4的话,我们向上看
首先

1
char[] v4 = this.getResources().getString(2131034115).toCharArray();

v4是从控件中获取到的值,然后到下面

1
2
3
4
5
int v6;
for(v6 = 0; v6 < v2; ++v6) {
int v12 = v1[v4[v6]] % 10;
v4[v6] = v6 % 2 == 1 ? ((char)(v4[v6] + v12)) : ((char)(v4[v6] - v12));
}

进行一系列的变换后得到最终值,那么就是说,我们可以通过动态调试获取到最后v4变换的值,而那个就是我们需要的key!!

动态调试的话首先我们需要在apk中的AndoridMainifest.xml文件中,在application标签中添加

1
android:debuggable="true"

然后重新编译打包成apk,这些步骤可以用AndroidKiller来轻松搞定,然后,用安卓逆向助手将class.dex文件提取出来,IDA打开!(在用IDA加载之前记得用Andorid stutio模拟器安装apk!)
在右侧的Function Window中用Ctrl+F快速定位到GetKey函数,我们可以在

此处下个断点,然后在查看变量列表中的值即可。

在菜单栏中选择Debugger -》Debugger options
勾选Suspend on process entry point
并在下面点击Set specific options,填写Package name和Activity,这些信息在AndroidMainifest.xml中都有显示

然后选择Debugger -》Debugger windows-》locals

按F9开始运行

此时可以点击中间的suspend按钮暂停,然后选择Debugger -》Debugger windows-》Locals,将Local列表拖出来方便观察

之后点击IDA左上角的绿色三角符号开始,在模拟器中输入任意字符串,看到v4的值就是正确的key了!

我们将这个字符串输入到程序中来验证一番

正确!

本文标题:FindPass

文章作者:Pino-HD

发布时间:2018年06月10日 - 16:06

最后更新:2018年06月10日 - 16:06

原始链接:https://pino-hd.github.io/2018/06/10/FindPass/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

坚持原创技术分享,您的支持将鼓励我继续创作!