开发者

How can I encrypt my django code?

I have to upload my django project to a shared hosting provider.

How can I encrypt my code?

I want 开发者_运维技巧to hide my code on the server.

Thanks :)


You can't. You could upload .pyc files I suppose, but they are completely and utterly trivial to decompile.


Who are you trying to conceal it from? If it's other users on the shared system, then make sure you have directory permissions properly restricted to your user. If it's the shared hosting provider itself, then there's not much you can do since obfuscation won't buy you all that much; spend some time to find a reputable hosting provider you can trust.


If you really want to hide your code, you have to build custom python interpreter that uses different opcodes (in python bytecode). Then the server only has your hacked binary and pyc's that are not trivial to decode. You can add encryption on top of that, or at least sign your code so that your binary is not that easy to investigate.

Another possibility is to never have your code on disk, only keep it in RAM. You could start your server process via e.g. execnet.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