Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > Business Forums > Business, Legal, & App Store

Reply
 
LinkBack Thread Tools Display Modes
Old 02-14-2009, 11:22 AM   #51 (permalink)
Pro. Game Developer
iPhone Dev SDK Supporter
 
Join Date: Feb 2009
Location: żLa Islas Hermosas?
Posts: 2,176
Kalimba is on a distinguished road
Default

Quote:
Originally Posted by RickMaddy View Post
I think there is a major flaw in your logic. Here's how it goes (I think):

* The first person that wants to hack your app actually BUYS your app.
* They then crack it (on their computer, not iPhone) and make it available at many websites.
* 1000's of people download and install the cracked app.
* Your code now treats all of these users as the original hacker.
* The original hacker has a legitimate copy of your app and they are NOT punished by your code.
Don't you think the hacker would first run the cracked version to verify that the crack indeed works?
Kalimba is offline   Reply With Quote
Old 02-14-2009, 12:11 PM   #52 (permalink)
Registered Member
 
Forsworn's Avatar
 
Join Date: Oct 2008
Location: Germany
Posts: 504
Forsworn is on a distinguished road
Default

Quote:
Originally Posted by Kalimba View Post
Don't you think the hacker would first run the cracked version to verify that the crack indeed works?
That was my (unwritten) logic.
But Rick, your logic may be even better.
I don't know how a hacker thinks... a developer would test the app first.
But if he/she doesn't I'd treat 'innocent' people. (They downloaded and installed the cracked app!)

The string thing:
You could easily use the app name and use some algorithm to transform that to "SignerIdentity" by runtime.

I'm not going to add this to any of my apps.
I just call [[UIApplication sharedApplication]terminate] after displaying an alert.
If a hacker is a more genius one... what can I do?
I don't have to live on the money I get from the apps, so that isn't the problem.
But these ******* damn pirates are driving me crazy... why do people have to do this?
Forsworn is offline   Reply With Quote
Old 02-14-2009, 12:30 PM   #53 (permalink)
Registered Member
 
RickMaddy's Avatar
 
Join Date: Oct 2008
Location: Denver, CO
Posts: 2,121
RickMaddy will become famous soon enough
Default

