上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 49 下一页
摘要: Android设备的唯一标识符 1.IMEI (手机的身份证号码) IMEI(International Mobile Equipment Identity)是国际移动设备身份码的缩写,国际移动装备辨识码,是由15位数字组成的”电子串号”,它与每台移动电话机一一对应,而且该码是全世界唯一的。每一只移 阅读全文
posted @ 2021-11-27 18:45 阿布_alone 阅读(1552) 评论(0) 推荐(0)
摘要: JS输出为[object Object] 如何解决 [object Object] 直接转成json 二行js代码搞定 var str = Java.use('java.lang.String')console.log('\nstr\n', str.$new(args1)) Des3Encrypt. 阅读全文
posted @ 2021-11-27 18:30 阿布_alone 阅读(1183) 评论(0) 推荐(0)
摘要: 代码: def genImeiLuhn(digits14): digit15 = 0 digits14 = str(digits14) for num in range(14): if num % 2 == 0: digit15 = digit15 + int(str(digits14)[num]) 阅读全文
posted @ 2021-11-27 11:36 阿布_alone 阅读(621) 评论(0) 推荐(0)
摘要: github地址:GitHub - hluwa/ZenTracer: an android method tracer gui tool base-on frida 使用: 1.python ZenTracer.py 2.action 正则匹配类名 3.start 阅读全文
posted @ 2021-10-11 00:15 阿布_alone 阅读(872) 评论(0) 推荐(0)
摘要: 使用方法: frida -U -l tu.js -f com.xxxxxx --no-pause 代码: var N_ENCRYPT_MODE = 1 var N_DECRYPT_MODE = 2 function showStacks() { var Exception = Java.use("j 阅读全文
posted @ 2021-10-10 23:45 阿布_alone 阅读(3190) 评论(1) 推荐(0)
摘要: 代码: Java.perform(function() { var cls_Activity = Java.use("android.app.Activity"); cls_Activity.onCreate.overload('android.os.Bundle').implementation 阅读全文
posted @ 2021-10-10 19:29 阿布_alone 阅读(1503) 评论(0) 推荐(0)
摘要: 一.Frida实现okhttp3.Interceptor 转自:https://bbs.pediy.com/thread-252129.htm 注意: 1.最好不要有xposed环境 2.启动方式 frida -U -l yang.js -f xxx --no-pause 代码: function 阅读全文
posted @ 2021-10-10 18:18 阿布_alone 阅读(2234) 评论(0) 推荐(0)
摘要: 自己操纵的注意点: 1.不能有xposed环境 2.okhttpfind.dex要换成重新打包的,去仓库大issue能找到 Frida 实现拦截okhttp的脚本,只针对Android端使用okhttp框架发送http请求的拦截,用途不大,仅学习交流使用! github : https://gith 阅读全文
posted @ 2021-10-10 00:12 阿布_alone 阅读(1866) 评论(0) 推荐(0)
摘要: 需要把特殊字符替换到才能使用loads方法: import json import re import requests headers = { 'authority': 'www.ixigua.com', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; W 阅读全文
posted @ 2021-09-29 22:37 阿布_alone 阅读(651) 评论(0) 推荐(0)
摘要: 问题: 对接接口,发现对方的接口使用form-data进行数据提交,直接使用requests库的data参数对接,会报参数错误: params = { 'timestamp':timestamp, 'nonce':nonce, 'apikey':APIKEY, 'signature': signat 阅读全文
posted @ 2021-09-25 10:01 阿布_alone 阅读(1948) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 49 下一页
TOP