摘要: 执行下下面的更新再次安装就可以了。 python -m pip install --upgrade pip setuptools python -m pip install pip setuptools wheel -U 阅读全文
posted @ 2024-09-14 15:38 公众号python学习开发 阅读(2) 评论(0) 推荐(0) 编辑
摘要: apt update -y apt install zsh -y apt install autojump -y sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.s 阅读全文
posted @ 2024-09-11 17:06 公众号python学习开发 阅读(1) 评论(0) 推荐(0) 编辑
摘要: note_tweet = each_item.get("note_tweet",{}).get("note_tweet_results",{}).get("result",{}).get("text","") 阅读全文
posted @ 2024-06-27 16:33 公众号python学习开发 阅读(12) 评论(0) 推荐(0) 编辑
摘要: tom@ubuntu:~/androidSource/aosp$ source build/envsetup.sh tom@ubuntu:~/androidSource/aosp$ lunch You're building on Linux Lunch menu... pick a combo: 阅读全文
posted @ 2024-05-21 16:31 公众号python学习开发 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 注意事项: 如果是登陆过google账号的pixel一定要退出,否则刷机之后上来有个联网验证,还跳过不了,必须用能FQ的wifi才行。 修改源 更改为国内的源 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak sudo vi /etc/a 阅读全文
posted @ 2024-04-17 13:39 公众号python学习开发 阅读(40) 评论(2) 推荐(0) 编辑
摘要: 必须要的依赖:apt install unrar from rarfile import RarFile io_buffer = io.BytesIO(response.body) with RarFile(io_buffer) as fs: for each in fs.infolist(): c 阅读全文
posted @ 2024-04-03 17:44 公众号python学习开发 阅读(67) 评论(0) 推荐(0) 编辑
摘要: chennandeiPhone:~ root# launchctl load /var/jb/Library/LaunchDaemons/re.frida.server.plist chennandeiPhone:~ root# launchctl unload /var/jb/Library/La 阅读全文
posted @ 2024-03-28 10:52 公众号python学习开发 阅读(73) 评论(0) 推荐(0) 编辑
摘要: # # coding: utf-8 # # # 用来存储一些通用模块 from PyPDF2 import PdfReader # pdf的读取方法 from PyPDF2 import PdfWriter # pdf的写入方法 from Crypto.Cipher import AES # 高加密 阅读全文
posted @ 2024-01-30 20:08 公众号python学习开发 阅读(267) 评论(0) 推荐(0) 编辑
摘要: magisk检测 检测方式为: 1.遍历maps文件,找到app_process模块的内存,遍历app_process内存,查找magisk和MAGISK字符串。 2.从给定的变量v282开始,进行栈残留检查,从当前位置检查至栈底,查找magisk和MAGISK字符串。 3.在/proc/self/ 阅读全文
posted @ 2023-11-21 22:25 公众号python学习开发 阅读(81) 评论(0) 推荐(0) 编辑
摘要: ``` frida==15.2.2 frida-tools==10.4.1 objection==1.11.0 ``` 阅读全文
posted @ 2023-09-07 11:54 公众号python学习开发 阅读(182) 评论(0) 推荐(0) 编辑