sumon ahmed
sumon ahmed

Reputation: 61

How to Protect my code and database from ISP Provider

I have completed a project here I used Html, CSS, Javascript, Jquery, Ajax and Php. I launch my project into a ISP Provider Company. But I worry about my project. I want that ISP Company or anyone can't access my code and Database. Is there any way that helps me to protect my code and database. Thanks

Upvotes: 0

Views: 230

Answers (2)

SLaks
SLaks

Reputation: 887797

You cannot secure code running on enemy hardware.
Period.

There is nothing you can do to stop an attacker with administrative privileges.

You shouldn't even rent space from an untrusted provider. An attacker with hardware access can melt the case and add a logging device between the RAM and the CPU to see all data on the server. (I don't know how practical that is)

If you don't trust your host, switch to a different host or run your own data-center.

Upvotes: 3

Related Questions