摘要: [15:05:19 047]result, md5=af22f9686e00ae387cce3e46ea3f4c6d, hex=000000000000000000000000000000001c0c88645a91fb5e5ab281c6e76bc335aa3a0138eb86ef1ad422db 阅读全文
posted @ 2024-02-20 09:43 山水无期 阅读(127) 评论(1) 推荐(0) 编辑
摘要: XposedBridge.hookAllMethods(XposedHelpers.findClassIfExists("android.app.ActivityThread",loadPackageParam.classLoader), "performLaunchActivity", new X 阅读全文
posted @ 2023-04-07 00:41 山水无期 阅读(212) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import idaapi import idc import re import ida_dbg import ida_idd from idaapi import * from collections import OrderedDict impo 阅读全文
posted @ 2023-03-21 15:45 山水无期 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 说明:jni中没有try...catch... throw 等方法来处理异常,引发的异常的env对象不处理,会继续运行至下一个env对象之前。此时需要通过env来处理异常。分为三种,直接清除,抛给java,程序退出,代码如下:(结合动态注册的文章食用) #include <jni.h> #inclu 阅读全文
posted @ 2022-12-08 03:17 山水无期 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 说明:java中使用的是utf-16 c++中使用的utf-8;同时JNI 提供一系列java 和c++之间转换的方法,具体如下。 extern "C" JNIEXPORT jstring JNICALL Java_com_yuanrenxue_course6_14_MainActivity_dem 阅读全文
posted @ 2022-12-08 03:04 山水无期 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 说明:通过JNI在c++代码中实现java层的功能,以达到实现隐藏关键函数功能或入口的问题 1、使用的java类 package com.yuanrenxue.course6_4; import android.util.Log; import androidx.annotation.NonNull 阅读全文
posted @ 2022-12-08 02:44 山水无期 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 说明:在java函数的入口比较容易分析, 把activity的生命周期或者关键函数通过放在so层,分析起来就困难多了 1、在MainActivity中 package com.demo.nativate; import androidx.appcompat.app.AppCompatActivity 阅读全文
posted @ 2022-12-07 13:05 山水无期 阅读(40) 评论(0) 推荐(0) 编辑
摘要: https://plugins.zhile.io IDE Eval Reset 阅读全文
posted @ 2022-11-19 00:38 山水无期 阅读(33) 评论(0) 推荐(0) 编辑
摘要: git的使用 上传代码git clone ....git branch new_branchgit checkout branch_namegit add .git commit -m ""git push origin branch_namegit tag tag_namegit push ori 阅读全文
posted @ 2021-11-12 19:44 山水无期 阅读(73) 评论(0) 推荐(0) 编辑
摘要: git的常用命令 git配置用户名和邮箱地址git config --global user.name “your_user_name”git config --global user.email your_email@domain.comgit config --list 查看配置信息 创建+提交 阅读全文
posted @ 2021-10-31 15:53 山水无期 阅读(43) 评论(0) 推荐(0) 编辑