Quote:
Originally Posted by Kalimba View Post
Don't you think the hacker would first run the cracked version to verify that the crack indeed works?
Maybe. That new tool Crackulous (or whatever it's called) it literally a one-click-and-it's-cracked tool. What's there to test?

Here's a good example. My app fails to run properly if it detects it's been cracked yet my app can be found posted on cracked app sites. Go figure.
RickMaddy is offline   Reply With Quote
Old 02-14-2009, 01:45 PM   #54 (permalink)
Pro. Game Developer
iPhone Dev SDK Supporter
 
Join Date: Feb 2009
Location: żLa Islas Hermosas?
Posts: 2,176
Kalimba is on a distinguished road
Default

Quote:
Originally Posted by RickMaddy View Post
Maybe. That new tool Crackulous (or whatever it's called) it literally a one-click-and-it's-cracked tool. What's there to test?

Here's a good example. My app fails to run properly if it detects it's been cracked yet my app can be found posted on cracked app sites. Go figure.
Perhaps that's the sad state of a hacker's life? They don't really care to check if the hacked version works or not -- they just crack it and make it available to others for the sick satisfaction of having done it.
Kalimba is offline   Reply With Quote
Old 02-14-2009, 06:48 PM   #55 (permalink)
Registered Member
 
Join Date: Oct 2008
Posts: 19
shul is on a distinguished road
Default

You are forgetting that there are simulators. So the original hacker can test the app on their simulator. no need to endanger a perfectly healthy system.
shul is offline   Reply With Quote
Old 02-14-2009, 06:53 PM   #56 (permalink)
New Member
 
Join Date: Aug 2008
Location: Austin, TX
Posts: 239
ayasin is on a distinguished road
Default

Quote:
Originally Posted by Scott Stahurski View Post
Now I read that the crackers are looking in your code for the "SignerIdentity" string so instead of using the whole string, format it like so

NSString *aString = [NSString stringWithFormat:@"%@%@%@",@"Sig",@"nerI",@"dentit y"];

Or a variation of that.
Alternatively you could just hardcode a check for the size of the info.plist file. This shouldn't change from when you build your binary and such a check would be nearly impossible to detect without detailed examination of the assembly code.
__________________
iNeedStuff shopping assistant - get in, get out, get on with your life
ayasin is offline   Reply With Quote
Old 02-14-2009, 06:54 PM   #57 (permalink)
New Member
 
Join Date: Aug 2008
Location: Austin, TX
Posts: 239
ayasin is on a distinguished road
Default

Quote:
Originally Posted by shul View Post
You are forgetting that there are simulators. So the original hacker can test the app on their simulator. no need to endanger a perfectly healthy system.
Simulator != emulator. They can't run ARM binaries (which is what they have) in the simulator.
__________________
iNeedStuff shopping assistant - get in, get out, get on with your life
ayasin is offline   Reply With Quote
Old 02-14-2009, 06:55 PM   #58 (permalink)
New Member
 
Join Date: Aug 2008
Location: Austin, TX
Posts: 239
ayasin is on a distinguished road
Default

Quote:
Originally Posted by Kalimba View Post
Perhaps that's the sad state of a hacker's life? They don't really care to check if the hacked version works or not -- they just crack it and make it available to others for the sick satisfaction of having done it.
Hacking like anything else has ego and reputation attached to it. If you release a bunch of stuff that doesn't work people will stop trusting you and won't download your stuff. That's why they at least make sure it works for them before releasing.
__________________
iNeedStuff shopping assistant - get in, get out, get on with your life
ayasin is offline   Reply With Quote
Old 02-14-2009, 06:57 PM   #59 (permalink)
New Member
 
Join Date: Aug 2008
Location: Austin, TX
Posts: 239
ayasin is on a distinguished road
Default

Quote:
Originally Posted by RickMaddy View Post
Maybe. That new tool Crackulous (or whatever it's called) it literally a one-click-and-it's-cracked tool. What's there to test?

Here's a good example. My app fails to run properly if it detects it's been cracked yet my app can be found posted on cracked app sites. Go figure.
yeah that does happen, I mean these people are lazy script kiddies so that's bound to happen now with crackolicious.
__________________
iNeedStuff shopping assistant - get in, get out, get on with your life
ayasin is offline   Reply With Quote
Old 02-14-2009, 07:11 PM   #60 (permalink)
Registered Member
 
Join Date: Oct 2008
Posts: 19
shul is on a distinguished road
Default

there are several approaches here , here are some, if anyone has an "out of the box" idea please post:

1. do nothing
2. covertly send info
3. do something harmless
4. do something minor but offensive
5. delete person's data at some level
6. make a web site with details of the offending users
7. submit report to apple
8. ask apple to fix this

There *must* be something better here!

I think that the first on foremost problem is that using software, the program can be led to think anything - that the HW is legit, that the user paid, etc. etc. so nothing you can code at software level will be likely to help for a long time (even covert sending of information can be stopped easily).

There should be some kind of a merge between social engineering , HW and SW...

+ don't forget that some people hack their phones simply because there is no other way, they want to use them in their countries.
shul is offline   Reply With Quote
Old 02-14-2009, 07:14 PM   #61 (permalink)
Registered Member
 
Join Date: Oct 2008
Posts: 19
shul is on a distinguished road
Default

An interesting thought... can a lawyer draft out an end user agreement that states that if the software has been stolen the user is responsible for everything that might ensue?
shul is offline   Reply With Quote
Old 02-14-2009, 07:15 PM   #62 (permalink)
New Member
 
Join Date: Aug 2008
Location: Austin, TX
Posts: 239
ayasin is on a distinguished road
Default

Quote:
Originally Posted by shul View Post
+ don't forget that some people hack their phones simply because there is no other way, they want to use them in their countries.
No one is objecting to that. You purchased a piece of hardware, if you want to glue it to the wall that's your right. We're objecting to people stealing our software.
__________________
iNeedStuff shopping assistant - get in, get out, get on with your life
ayasin is offline   Reply With Quote
Old 02-14-2009, 07:27 PM   #63 (permalink)
Registered Member
 
Join Date: Nov 2008
Posts: 188
jsonli is on a distinguished road
Default

This thread has gotten completely out of hand.
jsonli is offline   Reply With Quote
Old 02-14-2009, 08:17 PM   #64 (permalink)
Registered Member
 
Join Date: Nov 2008
Posts: 812
johnqh is on a distinguished road
Default

Quote:
Originally Posted by RickMaddy View Post
I think there is a major flaw in your logic. Here's how it goes (I think):

* They then crack it (on their computer, not iPhone) and make it available at many websites.
So, you think the hackers don't test it?

OK, then the users have only the hacker to blame.
johnqh is offline   Reply With Quote
Old 02-14-2009, 08:53 PM   #65 (permalink)
New Member
 
Join Date: Jan 2009
Posts: 73
jeffelkins is on a distinguished road
Default

I don't have any apps in the store yet (I'm in review) but here's my take. I think it's a futile waste of time to battle app crackers. They are not in it for the apps, they are in it for the pleasure of cracking and the pleasure of building "collections," in many cases they'll never even use the apps but once or twice, if that. Building in phone-home routines, kill-switches and other weapons have a far likelier chance of tripping a false positive and pissing off a legit user than deterring a cracker.

Copy-protection (aka DRM) has NEVER worked long-term and it always ends up making legitimate users angry.
jeffelkins is offline   Reply With Quote
Old 02-14-2009, 09:49 PM   #66 (permalink)
Registered Member
 
Join Date: Nov 2008
Posts: 812
johnqh is on a distinguished road
Default

Quote:
Originally Posted by jeffelkins View Post
I don't have any apps in the store yet (I'm in review) but here's my take. I think it's a futile waste of time to battle app crackers. They are not in it for the apps, they are in it for the pleasure of cracking and the pleasure of building "collections," in many cases they'll never even use the apps but once or twice, if that. Building in phone-home routines, kill-switches and other weapons have a far likelier chance of tripping a false positive and pissing off a legit user than deterring a cracker.

Copy-protection (aka DRM) has NEVER worked long-term and it always ends up making legitimate users angry.
You don't get it.

Nobody (at least not me) is saying it makes business sense to fight the cracks. Actually, I don't think it will have any impact on the sales at all.

However, for the same reason that "they are in it for the pleasure of cracking", at least there should be a case that some developers are in it for the pleasure of screwing up cracking. It is a game of cat and mouse, and it is a fun game if you are into it.
johnqh is offline   Reply With Quote
Old 02-14-2009, 09:56 PM   #67 (permalink)
Registered Member
 
Join Date: Oct 2008
Posts: 19
shul is on a distinguished road
Default

Quote:
Nobody (at least not me) is saying it makes business sense to fight the cracks. Actually, I don't think it will have any impact on the sales at all.
I'm not saying that there is sense in it, but on the other hand, not doing anything will impact sales. See software and music industries. The easier it is to copy the more people will do it for free.
shul is offline   Reply With Quote
Old 02-14-2009, 10:44 PM   #68 (permalink)
Pro. Game Developer
iPhone Dev SDK Supporter
 
Join Date: Feb 2009
Location: żLa Islas Hermosas?
Posts: 2,176
Kalimba is on a distinguished road
Default

Quote:
Originally Posted by jeffelkins View Post
I don't have any apps in the store yet (I'm in review) but here's my take. I think it's a futile waste of time to battle app crackers. They are not in it for the apps, they are in it for the pleasure of cracking and the pleasure of building "collections," in many cases they'll never even use the apps but once or twice, if that. Building in phone-home routines, kill-switches and other weapons have a far likelier chance of tripping a false positive and pissing off a legit user than deterring a cracker.

