Golang : How to protect your source code from client, hosting company or hacker?
My friend is bidding for a project and was asked by his client to let them host his program on a local machine. The client wanted to try out his software for 2 weeks before deciding to award the contract to him. He was afraid that the client might copy his source code or reverse engineer it.
He tries to reason with them to use the hosted solution from outside, but the client insist on hosting it on local machine at their place.
He asked what can he do to protect his source code?
After some brain crunching, I can think of :
Obfuscate his code with off the shelf obfuscator program.
Install a time-bomb that will lock the software after 2 weeks.
He plans to re-write his software in Golang. I think it is good just to give his client the binary instead of the source code. If the software is hosted with hosting company, just upload the binary to the server but keep the source code in house.... but this depends on whether the software is written in interpreted or compiled language.
It will be good idea to strip the binary of debugging information. In this way, the binary will be smaller and make the reverse engineering process twice harder. It will be cheaper for the client to buy the software from him.
Items 3 and 4 are applicable too if you don't trust your hosting company or worry that hacker might gain access to your source code sitting inside a host outsourced to hosting company. However, that is depends on whether you write your code in interpreted or compiled language.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+16.2k Golang : How to reverse elements order in map ?
+11.3k Golang : Calculate Relative Strength Index(RSI) example
+13.6k Golang : How to get year, month and day?
+5.9k Golang : Launching your executable inside a console under Linux
+9.4k Golang : How to get ECDSA curve and parameters data?
+10.7k Fix ERROR 1045 (28000): Access denied for user 'root'@'ip-address' (using password: YES)
+6.5k Unix/Linux : Use netstat to find out IP addresses served by your website server
+5.7k Python : Print unicode escape characters and string
+22.3k Golang : Securing password with salt
+11.3k Golang : Proper way to test CIDR membership of an IP 4 or 6 address example