开发者

Can an app be monitored for security?

开发者 https://www.devze.com 2023-04-10 21:42 出处:网络
A coworker and I were talking (after a fashion) about an article I read (HTC permission security risk). Basically, the argument came down to whether or not it was possible to log every action that an

A coworker and I were talking (after a fashion) about an article I read (HTC permission security risk). Basically, the argument came down to whether or not it was possible to log every action that an application was doing. Then someone (an abstract theroetical person) would go through and see if the app was doing what it was supposed to do and not trying to be all malicious like.

I have been programming in Android for a year now, and as far as I know if -- if -- that was possible, you would have to hack Dalvik and output what each process was doing. Even if you were to do that, I think it would be completely indecipherable because of the sheer amount of stuff each process was doing.

Can I get some input one way or the other? Is it completely impractical to even attempt to log what a foriegn application 开发者_如何学Gois doing?


I have been programming in Android for a year now, and as far as I know if -- if -- that was possible, you would have to hack Dalvik and output what each process was doing.

Not so much "hack Dalvik" but "hack the android.* class library, and perhaps a few other things (e.g., java.net).

Even if you were to do that, I think it would be completely indecipherable because of the sheer amount of stuff each process was doing.

You might be able to do some fancy pattern matching or something on the output -- given that you have determined patterns of inappropriate actions. Of course, there is also the small matter of having to manually test the app (to generate the output).

Is it completely impractical to even attempt to log what a foriegn application is doing?

From an SDK app? I damn well hope so.

From a device running a modded firmware with the aforementioned changes? I'd say it is impractical unless you have a fairly decent-sized development team, at which point it is merely expensive.


This is both possible and practical if you are compiling your own ROM. Android is based on Linux and I know several projects like this for Linux, like Linux Trace Toolkit. I also know of research into visualizing the results and detecting malicious apps from the results as well.

Another thing functionality like this is often used for is performance and reliability monitoring. You can read about the DTRACE functionality in Solaris to learn more about how this sort of stuff is used in business rather than academia.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号