Miketelis
Miketelis

Reputation: 138

Android Code Injection

Creation of a hidden process seems to be impossible ... so i came to conclusion that hiding a process from the user is impossible so if the service or process appears to RUN as a sub process to any other applications like PHONE APP , or MESSAGING APP , the running process can be hidden to an extend .

This can be only achieved by code injection , so want a help in achieving this . code injection from the user level.

Upvotes: 3

Views: 2549

Answers (2)

NoOne
NoOne

Reputation: 87

Sure this is possible - http://www.phrack.org/issues.html?issue=68&id=6#article. And as for @commonswear's answer, that's completely wrong. Many respectable developers do this type of this for good, in fact some rooting techniques work this way. Also, sometimes developers can do this to their own code post-deployment, and some developers may do this and notify the user because it provides extra functionality that they wanted in the first place.

Upvotes: 7

CommonsWare
CommonsWare

Reputation: 1006614

Fortunately, this is impossible, short of a security flaw as @Dave notes.

No respectable developer tries to hide processes from users or inject code into foreign processes, as seems to be your intent.

Upvotes: 2

Related Questions