Copy-protection (aka DRM) has NEVER worked long-term and it always ends up making legitimate users angry.
It's not about deterring the dozens (maybe hundreds?) of crackers, it's about the hundreds or thousands of sales you will miss because anyone wanting your application can find the cracked version and download and run it, rather than paying for your AppStore version. Crackers aren't cracking the applications to just share with each other. They're posting the cracks on websites and torrents where anyone can come along and grab it.
Kalimba is offline   Reply With Quote
Old 02-14-2009, 10:58 PM   #69 (permalink)
Registered Member
 
tkilmer's Avatar
 
Join Date: May 2008
Posts: 583
tkilmer is an unknown quantity at this point
Default

I still have not decided what I want to do. Maybe use the GPS function and say that we are coming for them. Since it is on a jailbroken device, they do not have to be prompted Need better ideas though. My first idea is to delete some system files, but I am afraid of the 1 in a million chance of a false-positive on a jailbroken device. If the false-positive was on a regular phone, the file system would not allow the deletion of system files. The other case, oops.
tkilmer is offline   Reply With Quote
Old 02-14-2009, 11:19 PM   #70 (permalink)
Registered Member
 
RickMaddy's Avatar
 
Join Date: Oct 2008
Location: Denver, CO
Posts: 2,121
RickMaddy will become famous soon enough
Default

