• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

How to create an app as a service and make it invisible to the user?

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I would like to be able to create a service that runs in the background. The user should not be able to detect this app.
The service should be listening for specific events and sends info to a server accordingly.

How would i be able to accomplish that and make the service completely invisible ?
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sounds suspicious, especially the part about sending data without the user knowing. Given that it's the user's device, why would you want to do that?
 
Christian Chabtini
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
curious about how mobistealth, androidspy and others accomplish this ?
 
author
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Christian,

Sounds like your interested in malware. Something I am interested in as well. That being said I am not sure this is the best forum for this discussion. There are numerous ways to do 'covert' exfiltration on Android. The easiest, and what most Malware developers do, is just ask for permission for a service to do something in the back ground, like send SMS, or connect to the internet. If you look at malware currently in the App Market this is the most common mechanism. There are other ways and if you are interested I suggest you join one of the many digital security professional mailing lists or forums where researchers discuss these sorts of things in detail.

Cheers,

Robi
 
Ranch Hand
Posts: 140
Android Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you can but still you needed the users permission in defining what it does!
reply
    Bookmark Topic Watch Topic
  • New Topic