美文网首页frida
frida常用adb命令

frida常用adb命令

作者: warmi_ | 来源:发表于2020-05-22 11:12 被阅读0次

    adb shell "dumpsys activity activities | grep mFocusedActivity" 当前包名,进程
    adb logcat -s AndroidRuntime
    adb logcat -c 清日志
    adb logcat I指定日志类型
    adb shell getprop ro.product.cpu.abi 查看操作系统

    adb connect 127.0.0.1:7555 MUMU模拟器
    adb connect 127.0.0.1:62001 夜游神模拟器
    adb connect 127.0.0.1:21503 逍遥模拟器
    adb connect localhost:5555 蓝叠
    adb reboot

    adb kill-server && adb server
    adb start-server
    adb kill-server

    frida -U -f app com.taobao.htao.android
    frida -U -f com.taobao.htao.android --no-pause
    %resume

    netstat -ano | findstr "PID" 多开模拟器后,查看模拟器端口号列表 ,如netstat -ano | findstr "215"【逍遥模拟器】

    相关文章

      网友评论

        本文标题:frida常用adb命令

        本文链接:https://www.haomeiwen.com/subject/zlfqahtx.html