From 10c494e353f62430e8eceea4ae8808e9486209d4 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 18 Aug 2015 09:57:30 +0200 Subject: [PATCH 105/310] sys/x86: Note that ElectroBSD does not protect against compromised hosts ... if a hypervisor has been detected. Obtained from: ElectroBSD --- sys/x86/x86/identcpu.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sys/x86/x86/identcpu.c b/sys/x86/x86/identcpu.c index 263e05dcf0ae..e1670ec23b91 100644 --- a/sys/x86/x86/identcpu.c +++ b/sys/x86/x86/identcpu.c @@ -2666,8 +2666,15 @@ static void print_hypervisor_info(void) { - if (*hv_vendor != '\0') + if (*hv_vendor != '\0') { printf("Hypervisor: Origin = \"%s\"\n", hv_vendor); + printf("ElectroBSD security advise: It looks like " + "you may be clown computing.\n" + "Please note that the people controlling the " + "'cloud' this system is\n" + "running on can monitor and sabotage everything " + "it is doing.\n"); + } } /* -- 2.37.1