摘要:
打开浏览器输入手机,此时的浏览器窗口里面的链接为。 内容整理自网络: 未登录时的: https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd=%E6%89%8B%E6%9C%BA&fenlei=256&rsv_pq=c4a 阅读全文
摘要:
1.首先在MainActitvty里的Onclick启动服务 @Override public void onClick(View view) { switch (view.getId()) { case R.id.start_server: Intent startIntent = new Int 阅读全文
摘要:
在开发的时候发现Android系统申请读写权限没效果,调查发现安卓6.0以后需要动态申请权限。 在OnCreate里面加入下面代码 if (Build.VERSION.SDK_INT > Build.VERSION_CODES.LOLLIPOP) { if (ActivityCompat.check 阅读全文
摘要:
1.自己写了个xposed插件语法错误开不开机 因为代码是写在了handleLoadPackage前面所以导致开不开机,代码如下 private String mCurrApkPath = Environment.getExternalStorageDirectory().getPath() + " 阅读全文
摘要:
1.创建不一样的ida_rsa cd ~/.ssh mkdir githubssh ssh-keygen -t rsa -f ~/.ssh/githubssh/id_rsa.github -C "xxxx@qq.com" 之后就是把id_rsa.github.pub文件的内容复制到github的se 阅读全文
摘要:
function UnicodeEnc(str){ let value ='' for(let i=0;i<str.length;i++){ value+="\\u"+("0000"+parseInt(str.charCodeAt(i)).toString(16)).substr(-4); retu 阅读全文
摘要:
第一步 git reflog 第二步找到目标分支 c27d274 (HEAD -> master) HEAD@{12}: commit: add spider 第三步 git reset --hard c27d274 阅读全文
摘要:
def shiftRound(array, num): ''' :param array: 需要循环左移的数组 :param num: 循环左移的位数 :return: 使用Python切片,返回循环左移num个单位的array ''' return array[num:] + array[:num 阅读全文
摘要:
function main(){ Java.perform(function(){ console.log("[*] I am a hook function"); var strStr = Module.findExportByName("libc.so", "strstr"); console. 阅读全文
摘要:
在zshrc最下面加上下面这些,程序自己加的不能用,需要手动调整 export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" if command -v pyenv 1>/dev/null 2>&1; then eval 阅读全文
摘要:
(function () { var iframe = document.createElement('iframe'); document.body.appendChild(iframe); window.console = iframe.contentWindow.console }()); 阅读全文
该文被密码保护。 阅读全文
摘要:
// ==UserScript== // @name 网页通用验证码 // @namespace http://tampermonkey.net/ // @version 3.0. // @description 解放眼睛和双手,自动识别并填入数字,字母验证码。新版本支持识别滑动验证码。 // @a 阅读全文
摘要:
l="{\"activeSearch\":false,\"bizFrom\":\"home\",\"disableHierarchicalSort\":0,\"forceUseInputKeyword\":false,\"forceUseTppRepair\":false,\"fromFilter\ 阅读全文
摘要:
1.刷入安卓8系统 adb reboot bootloader 命令来使手机进入到fastboot模式。 2.下载twrip 需要两个文件 地址在这里https://dl.twrp.me/sailfish/ 下载下面两个文件 twrp-pixel-installer-sailfish-3.3.0-0 阅读全文
摘要:
pm path xxx.xxx.xxx.xx 阅读全文
摘要:
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 阅读全文
摘要:
def put_unconditional_branch(source, destination): offset = (destination - source - 4) >> 1 if offset > 2097151 or offset < -2097152: raise RuntimeErr 阅读全文
摘要:
dlopen 打开一个库,获取句柄。打开so文件获取句柄(看作基地址) dlsym 在打开的库中查找符号的值。 (so里面查某个函数地址) dlclose 关闭句柄。 dlerror 返回一个描述最后一次调用dlopen、dlsym,或 dlclose 的错误信息的字符串。 #import <dlf 阅读全文
摘要:
function hook_shield(){ var Builder =Java.use("okhttp3.Request$Builder") Builder.header.implementation = function(key,value){ if(typeof this.build().u 阅读全文