Php – protecting adobe air apps

airlicense-keyMySQLPHP

I am about to deliver an Adobe AIR app to a customer.
But it's my first delivery of any sort, I.e. I have
no experience whatsoever with licensing etc.

Users of this app may or may not be online, so
can't count on that. In fact it's 99% sure that
they will be offline.

Nor do I expect them to very tech-savvy, who will
spend enough time scouting for ways to "crack" it.

So, is there an okeish type of way to protect this
app. That is, I don't want people to simply copy
the installation folder, take it to another machine
and run it. It should be slightly harder than this.

Oh, and I am also using PHP and MySql, with which
this AIR app communicates. So anything you guys could
help me with is very very welcome.

Best Answer

protect the php api and not the frontend app. have a license key which is bound to an ip address and authenticate the request (which contains the key) is coming from the correct ip.

Related Topic