Android 文件系统钩子

发布于 2024-10-23 23:34:27 字数 145 浏览 3 评论 0原文

请告知是否可以拦截/监控 Android 设备上的文件 I/O。例如,在普通 Linux 上,我们可以使用 LSM 或系统调用陷阱。
我希望将所有新创建的文件的文件名记录到文本文件或短信到另一部手机。
感谢任何入门帮助。先感谢您。

干杯, 账单

Please advise if it is possible to intercept/monitor file I/Os on an Android device. E.g. on stock Linux we may use LSM or syscalls trap.
I hope to log the filenames of all newly created files - to a text file or SMS to another phone.
Appreciate any help to get started. Thank you in advance.

Cheers,
Bill

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不必在意 2024-10-30 23:34:27

您可以使用 FileObserver 类:

“监视文件(使用 inotify)在设备上的任何进程(包括这个进程)访问或更改文件后触发事件。FileObserver 是一个抽象类;子类必须实现事件处理程序 onEvent (整数,字符串)。”

http://developer.android.com/reference/android/os/FileObserver.html

You can use the FileObserver class:

"Monitors files (using inotify) to fire an event after files are accessed or changed by by any process on the device (including this one). FileObserver is an abstract class; subclasses must implement the event handler onEvent(int, String)."

http://developer.android.com/reference/android/os/FileObserver.html

半夏半凉 2024-10-30 23:34:27

鉴于 Android 内核支持 inotify,您可以编译一些使用 inotify 报告文件系统活动的工具。

或者你可以尝试 pyinotify (http://pyinotify.sourceforge.net/)

Given that Android kernel supports inotify, you can compile some tools that report filesystem activity using inotify.

Or you can try pyinotify (http://pyinotify.sourceforge.net/)

心作怪 2024-10-30 23:34:27

andriod SMS 服务由另一个独立的 java 程序提供,并且 SMS 消息可以存储在 SQLlite 数据库中。
通常是一个恶意软件程序,它调用 SMS 管理器的服务来轮询其中的内容或发送 SMS 消息。
即使你从内核拦截所有磁盘IO,也很难知道哪个程序向管理器触发了这个磁盘IO。
而且从接收到的文件名或数据块也很难知道IO活动的意图。

如果您想出于实际目的尝试拦截功能,可以尝试 Android 中的 ptrace 函数。它很像标准 Linux 中的 ptrace,可以拦截从进程发送的每个系统调用请求。

The andriod SMS service is provided by another standalone java program and the SMS message may be stored in a SQLlite database.
Usually a malware program that call service of the SMS manager to poll contents in it or to send SMS message.
Even you intercept all disk io from kernel, it is hardly to know which program trigger this disk IO to the manager.
And it is also hard to know an IO activit's intention from inceptted file name or data block.

If you want to try the intercept feature for adacamic purpose, you can try the ptrace function in Android. It is much like ptrace in standard Linux and can intercept every system call requests sending from a process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文