原创 xposed開發6 - 微信首頁添加按鈕

xposed開發6 - 微信首頁添加按鈕 [原創]Xposed__給微信加個按鈕 原文章如上, 過程看了沒看懂, 直接跑代碼看效果 // 微信首頁添加按鈕 hookClass = "com.tencent.mm.ui.Launch

原创 xposed開發8- hook微信聊天消息數據庫插入操作

xposed開發8- hook微信聊天消息數據庫插入操作 // hook微信聊天消息數據庫插入操作 hookClass = "com.tencent.wcdb.database.SQLiteDatabase"; hookMethodN

原创 mac使用adb命令

打開.bash_profile文件, 添加 export PATH=${PATH}:/Users/xxx/Library/Android/sdk/platform-tools:/Users/xxx/Library/Android/sd

原创 xposed開發5-修改微信我的零錢的金額

xposed開發5-修改微信我的零錢的金額 終於在virtualxposed上安裝好微信了. 1.找到零錢的界面. 進入adb adb shell 開發android微信零錢界面 dumpsys activity | grep

原创 VirtualXposed開發1

VirtualXposed開發1 1.安裝 git clone https://github.com/android-hacker/VirtualXposed.git cd VirtualXposed git submodule up

原创 VirtualXposed開發3

VirtualXposed開發3 1.測試目標apk用kotlin寫能不能hook fun click(view: View) { Toast.makeText(this, toastMessage(), Toast.LENG

原创 VirtualXposed開發2

VirtualXposed開發2 爲什麼使用VirtualXposed不用Xposed? 因爲需要root, 還要每次重啓手機, 那部破小米試了半天沒root成功, 直接放棄了. xpose教程, 在網上找到這個教程, 下面實踐一

原创 VirtualXposed開發5

VirtualXposed開發5 本來想寫個微信防撤回練下手的, VirtaulXposed竟然登錄不了微信, 頭大, 只能試支付寶了

原创 css圖片居中

css圖片居中 <div class="main_view"> <img src="/static/images/loading.gif"></div> </div> .main_view { text-align: ce

原创 vue-router跳轉頁面傳query參數

vue-router跳轉頁面傳query參數 that.$router.replace({ path: '/pay', query: { id: 1 } })

原创 ios md5加密

ios md5加密 #import <CommonCrypto/CommonDigest.h> + (NSString *)md5:(NSString *)string { const char *cStr = [strin

原创 python md5加密

python md5加密 import hashlib hl = hashlib.md5() sign_string = 'hello world' hl.update(sign_string.encode(encoding='ut

原创 ios設置狀態欄字體顏色

ios設置狀態欄字體顏色 1.全局只有一個顏色 View controller-based status bar appearance = NO; 2.需要頁面有白色和黑色 View controller-based status

原创 mac使用autojump

mac使用autojump 1. 安裝zsh:sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 2.

原创 ios隨機數

ios隨機數 int x = arc4random() % 100;