Here's the approach I'm about to take with an update I just sent to Apple. If I detect a cracked app I simply launch Safari taking the user to a special page on my website. The page states they are using an unauthorized copy of my app. It states it's not fair for them to be stealing my hard work (trying to appeal to their better self). It states I have a free Lite version that they can try risk free. I have easy links to the rest of my website to see app details and easy links to see the app in the App Store.

Nice an benign. Why **** off a potential customer?

Will this stop the hackers? Of course not. Will I get more sales? Maybe. Did I waste my time writing the code to check for a cracked app and author another page on my website? Definitely not. It was interesting. I learned something. How could that be a waste of time?

Oh, and I do pass their device id to the URL so it's logged in the server logs
RickMaddy is offline   Reply With Quote
Old 02-14-2009, 11:23 PM   #71 (permalink)
Registered Member
 
tkilmer's Avatar
 
Join Date: May 2008
Posts: 583
tkilmer is an unknown quantity at this point
Default

I think a warning would suffice. I will also alert them that using a jailbroken device leaves their filesystem unprotected. Since developers are catching on, they could be potentially harmful to their phone. Maybe scare them enough to think twice about downloading cracked apps.

However, I really want to do something /*slightly*/ malicious. Maybe corrupt my app so it will not start up. Maybe corrupt the phone app Probably no to the latter.
tkilmer is offline   Reply With Quote
Old 02-14-2009, 11:32 PM   #72 (permalink)
Registered Member
 
RickMaddy's Avatar
 
Join Date: Oct 2008
Location: Denver, CO
Posts: 2,121
RickMaddy will become famous soon enough
Default

Here's a somewhat benign thing you could do. Create a 2GB file in your app's Documents directory. The next sync they do will take a while.
RickMaddy is offline   Reply With Quote
Old 02-14-2009, 11:36 PM   #73 (permalink)
Registered Member
 
tkilmer's Avatar
 
Join Date: May 2008
Posts: 583
tkilmer is an unknown quantity at this point
Default

There are nearly limitless "fun" ideas that could be implemented, considering their phones are vulnerable. Create a bot from the phone. Could use undocumented frameworks. Maybe turn it into a spam server, for their own email. Receive hundreds of new emails every minute from themselves. Maybe even state that piracy is bad. This thread has turned into a day dreaming thread about what we would like to do to the pirates :P
tkilmer is offline   Reply With Quote
Old 02-14-2009, 11:48 PM   #74 (permalink)
New Member
 
Join Date: Aug 2008
Posts: 394
detz is on a distinguished road
Default

How about leaking memory until it crashes, they will just get sick of it and delete your app.
__________________
Super Pig
iOwn - Inventory anything and everything.
detz is offline   Reply With Quote
Old 02-14-2009, 11:58 PM   #75 (permalink)
Registered Member
 
RickMaddy's Avatar
 
Join Date: Oct 2008
Location: Denver, CO
Posts: 2,121
RickMaddy will become famous soon enough
Default

I'm all for trying to turn the people that downloaded a cracked a copy of an app into a paying customer. I used to just put up an endless activity view that could only be ended by pressing the Home button.

But it occurred to me that this was silly. Making your app act badly will just annoy the person and they will delete your app and never look back.

Why not make some effort to appeal to the person's better side and get them to try your app. Maybe you'll get a new (paying) customer instead of a pissed off user.

Who knows. There is a lot to be said for screwing with someone that first stole from you.
RickMaddy is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 427
15 members and 412 guests
Absentia, baja_yu, Belman, buggen, ChrisYates, Domele, Duncan C, ebrahim_savadinejad, flamingliquid, gbenna, JamesCahall, MacBook MH, mer10, mraalex, SillyHoney
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,640
Threads: 94,106
Posts: 402,845
Top Poster: BrianSlick (7,990)
Welcome to our newest member, jasonwhf2
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 02:10 PM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0