Tagged Questions
0
votes
0answers
23 views
Best way to set the working expiration of android application
I am developing one android application.
Now I want user to restrict the user with the working of the application.
Way is,
As soon as user install the application I will ask for the activation code. ...
0
votes
1answer
32 views
Android - How to share data in a secure way between an unknow number of applications?
I'm tring to figure out how to share data in a secure way between an unknow number of applications, each application has a different certification.
In my opinion, content provider is the best way to ...
0
votes
1answer
37 views
How to protect .txt files in android from users?
I have an android app which has a .txt file stored in the assets folder and the sd card. I do not want the user to be able to read or edit the contents of the file. How to make sure that no one can ...
0
votes
1answer
16 views
Android auto authentication mechanism
I'm developing an app which will connect to server webservice and exchange data. I want to include auto authentication mechanism in application. I'm not really good at security stuff, so I would like ...
1
vote
2answers
46 views
Protect information in Android
Problem Description
I am writing application for Android. Application must do following:
Connect to the server using following URL:
...
0
votes
0answers
19 views
What order are Android permissions displayed in?
When a user installs an Android application, the Android system displays the list of (dangerous) permissions that the app is requesting on a warning screen, as part of the installation process, and ...
0
votes
1answer
39 views
Bluetooth secure vs. insecure
I have been playing around with the bluetooth options on android, and found an app that gave two connection options (secure and insecure).
I tried to find some information about it on the internet, ...
0
votes
4answers
53 views
Secure username and password in Android
Problem Description
I am writing application which must connect to the server and download some data from the server. The URL of the file witch must be downloaded is formatted as follow:
...
0
votes
1answer
34 views
How to authentify android app on server side without username/psswd
I have server with some static files which will be served in Android app. What approach should i use to download this files securely? I want to keep URL of my server in "secret". I cant store URL in ...
0
votes
0answers
15 views
android - convert JKS based message signing code to BKS
I'm now working on making message sign app for android.
First, the following code works successfully on my desktop with JDK 1.6.
However,when I trying to run on eclipse for android platform,
It ...
1
vote
2answers
48 views
Security between Android app and external database
After having read a lot of topics, and questions on stackoverflow about how to access external databases (MySQL) through an Android app, my question is : How to make sure that only MY app will be able ...
0
votes
1answer
42 views
Google Play In-App Billing Security
Here is part of Security and Design section of In-App Billing on Google's site:
Perform signature verification tasks on a server
If practical, you should perform signature verification on a ...
5
votes
0answers
144 views
Microsoft ISA Server Authentication in Android
I have an application in Android, in which I were reading files from the remote server, code for reading file is given below;
URI uri = null;
try {
uri = new ...
0
votes
1answer
49 views
How some apk are stored by Android
I know that the apk are stored in /data/app with the name of the package (and "-1" at the end).
On not-root phone is not possiple to list (ls) the file contained in /data/app, however since I knon ...
-6
votes
0answers
97 views
do we really require antivirus in android phone [closed]
I am little bit confused whether it is good to install anti-virus on android phone?
I have read in many articles on internet that Android is susceptible to virus threats and, provided you are careful ...
-4
votes
0answers
31 views
android communicating through an access point
I am new to android programming. I am currently making an application which will allow an encrypted communication between devices.
I am stuck at the point on communication. I was thinking of getting ...
-1
votes
2answers
95 views
Is this HTTPS connection secure?
I was looking for a way to retrive data from a server-side using Https and a self-signed certificate. Following this question:
Self Signed SSL acceptance Android
and @Brian Yarger Answer I have ...
0
votes
0answers
14 views
Adobe Signature Services Protocol (ASSP) can be supported on Android ? If Supported please give some references
I want to know whether the ASSP(Adobe Signature Service Protocol) can be supported on Android or not. If supported please let me some references ?
0
votes
1answer
47 views
Android Storage and Security
I am developing an android app which I have to store data in files, for doing this I am saving the data in internal memory and I am creating them via this
FileOutputStream file = ...
1
vote
3answers
41 views
startActivity and intercept intent extras
I'm considering to do the following for log in a user:
Intent intent= new Intent(this,DoLoginActivity.class);
intent.putExtra("login",mLogin);
intent.putExtra("password",mPassword);
...
0
votes
0answers
33 views
how to store encrypted file / bytes securely in client device
A friend of mine as me this question and it struck me that I cannot find any possible definite solution to this, so I pass the question to the community of experts.
The goal: storing file / bytes ...
0
votes
2answers
72 views
What is the proper way to validate google granted OAuth tokens in a node.js server?
I'm trying to authenticate a mobile application for the Android platform to a custom node.js server api. I would like to use Google OAuth2 tokens for this rather than roll my own authentication, since ...
4
votes
1answer
86 views
How can I verify whether another app on the system is genuine?
I'd like to send intents containing sensitive information to another app on the system, which I have also written. Before doing so, I need to verify that the app I am sending them to is signed by me, ...
0
votes
1answer
47 views
Any OAuth2 providers other than Google that offer access token validation without an extra server call?
I'm developing a mobile app that has to talk to it's own custom back-end API. I would prefer to not roll my own authentication and account management, I would rather use Oauth2 from an existing ...
-1
votes
2answers
47 views
Offline financial app? [closed]
I want to make an offline financial app.
For that i would have to store financial data in local android device.
So what could be the possible ways to make it secure and also if there are any laws ...
0
votes
1answer
61 views
PHP Server and Android App login system
I need to make an Android Application that has a connection to a remote php server to fetch and save data.
This app needs to work offline and have a login system based on the same data that the ...
-1
votes
0answers
57 views
How to programatically check if device is rooted? [duplicate]
Is it possible to programatically check if a device is rooted or not?
Something like:
if(context.isRooted){
//error message
}
I could not locate any examples or libraries from the Android ...
0
votes
2answers
52 views
Open an at runtime decrypted file with a third party application without storing the decrypted data
In my application I need to pass a dynamically decrypted file to a third-party application without saving it to the device.
Example: I have a self created encrypted file which contains both a pdf ...
0
votes
0answers
83 views
Sending a 'raw' http POST request using Android
I am trying to implement a simple program using Android which sends a HTTP POST request to a listening web server using OutputStream and PrintWriter to send the header line by line. For example:
...
0
votes
1answer
170 views
creating a simple AES encryption and decryption
I'm attempting to create a simple encryption and decryption class. Both methods are giving the same string. I am little confused. Please need help.
Here's my code snippet:
public class ...
-1
votes
0answers
51 views
Is in-app purchase cached locally on Android device? [closed]
I'm developing Android application which uses in-app billing. Each time application starts, I check for purchased items with queryInventoryAsync function. But when application queries Google Play for ...
0
votes
1answer
29 views
How to track a local variable by Androguard
I want to track all the Intent objects, but I cannot find the API.
I want to know where a component start another in an application.Also, I want to know how does it happen, like if the Intent is a ...
-1
votes
2answers
56 views
making an android app to hide files using java
I am making an android application. I would like to know as to how to make a program to hide files from the android phone.Like the "Hide it pro" application
0
votes
1answer
54 views
secure http call in android
How do I secure http call everytime I fire from my app and also it needs to have timeout so that any other user cannot use the same link from any browser.
I am looking for android solution in ...
0
votes
1answer
32 views
Android - logs access
I have read a couple of times, that some applications on our phone can contain in logs information about eg: call history. I want to write an application which gets to this logs and uses this ...
0
votes
2answers
45 views
Android make broadcast receiver secure
I'm trying to implement a "secure" broadcast receiver which only receives broadcasts from a specific app. This is because I want to make a plugin to my app which triggers actions via broadcasts. As ...
2
votes
3answers
73 views
Android: Securing Your Private Key
I have been Reading the "Securing Your Private Key" section on the Android website. It wanrs about the possibility of authoring identity being compromised.
Then, is it possible to access to the ...
0
votes
1answer
62 views
Android. What is the best and safest way of storing data (updates from web service)
I saw similar questions but they don't fulfill my requirements.
I have an app that time to time needs to be updated from a web service. Data contains such fields as url, description, title. from 200k ...
1
vote
0answers
51 views
SDK for Android:How facebook check the Hash key?
When we want to use Facebook SDK for Android as our SSO solution, we need to put our Android application signature into our Facebook application settings (Step 5 of Facebook sdk for android).
And ...
0
votes
1answer
75 views
Proper architecture for iOS connecting to database?
I'm a web developer who is moving into creating mobile (iOS/Android) applications.
As such, what I'm trying to understand is how should I architect the mobile application to access ...
0
votes
2answers
40 views
When to delete file shared with external apps by content provider
In my application I allow users to share files with external apps by using content provider. My files are encrypted so before I can share one of those files, I need to decrypt it and store it in ...
2
votes
2answers
229 views
Open Source Static Source Code Analysis Tool (Security Oriented) For Java
I am looking for an open source static source code analysis tool that can be used for security testing of an android application. I need to make sure that my application is PCI compliant.
An example ...
0
votes
0answers
96 views
Why should the nonce for Android in-app billing generated on the server?
http://developer.android.com/google/play/billing/billing_best_practices.html
As the best practices documentation suggests, I want my server to perform signature verification tasks for in-app billing. ...
0
votes
1answer
20 views
Securing data by truncating / adding bytes at runtin
I do have an android application that downloads PDF files for display in a magazine app.
To secure the data I am already setting a user password. I was additionally thinking of removing the last 100 ...
1
vote
0answers
115 views
How to verify X.509 certificate format?
I have an SSL certificate (a certificate chain starting from the root of the server) which seems to be Okay. I can open the certificate on windows & also import it using the windows wizard.
But ...
0
votes
0answers
35 views
How to use openssl in Android? [duplicate]
I have build 2 so files from this project(https://github.com/eighthave/openssl-android), now I have libcrypot.so and libssl.so. How I can use these libraries in my android application?. I add the ...
0
votes
1answer
120 views
Is it safe to give away the APK? [closed]
I have paid app on Google Play Store. And some marketing team asking my APK for them to publish on their Store. Apparently they can reach out users which are not covered by Google such as China, etc.
...
0
votes
1answer
48 views
How older version of android before 4.0 store data like password, accesstoken securly?
I am building an android application that needs to store secure data on android device which also support older version of android before 4.0. I know that android 4.0 and version after that support ...
2
votes
1answer
127 views
How to secure secret string in Android app?
In my android app, I use Microsoft translator which requires two strings, clientId and clientSecret. At the moment, I hardcoded those two strings. Since I discovered classes.dex can be converted to ...
0
votes
0answers
39 views
When an SSL cert is renewed, does an Android BKS also need to be updated
So its a simple enough question but I'm not sure of the answer.
Developing SSL on android is a tricky area at times. Most people are left with two options:
* Accept all certificates and risk MITM ...


