上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 123 下一页
摘要: 首先挂载system mount -o remount rw /system 但是出现了错误,mount: '/system' not in /proc/mounts,这个时候可以尝试挂在/ mount -o rw,remount / 但是不要忘记将状态重置为" ro"。 mount -o ro,r 阅读全文
posted @ 2021-10-14 14:28 公众号python学习开发 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 安装 android studio下面ndk目录的clang export PATH="/Users/chennan/Library/Android/sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/darwin-x86_64/bin:$PATH" 执行命令 阅读全文
posted @ 2021-10-09 11:02 公众号python学习开发 阅读(720) 评论(0) 推荐(0) 编辑
摘要: GDB gdb安装 brew update brew install gdb 然后将gdbserver push到手机 cd /Users/chennan/Library/Android/sdk/ndk/21.3.6528147/prebuilt/android-arm/gdbserver adb 阅读全文
posted @ 2021-10-09 10:59 公众号python学习开发 阅读(1104) 评论(0) 推荐(0) 编辑
摘要: 解包apk apktool -r d xxx.apk -o test 重打包apk apktool b test -o xxx2.apk apk签名 下载项目的jar包https://github.com/patrickfav/uber-apk-signer/releases java -jar u 阅读全文
posted @ 2021-09-24 23:16 公众号python学习开发 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 流程图 4组线性函数 F(x,y,z) = (x & y) | (~x & z) G(x,y,z) = (x & z) | (y & ~z) H(x,y,z) = x ^ y ^ z I(x,y,z) = y ^ ( x | ~z) 移位数组如下 0~15次 [7, 12, 17, 22] 16~3 阅读全文
posted @ 2021-09-22 18:12 公众号python学习开发 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 算法还原 白盒还原 直接扣算法, 或者是标准算法 理解对方 js 的意思, 能够翻译成其他语言, 可能会占用较长的分析时间 黑盒还原 直接整体调用(加密复杂, 更新频繁, 整体关联度高) 不需要关注算法逻辑, 需要模拟浏览器环境, 需要对抗环境检测 rpc 调用 算法复杂度高, 浏览器环境难以模拟 阅读全文
posted @ 2021-09-16 19:06 公众号python学习开发 阅读(5796) 评论(0) 推荐(3) 编辑
摘要: Frida 启动 attach 启动 直接附加到指定包名的应用中 BASH frida -U com.kevin.android -l hook.js --no-pause 直接附加到当前应用中 BASH frida -UF -l hook.js --no-pause import sys impo 阅读全文
posted @ 2021-09-16 18:57 公众号python学习开发 阅读(2177) 评论(0) 推荐(0) 编辑
摘要: var _push = Array.prototype.push Array.prototype.push=function(){ if(typeof arguments[0] "string"){ console.log("hook array"); _push.apply(this,argume 阅读全文
posted @ 2021-09-15 21:38 公众号python学习开发 阅读(382) 评论(0) 推荐(0) 编辑
摘要: djy.java public class djy { public static void main(String[] args) { C0445 c0445 = new C0445(); String str1 = "9C0E7BB121F0"; String str2 = "kele"; St 阅读全文
posted @ 2021-09-15 18:24 公众号python学习开发 阅读(207) 评论(0) 推荐(0) 编辑
摘要: class Solution(): def merge(self, nums1, m, nums2, n): """ :type nums1: List[int] :type m: int :type nums2: List[int] :type n: int :rtype: void Do not 阅读全文
posted @ 2021-09-13 13:02 公众号python学习开发 阅读(138) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 123 下一页