feat: MariBank 风控 bypass、澳洲银行 Hook 与 reverse 逆向工作区
新增 MariBank/SeaBank PH Root 与 SHPSSDK bypass、riskToken 净化及 Up/Suncorp/ubank 消息 Hook;整理 reverse/ 脚本与 Frida 工具链,并补充当日工作说明文档。
This commit is contained in:
29
scripts/logcat-maribank.ps1
Normal file
29
scripts/logcat-maribank.ps1
Normal file
@@ -0,0 +1,29 @@
|
||||
# MariBank / Hook 相关 logcat(adb 不在 PATH 时也可用)
|
||||
param(
|
||||
[switch]$Clear,
|
||||
[switch]$Follow
|
||||
)
|
||||
|
||||
$ErrorActionPreference = "Stop"
|
||||
$sdk = "C:\Users\Administrator\AppData\Local\Android\Sdk"
|
||||
$adb = Join-Path $sdk "platform-tools\adb.exe"
|
||||
|
||||
if (-not (Test-Path $adb)) {
|
||||
Write-Host "adb not found at $adb" -ForegroundColor Red
|
||||
exit 1
|
||||
}
|
||||
|
||||
$pattern = "MariBankRoot|1201|seabank|ClashMeta|LSPosed-Bridge.*notiMessage"
|
||||
|
||||
if ($Clear) {
|
||||
& $adb logcat -c
|
||||
Write-Host "logcat cleared." -ForegroundColor Green
|
||||
exit 0
|
||||
}
|
||||
|
||||
if ($Follow) {
|
||||
Write-Host "Following logcat (Ctrl+C to stop)..." -ForegroundColor Cyan
|
||||
& $adb logcat | Select-String -Pattern $pattern
|
||||
} else {
|
||||
& $adb logcat -d | Select-String -Pattern $pattern
|
||||
}
|
||||
Reference in New Issue
Block a user