Protecting client side logic & data

后端 未结 3 634
北海茫月
北海茫月 2021-01-17 04:27

I am coding a data intense web app. So that means I cant be possibly doing any computations on sever- computation after every event involves huge data too large to be sent

相关标签:
3条回答
  • 2021-01-17 04:41

    Rather than using javascript for the client side logic, perhaps you could use an applet which was compiled from obfuscated java source code.

    0 讨论(0)
  • 2021-01-17 04:44

    As far as your logic is concerned, you can use minification tools to make the code a bit hard to figure. This in no way shape or form completely protects your code, but just another tactic to fight back.

    0 讨论(0)
  • 2021-01-17 05:04

    You cannot protect javascript files.

    --

    I'm not aware of the specifics of your application, but there is almost certainly a way for the user to manipulate the data while it resides on your server.

    You should open a new question with more details about your app.

    0 讨论(0)
提交回复
热议问题