Harsh Upparwal
Harsh Upparwal

Reputation: 33

Securing backend code for client's side deployment

I have EKS cluster where my application code resides in pods (container). Client want this cluster to be hosted on their AWS cloud. How do I make sure that my code will be secure in client's environment. How do I make sure that he cannot copy or has no access to the code?

Upvotes: 0

Views: 29

Answers (1)

coderanger
coderanger

Reputation: 54249

You can't. At most you can compile and obfuscate it with whatever tools your language provides. This is generally pointless though, decompilers are very very good these days.

Upvotes: 1

Related Questions