Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-14 Thread Sebastian Jung
I think this here are a good solution where you can build all files as .so files which i think are c files. https://stackoverflow.com/questions/32577864/cython-for-a-django-app-would-it-work Daniel Martinez schrieb am Di., 14. Nov. 2023, 15:17: > A solution for that is add a IP blocker in your

Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-14 Thread Daniel Martinez
A solution for that is add a IP blocker in your server to avoid brutal forces attacks that way you can use. Or a tool for monitoring you traffic such Snoft. Happy coding 😎 On Mon, Nov 13, 2023, 6:54 AM Om Khade wrote: > I want to save my Django project on a shared server in encrypted format >

Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-13 Thread Muhammad Juwaini Abdul Rahman
Don't use a shared server. A dedicated server is not that expensive anyway and 'cheaper' than having to encrypt (and decrypt on the fly) your code. On Mon, 13 Nov 2023 at 21:54, Om Khade wrote: > I want to save my Django project on a shared server in encrypted format > and build a script that d

Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-13 Thread Om Khade
Yes we also have a legal team working on this, we want to encrypt the code base so that the licencing logic is not tampered and is hard to bypass. On Mon, 13 Nov, 2023, 22:42 'Kasper Laudrup' via Django users, < django-users@googlegroups.com> wrote: > On 13/11/2023 06.15, Om Khade wrote: > > I wa

Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-13 Thread 'Kasper Laudrup' via Django users
On 13/11/2023 06.15, Om Khade wrote: I want to save my Django project on a shared server in encrypted format and build a script that decrypts the Django project files in ram and start the server so that code is not leaked or anyone is not able to tamper with it. Is there a way to do this?