07 2020 档案
摘要:破解Java应用程序,经常需要修改权限,每次都要借助工具,挨着查, 效率极低。 public final : 0x31 final : 0x30 public: 0x21
阅读全文
摘要:{ "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "python.jediEnabled": false
阅读全文
摘要:(command)、⌥(option)、⇧(shift)、⇪(caps lock)、⌃(control)、↩(return)、⌅(enter)
阅读全文
摘要:'https://github.com/numbbbbb/the-swift-programming-language-in-chinese/tree/gh-pages/source'.replace(/\/tree\/.*\//,'/trunk/') svn co xxxxxxx
阅读全文
摘要:突发奇想,想到一个密码的生成方式。 有很多用到密码的地方,如果自己设计一个好用又好记的密码,容易被破解。 又很多网站密码要求大写小写数字都包含。 有的还有长度限制。如果随机生成的话,又不好记,容易忘,也很麻烦。 我的思路是就用好记的字符串简单加密一下。密码设置8位比较好。安全性比较高。 也防止有的网
阅读全文
摘要:创建仓库: git init 添加新文件文件到stage: git add <file1> <file1> ... git add . 表示添加当前目录的改动到暂存区stage 保存stage到仓库(相当于快照): git commit -m "注释" 说明:stage就是暂存区 说明: 工作区可以
阅读全文
摘要:function snakeCaseToCamelCase(input){ let inputStr = JSON.stringify(input); var arr = new Array(inputStr.length); let isKey = false; let count = 0;//
阅读全文
摘要:local p_multi = Proto("multi", "MultiProto"); local f_Ver = ProtoField.uint8("multi.ver", "Ver", base.DEC, nil, 0xf0) local f_Type = ProtoField.uint8(
阅读全文
摘要:开始尝试对charles进行破解。 查看程序包中的内容,发现主体是Java写的。【charles.jar】 开始按照惯用的破解思路,找关键点。 1, 先找注册密钥的对话框 2. 顺藤摸瓜,找到注册按钮的事件 代码分析:从结果上看,主要看FwRs2的值. 如果为null 则表示注册成功。 不为空则弹出
阅读全文