上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 123 下一页
摘要: def shiftRound(array, num): ''' :param array: 需要循环左移的数组 :param num: 循环左移的位数 :return: 使用Python切片,返回循环左移num个单位的array ''' return array[num:] + array[:num 阅读全文
posted @ 2022-03-25 16:38 公众号python学习开发 阅读(346) 评论(0) 推荐(0) 编辑
摘要: function main(){ Java.perform(function(){ console.log("[*] I am a hook function"); var strStr = Module.findExportByName("libc.so", "strstr"); console. 阅读全文
posted @ 2022-03-25 11:20 公众号python学习开发 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: 在zshrc最下面加上下面这些,程序自己加的不能用,需要手动调整 export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" if command -v pyenv 1>/dev/null 2>&1; then eval 阅读全文
posted @ 2022-03-18 17:53 公众号python学习开发 阅读(891) 评论(0) 推荐(0) 编辑
摘要: (function () { var iframe = document.createElement('iframe'); document.body.appendChild(iframe); window.console = iframe.contentWindow.console }()); 阅读全文
posted @ 2022-03-17 15:39 公众号python学习开发 阅读(51) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-03-07 14:59 公众号python学习开发 阅读(2) 评论(0) 推荐(0) 编辑
摘要: // ==UserScript== // @name 网页通用验证码 // @namespace http://tampermonkey.net/ // @version 3.0. // @description 解放眼睛和双手,自动识别并填入数字,字母验证码。新版本支持识别滑动验证码。 // @a 阅读全文
posted @ 2022-03-07 11:09 公众号python学习开发 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: l="{\"activeSearch\":false,\"bizFrom\":\"home\",\"disableHierarchicalSort\":0,\"forceUseInputKeyword\":false,\"forceUseTppRepair\":false,\"fromFilter\ 阅读全文
posted @ 2022-03-03 15:09 公众号python学习开发 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 首先解锁 adb reboot bootloader fastboot flashing unlock 0x1.刷入系统 强烈推荐使用 android8 的系统的,android10 的因为安全等级增加了问题比较多。 0x2.下载对应文件 https://dl.google.com/dl/andro 阅读全文
posted @ 2022-03-02 22:39 公众号python学习开发 阅读(1212) 评论(0) 推荐(0) 编辑
摘要: pm path xxx.xxx.xxx.xx 阅读全文
posted @ 2022-02-21 16:54 公众号python学习开发 阅读(142) 评论(0) 推荐(0) 编辑
摘要: java -jar dex-finder.jar -c com.taobao.wireless.security.adapter.JNICLibrary -f xianyu7.3.50 -r [main] INFO com.leadroyal.dex.CommandParser - parse co 阅读全文
posted @ 2022-02-21 11:27 公众号python学习开发 阅读(131) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 123 下一页