I need to deploy a server containing very sensitive data. More precisely, this (linux) server will be deployed on a van full of antennas spinning arround the world, and i need to prevent data leaks even in case of an untrusted van operator that will eventually gain directly access to the hard drive.
The actual (previous) configuration is based on a encrypted FS, and works fine until the server reside on some server room somewhere, even if this force the presence of someone trusted to enter the key on reboot.
But this solution is not applicable on this new scenario where the server will be rebooted often and will not be followed by someone authorized to access the data. Some of our new servers are equipped with TPM module, so the problem is solved the case, but most of servers provided do not include this security feature.
How can i store these sensitive data encrypted, without need of user intervention for decription at boot time and without saving the plain password on the hard drive?
We are thinking about some obfuscated-code-machine-checking-based key generator, in the same way some license validation software works, but i don't know from where to start...
thanks in advice