Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python的接口能不能增加点功能 #165

Open
ohyeah521 opened this issue May 17, 2024 · 0 comments
Open

python的接口能不能增加点功能 #165

ohyeah521 opened this issue May 17, 2024 · 0 comments

Comments

@ohyeah521
Copy link

1、获取某个类下面的所有方法
2、能否添加对成员变量或者局部变量的重命名功能,以便实现自动反混淆,例如下面的代码:

    public static void a(Context p0,String p1,String p2,String p3,String p4){
       Editor uEditor = p0.getSharedPreferences("config", 0).edit();
       uEditor.putString("ip", p1);
       uEditor.putString("username", p2);
       uEditor.putString("password", p3);
       uEditor.putString("ischeck", p4);
       uEditor.commit();
    }

对一些类似putString这样的函数,前面的字符串就是后面的变量的含义,因此可以直接用前面的字符串对后面的变量进行重命名

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant