vote up 1 vote down star

Is there any way to check the integrity of the application just before the application starts up? (to prevent anyone changing the application after it is installed)

flag

2 Answers

vote up 1 vote down check

Adobe AIR automatically does this when you sign your code and package your aar file. If you touch anything inside it aar file after signing it, you should get an error. See: http://help.adobe.com/en_US/AIR/1.5/air_security/WS5b3ccc516d4fbf351e63e3d11c0f598475-7ffa.html

link|flag
vote up 0 vote down

I don't know if Adobe AIR itself provides any such integrity checker.

A (non-optimal) solution would be to have a database of md5 hashes of all or select important files, and verify it again at start-up. (you could use this for the md5 hashing.)

link|flag

Your Answer

Get an OpenID
or

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