上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 125 下一页
摘要: 算法还原 白盒还原 直接扣算法, 或者是标准算法 理解对方 js 的意思, 能够翻译成其他语言, 可能会占用较长的分析时间 黑盒还原 直接整体调用(加密复杂, 更新频繁, 整体关联度高) 不需要关注算法逻辑, 需要模拟浏览器环境, 需要对抗环境检测 rpc 调用 算法复杂度高, 浏览器环境难以模拟 阅读全文
posted @ 2021-09-16 19:06 公众号python学习开发 阅读(7269) 评论(0) 推荐(4)
摘要: 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学习开发 阅读(2445) 评论(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学习开发 阅读(499) 评论(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学习开发 阅读(232) 评论(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学习开发 阅读(171) 评论(0) 推荐(0)
摘要: 获取安装在手机里的app包路径,提取app用的 adb shell pm path com.sina.weibo adb shell dumpsys activity activities 能看到当前app所在的进程和activity(也就是打开的页面),进而方便使用frida定位 其他的还有 ad 阅读全文
posted @ 2021-08-27 17:04 公众号python学习开发 阅读(60) 评论(0) 推荐(0)
摘要: adb shell dumpsys activity 查看ActvityManagerService 所有信息 adb shell dumpsys activity activities 查看Activity组件信息 adb shell dumpsys activity services 查看Ser 阅读全文
posted @ 2021-08-27 17:03 公众号python学习开发 阅读(60) 评论(0) 推荐(0)
摘要: function loadDexfile(dexfile) { Java.perform(function() { Java.openClassFile(dexfile).load(); }); }; 传入dexfile的路径即可 之后就可以直接使用dex文件的类或者方法了。 阅读全文
posted @ 2021-08-27 13:23 公众号python学习开发 阅读(306) 评论(0) 推荐(0)
摘要: function main(){ write_file1() write_File2() } function write_file1(){ //使用firda的自带api var file = new File("/data/local/tmp/mytest.dat") file.write("1 阅读全文
posted @ 2021-08-27 10:45 公众号python学习开发 阅读(845) 评论(0) 推荐(0)
摘要: function bytesToString(arr) { var str = ''; arr = new Uint8Array(arr); for (var i in arr) { str += String.fromCharCode(arr[i]); } return str; } 阅读全文
posted @ 2021-08-25 17:38 公众号python学习开发 阅读(408) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 125 下一页