Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 637
Miketelis Avatar asked Apr 27 '26 11:04

Miketelis


2 Answers

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.

like image 139
NoOne Avatar answered Apr 29 '26 01:04

NoOne


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.

like image 28
CommonsWare Avatar answered Apr 29 '26 02:04

CommonsWare