摘要:
void GetDir(string dir) { DirectoryInfo directoryInfo = new DirectoryInfo(dir); var directroies = directoryInfo.GetDirectories(); foreach (var directr 阅读全文
摘要:
解决方法,用高版本的mysql.data.dll ,对应的用高版本的 NET Framework 这和问题 的原因是 mysql版本在8.0前后的密码加密算法不同。 在8.0之前采用的是mysql_native_password 在8.0之后采用的是caching_sha2_password 如果你 阅读全文
摘要:
一直提示有相同版本或者高版本,但是控制面板里还找不到。 下载这个 开发者工具包,安装就可以了。。 阅读全文
摘要:
class HotKey { //如果函数执行成功,返回值不为0。 //如果函数执行失败,返回值为0。要得到扩展错误信息,调用GetLastError。 [System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = tr 阅读全文
摘要:
frida是多平台hook框架,类似安卓的xposed框架,详情百度。 1、安装python ,我是python3.8 并建好环境变量 2、添加pip的环境变量 3.8自带pip,在 python安装目录下的 scripts文件夹 3、用 pip 安装frida 和 frida-tools 4、下载 阅读全文
摘要:
自定义类,枚举类: final Class<?> class1 = XposedHelpers.findClass("classname", classLoader); 其他的可以看 函数的 Smali代码,通过这个确定参数类型。 阅读全文
摘要:
request.ContentType = "application/json; charset=utf-8"; 这种的postdata 在写入 Stream的时候要确保编码是 utf-8 string postData = "中文乱码问题"; UTF8Encoding encoding = new 阅读全文
摘要:
如抓 https 设置好代理之后出现 网络等问题,无法正常抓包。 可以用 JustTrustMe.apk+Xposed框架,然后安装FiddlerRoot.cer 证书。然后再抓。 安装JustTrustMe 容易造成 无法正常上网,抓完包,在xposde的模块里取消,重启手机就可以正常上网了。 如 阅读全文
摘要:
HttpWebRequest 多线程一定要设置 System.Net.ServicePointManager.DefaultConnectionLimit = 512; 否则跑不起,很多超时。。 另外 HttpWebResponse 用完一定要close 。。。 阅读全文
摘要:
这个情况是: 项目的gradle的版本和Android Studio 的 gradle版本不一致造成的。。。 SSL peer shut down incorrectly 阅读全文