Code Protection

edited December 2014 in How To...

I guess that when exporting the project, processing doesn't do anything to protect the code from reverse engineering!? So what would be the best practise approach to make the code difficult to reverse engineer? (considering that the project is developed in Processing)

Tagged:

Answers

  • Answer ✓

    This old thread may be of interest.

    I would recommend ProGuard for obfuscation (and more), although you may run into problems with libraries and such that rely on reflection (maybe even Processing core, but I can't be sure). Once set up properly, it should make reverse engineering significantly more difficult. The advice in the thread above also sounded promising, but it depends heavily on your specific situation.

  • Security through obscurity is not security.

    Anything that you run on the client side can be "reverse engineered".

    The solution is to mostly not care about "reverse engineering". And anything that needs to be secure (passwords, database access, etc) should be run on the server side.

  • Code obfuscation is not really in the spirit of Processing's community (with the exception of when giving code to someone who is asking for their assignment to be done for them, then providing code they can't claim to have made is kinda funny). Also, as pointed out, this is not secure, unobfuscating code can be done by a patient programmer

  • Well I know its impossible to protect the code from a good and patient programmer but you know I would like to make it not straight forward. Same as windows puts a serial but in most cases it gets cracked. If there would be no serial most people would just press "next" and don't care about the serial. But if you have the serial most people will buy windows and the unimportant ones will use a cracked version (they probably can't afford it anyway).

    Also I hear it often that this is not the forum where you should not speak about code protection, but I would leave it to the user if he protects it or not. I think that people that don't like the idea of protecting the code should have the knowledge about it. The decision if the developer uses his knowledge to protect the code or not should be let to him.

    Anyway, maybe I should get back to the question:....as this is not a discussion topic :D

  • The point is: whatever approach you take to "secure" your code, it won't be secure. Your example is flawed: it's like if Microsoft implemented a serial key, but then accepted anything you entered into the serial key text box. What's the point?

    Even if you run your code through an obfuscator, people can still get to your code.

    Anything you think needs to be secure, needs to be done on the server side.

  • Answer ✓

    Personally, I don't care if you keep your code open, closed or obfuscated. The "spirit of Processing" isn't a rule, anyway.

    The above comments just warn you that whatever protection scheme you use, it is prone to be frail. If that's OK for you, protecting from 90 % of curious users, go for it. ProGuard is probably the best option in this field.

Sign In or Register to comment.