Hook复现——imei,imsi

0x00 前言

本来想要在论坛里发的,但是因为太普遍了,所以这里就不献丑了,作为自己的一个笔记吧。

0x01 App demo 实现

主要函数:

public class MainActivity extends AppCompatActivity {
private Button bt;
private TextView t1,t2;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        t1=findViewById(R.id.imei);
        t2=findViewById(R.id.imsi);
        findViewById(R.id.ok).setOnClickListener(new View.OnClickListener() {
            @SuppressLint("MissingPermission")
            @Override
            public void onClick(View view) {
                TelephonyManager tm = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
                try {
                    t1.setText(tm.getDeviceId());
                    t2.setText(tm.getSubscriberId());
                }catch (Exception e) {
                    Log.d("XLZH", e.getMessage());
                    e.printStackTrace();
                }
            }
        });
    }
}

界面:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.hanlei.hook_demo.MainActivity">

   <Button
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="gogogo"
       android:id="@+id/ok"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imei"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imsi"/>

LinearLayout>

没有对权限进行获取
解决方案参考这里。

http://blog.csdn.net/fenggering/article/details/53432401

测试

Hook复现——imei,imsi_第1张图片

吐槽

你说那个写博客的人从哪里抄的,自己不知道去试一下,有坑都不说。

0x02 hook 掉

Hook复现——imei,imsi_第2张图片

hook 很稳的就过去了。没有什么波澜。

你可能感兴趣的:(Android逆向-操刀天下)