博客
关于我
Android Hook-Frida框架-安装与初步使用
阅读量:598 次
发布时间:2019-03-12

本文共 1431 字,大约阅读时间需要 4 分钟。

实践是检验真理的唯一标准,程序设计更是如此。-----箴言

Frida的安装与初步使用:

1. 官网:

https://frida.re/docs/home/

https://www.frida.re/docs/javascript-api/

2. 安装:

(1)安装:

(sudo) pip install frida(sudo) pip install frida-tools

(2)验证python命令  :

cmd 输入python ,进入python
继续输入 import frida
如果什么都没显示,恭喜应该是安装好了。
例如:

aaaaa:frida$ pythonPython 3.8.2 (v3.8.2:7b3ab5921f, Feb 24 2020, 17:52:18) [Clang 6.0 (clang-600.0.57)] on darwinType "help", "copyright", "credits" or "license" for more information.>>> import frida>>> 

验证成功。

3. push frida-server:

push到木木模拟器:
先连接模拟器:adb kill-server && adb server && adb shell;
下载好对应的frida-server的版本,并且,push和改名到/data/local/tmp/frida-server,改权限并运行;
adb push frida-server /data/local/tmp/
adb shell
cd /data/local/tmp
chmod 755 frida-server
./frida-server (&)
1400

4. Frida工具使用:(1)frida-ps常用命令:

frida-ps --versionfrida-ps (-U)frida-ps --helpfrida-ps -hfrida-ps -jfrida-ps -afrida-ps -Uafrida-ps -Uai

(2)frida命令:

frida -h (--help)frida --version

(3)frida-trace 追踪某个函数:

它主要的工作方式是将脚本库注入到目标进程,在目标进程执行脚本。这里需要注意的是,它是将脚本库注入到已经启动的进程.

aaaaa:Downloads$ frida-trace -i "open" -U com.test.myglibtestappInstrumenting...                                                        open: Auto-generated handler at "/Users/user1/Downloads/__handlers__/gralloc.x86.so/open.js"Started tracing 1 function. Press Ctrl+C to stop.                                  /* TID 0x645 */ 11531 ms  open(path="/dev/ashmem", oflag=0x2) 14864 ms  open(path="/dev/ashmem", oflag=0x2)

 

转载地址:http://gftxz.baihongyu.com/

你可能感兴趣的文章
MySQL replace函数替换字符串语句的用法(mysql字符串替换)
查看>>
mysql replace用法
查看>>
Mysql Row_Format 参数讲解
查看>>
mysql select, from ,join ,on ,where groupby,having ,order by limit的执行顺序和书写顺序
查看>>
MySQL Server 5.5安装记录
查看>>
mysql server has gone away
查看>>
mysql slave 停了_slave 停止。求解决方法
查看>>
MySQL SQL 优化指南:主键、ORDER BY、GROUP BY 和 UPDATE 优化详解
查看>>
MYSQL sql语句针对数据记录时间范围查询的效率对比
查看>>
mysql sum 没返回,如果没有找到任何值,我如何在MySQL中获得SUM函数以返回'0'?
查看>>
mysql Timestamp时间隔了8小时
查看>>
Mysql tinyint(1)与tinyint(4)的区别
查看>>
mysql union orderby 无效
查看>>
mysql v$session_Oracle 进程查看v$session
查看>>
mysql where中如何判断不为空
查看>>
MySQL Workbench 使用手册:从入门到精通
查看>>
mysql workbench6.3.5_MySQL Workbench
查看>>
MySQL Workbench安装教程以及菜单汉化
查看>>
MySQL Xtrabackup 安装、备份、恢复
查看>>
mysql [Err] 1436 - Thread stack overrun: 129464 bytes used of a 286720 byte stack, and 160000 bytes
查看>>