首页 > 其他分享 >【第一章】frida基础配置

【第一章】frida基础配置

时间:2022-09-20 09:22:09浏览次数:67  
标签:tmp exe 配置 server frida android 第一章 local

python环境

➜ ~ python --version
Python 3.9.13

➜ ~ pip --version
pip 22.2.2 from D:\Programs\Python\Python39\lib\site-packages\pip (python 3.9)

安装frida

pip install frida-tools

安装wheel(非必须)

pip install wheel

检查是否安装成功

➜ ~ frida-ps.exe
PID Name
----- ---------------------------
12300 AcAppDaemon.exe
19548 ApplicationFrameHost.exe
4660 BingSvc.exe
7760 BingWallpaperApp.exe
21704 Cortana.exe
3420 FileCoAuth.exe
10316 HipsTray.exe
9736 HwMdcCenter.exe
19816 IDBWM.exe
21544 IGCC.exe
19176 IGCCTray.exe

手机端配置

查看手机架构

➜ ~ adb shell getprop ro.product.cpu.abilist
arm64-v8a,armeabi-v7a,armeabi

查看frida版本

➜ ~ frida --version
15.2.2

手机端server下载地址

https://github.com/frida/frida/releases

找到对应的版本的server下载

 

解压,重命名并推送到手机

➜ Downloads mv .\frida-server-15.2.2-android-arm64 frida-server
➜ Downloads adb push .\frida-server /data/local/tmp/
.\frida-server: 1 file pushed, 0 skipped. 77.5 MB/s (47188552 bytes in 0.581s)

赋予权限并启动(需要root权限)

➜ Downloads adb shell
gauguinpro:/ $ su

gauguinpro:/ # cd /data/local/tmp/
gauguinpro:/data/local/tmp # ls
frida-server

gauguinpro:/data/local/tmp # chmod +x frida-server
gauguinpro:/data/local/tmp # ./frida-server &
[1] 5358

另起一个终端

➜ ~ frida-ps.exe -U
PID Name
---- ------------------------------------------------------------------
3656 .dataservices
2678 .qtidataservices
3048 .qtidataservices
1277 ATFWD-daemon
3726 AudioFX
4585 Clash for Android
4834 Magisk
3755 MissLee
2684 SIM 卡工具包
3912 Telegram
1135 adb_root
5234 adbd
1483 adpl
1157 adsprpcd
1158 adsprpcd
2738 android.ext.services
597 [email protected]
821 android.hardware.audio.service
1313 [email protected]_gauguin
825 [email protected]
826 [email protected]_64

 

 基础环境配置结束

标签:tmp,exe,配置,server,frida,android,第一章,local
From: https://www.cnblogs.com/tide-sec/p/16709880.html

相关文章

  • Android Studio 版本历史 与运行配置
    官网地址:国内访问地址:https://developer.android.google.cn/    DownloadAndroidStudio&AppTools-AndroidDevelopers(google.cn) Android开发者 | An......
  • Spring(六):Spring配置说明
    一、bean<beanid="user"class="com.jms.pojo.User"name="aaa,bbb"><constructor-argname="name"value="jms"/></bean> bean有三个属性:1.id......
  • ASP.NET Core 读取配置文件JSON 数据、数组
    配置访问接口publicIConfiguration_Config;public类名(IConfigurationConfig){_Config=Config;}配置文件数据示例{"AllowedHosts":"*","......
  • 音响配置日志
    音响配置日志开始初始化SDKInittcpNetwork-----------Currentnetworkmode:WAN-----------Networkinitializing,pleasewait...网络初始化成功!Music=D:/m1.m......
  • 在Linux环境下使用vscode配置C++调试环境
    在Linux环境下使用vscode配置C++调试环境序起因在课程CMU15445LAB0的编写以及debug过程中充斥着assert以及printf这种不优雅的debug方式,因此决定直接进行工业革命!使用......
  • linux统信OS配置C#+VScode的asp.net MVC开发环境(参考Ubuntu)
    NETCore是一个免费和开源的软件框架,设计时考虑到了Linux和macOS。它是.NET框架的跨平台继承者,适用于Linux、macOS和Windows系统。Dotnet核心框架已经为引导项目提供了脚......
  • 【sonic】安装配置sonic及接入设备
    1、效果图  2、安装java15及以上版本并配置环境变量添加JAVA_HOME变量  添加CLASSPATH  添加pathhttps://blog.csdn.net/weixin_54557847/article/deta......
  • uniapp配置网络请求
    网络请求自己配置的uni网络请求 由于平台的限制,小程序项目中不支持axios,而且原生的uni.request()API功能较为简单,不支持拦截器等全局定制的功能。因......
  • GitHub不再支持密码验证解决方案:SSH免密与Token登录配置
    今天提交代码,push到GitHub上,突然出现这个问题。remote:SupportforpasswordauthenticationwasremovedonAugust13,2021.Pleaseuseapersonalaccesstokenins......
  • linux chrony 时钟服务配置
          chrony是ntp的改进,提供更快、更精准的时钟同步服务且兼容ntp,自RHEL7开始提供,RHEL8开始官方不再支持ntp,chrony包括chronyd与chronyc2部分,chronyd是后台......