Im adding a time bomb to my application... I wanted to know your thoughts if this is a robust idea:

Bare in mind ive done alot of research on a unique ID android can provide,but found if its a phone, telephony.getDeviceID is useful... for other devices like tablets, android_id is usefull... (formatting a device to reset the unique id to cheat is unlikely for my app)

So ive decided to join them together as a big string for a unique id, regardless if the telephony will return null for non gsm devices.

So what do you think of this,

  • check,join and create the unique ID

  • connect to an FTP and upload a txt file with "20" within it.

NOW, whenever the user reopens

  • check,join and create the unique ID

  • connect to the FTP and check if that file exists

  • if it does, read, -1 the text within it, write it back to the ftp (so now the txt is 19)

Gradually... when 20 uses are over, and the text file has "0" in it, post a message linking to the markey to buy the app, otherwise exit app before anything is accessible.

What are your thoughts?

link|improve this question

78% accept rate
Note my app is internet based – asd2005 Aug 22 '11 at 19:52
FWIW the telephony response could still be null on gsm phones if the data isn't on the sim. I think using an FTP with a marker file is less robust than using some sort of web service but I'm sure it will get the job done for a small user base. – Quintin Robinson Aug 22 '11 at 19:57
It's a funny solution. I can probably run your app and monitor the traffic. If you really provide an FTP (as in RFC 959) server, I can reset the file to whatever contents I want, anytime. – Roland Illig Aug 22 '11 at 20:00
@Roland elaborate more? Im no expert in servers etc, so any advice or knowledge would be great – asd2005 Aug 22 '11 at 20:21
When you provide an FTP server, it has a much too wide interface to the world. It basically says upload or download whatever you want. You, on the other hand, want a much smaller interface, precisely register one use of the application for this single id. So you should encode this requirement on the server side, so that the users cannot play around with your system. – Roland Illig Aug 22 '11 at 20:51
feedback

2 Answers

up vote 1 down vote accepted

Th biggest problem I see with that will be WiFi firewalls, etc., that may pass HTTP (port 80) but not FTP traffic, in some cases.

Assuming you mean "HTTP, port 80" (or HTTPS, etc) when you say "internet based app", I'd suggesting using the same access technique as the rest of your app... ie., use http with a POST or GET to a little PHP app on your server to take the ID, decrement it in a sql database, and return a 'yes' or 'no' response. Using HTTPS would also get around the snooping that Roland mentions. That way your authentication mechanism won't fail if the rest of the app could work, or will at least fail in the same way.

link|improve this answer
Any tutorials on how to do this? im not experianced in this field :\ – asd2005 Aug 22 '11 at 20:32
Do you have access to a web server that you can configure a sql database on and run some simple php on? Or do you only have an FTP site? – Brent Chartrand Aug 22 '11 at 21:19
i have a webserver yes, with ipage, i think you can do sql database and run sql yea – asd2005 Aug 23 '11 at 16:52
feedback

You are in the right path but need to improve a little bit the way your system test for each running time. First of all, forget about an FTP, that's for sure would be a big trouble passing thru firewalls or whatever structure user data travels.

Better if you do a small PHP script or even an HTML page with a challenge-reply scheme, at your server. You construct a challenge of say 128 bytes with phone ID and some encryption inside your code, and then you decode in your server and send an encrypted reply that your code must process to decide if its ok to continue. Its very easy to sniff packets and FTP traffic, but is not easy if you send a lot of nonsense data embedded together!

Research in Google "send binary data with HTML", I've found this page useful

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.