使用jdax / dex2jar反编译后的unkowen类

问题描述 投票:0回答:1

使用jdax或dex2jar反编译后,我得到了真实类中的随机类和对象例如,在此类中,我发现了4个以上的未知对象pb4,w64,mb4,f84,h84

import android.app.Activity;
import android.app.Application;
import android.content.Context;
import android.provider.Settings;
import java.net.URISyntaxException;
import java.util.Random;
import org.json.JSONObject;

public class AppController extends Application {
    public static pb4 h;
    public static AppController i;
    public boolean b = false;
    public boolean c;
    public Activity d;
    public int e = 0;
    public w64 f;
    public int g;

    static {
        Class<AppController> cls = AppController.class;
    }

    public static pb4 a() {
        if (h == null) {
            try {
                h = mb4.a(f84.a);
            } catch (URISyntaxException e2) {
                e2.printStackTrace();
            }
        }
        return h;
    }

    public static synchronized AppController b() {
        AppController appController;
        synchronized (AppController.class) {
            appController = i;
        }
        return appController;
    }

    public void a(Context context) {
        h84.a().c(context);
        h84.a().a(context);
        h84.a().b(context);
    }

    public void a(pb4 pb4) {
        try {
            b().e = 1;
            String string = Settings.Secure.getString(getContentResolver(), "android_id");
            JSONObject jSONObject = new JSONObject();
            jSONObject.put("DeviceId", string);
            jSONObject.put("app_name", getString(R.string.app_name));
            jSONObject.put("package", "com.sandeepappd.videocallworldandvideo");
            jSONObject.put("version", "3");
            jSONObject.put("d_type", "Android");
            JSONObject jSONObject2 = new JSONObject();
            jSONObject2.put("en", "Mini_App_register");
            jSONObject2.put("data", jSONObject);
            pb4.a("req", jSONObject2);
        } catch (Exception e2) {
            e2.printStackTrace();
        }
    }

    public void onCreate() {
        super.onCreate();
        i = this;
        new Random().nextInt(3001);
        this.f = new w64(this);
    }

    public void onTerminate() {
        h84.a().a(getApplicationContext());
        super.onTerminate();
    }
}

使用jdax或dex2jar反编译后,我得到了真实类中的随机类和对象例如,在此类中,我发现了4个以上的未知对象pb4,w64,mb4,f84,h84其他许多类也发生了]

另一个示例https://ibb.co/QmxV0X0

java android dax decompiling smali
1个回答
0
投票

这是构建应用程序时混淆处理进度的结果。混淆的思想是使代码变得难以阅读,反编译后理解。有关更多信息,您应该搜索关键字Obfuscate

© www.soinside.com 2019 - 2024. All rights reserved.