From patchwork Tue Jun 11 05:24:00 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Peter_M=C3=BCller?= X-Patchwork-Id: 2297 Return-Path: Received: from mail01.ipfire.org (mail01.i.ipfire.org [172.28.1.200]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail01.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web07.i.ipfire.org (Postfix) with ESMTPS id 09644887A4C for ; Mon, 10 Jun 2019 20:24:46 +0100 (BST) Received: from mail01.i.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 45N33x1K6bz57qf8; Mon, 10 Jun 2019 20:24:45 +0100 (BST) Received: from [127.0.0.1] (unknown [IPv6:2a0b:f4c1::6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 45N33t0MHQz5253G for ; Mon, 10 Jun 2019 20:24:41 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904rsa; t=1560194682; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=JunturoOHwiTzHD/SHGjsqWoPTn3e9qEyD2HQoLVuo8=; b=v4pyOHsT1kw+pDT2674PKmqinApfCEDSrf2D27f9Pj24JrPkikrBectmsUWGUisEYG6STg 92wqBBf1PHlAgHy3KDctlZOK72Ue5q5fYC9V0eBZzeivnH+1JE+qfyDdbl0pNVkIO8RbkD ouryjxbvfW5aGD1zwq3feusreeffvksP7S5/oOZ81SH6drLXG0LTcSMvCUxnnZCncA99eD NWyXWH/zFd6dGXFFDIubb8xy/L7NDf5YnjwJDxLbNRug1MWmqpoDT6zbBbDExAeXUzeEIW ufDwO1l1jsP1JsBVFvWlSkrRTj35m/ZW9VUD2bimGScmcoVMsoHbEjJcW1pw9Q== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904ed25519; t=1560194682; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=JunturoOHwiTzHD/SHGjsqWoPTn3e9qEyD2HQoLVuo8=; b=nUfccLedvR59MmxrWPl5iB0HCyVHMdkTLI2X7q1KR63OfaCIm0ftzRV8K4iubnMbJ+yBoP 0kCPanP/hbFrH+CA== To: "IPFire: Development-List" From: =?utf-8?q?Peter_M=C3=BCller?= Subject: [PATCH] vulnerabilities.cgi: Use orange instead of blue for mitigated issues Organization: IPFire.org Message-ID: <7f63ca30-c3cf-e697-4b54-b8669aacc6ef@ipfire.org> Date: Mon, 10 Jun 2019 19:24:00 +0000 MIME-Version: 1.0 Content-Language: en-US Authentication-Results: mail01.ipfire.org; auth=pass smtp.auth=pmueller smtp.mailfrom=peter.mueller@ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" A mitigated (CPU) vulnerability is still present and might be just harder to exploit. Using blue as colour for them does not illustrate their dangerousness - orange is a better choice as far as I am concerned. Scaring people away from Intel processors will be a completely unintended side effect. :-) Signed-off-by: Peter Müller --- html/cgi-bin/vulnerabilities.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/vulnerabilities.cgi b/html/cgi-bin/vulnerabilities.cgi index a8746c30c..21d963618 100644 --- a/html/cgi-bin/vulnerabilities.cgi +++ b/html/cgi-bin/vulnerabilities.cgi @@ -129,7 +129,7 @@ for my $vuln (sort keys %VULNERABILITIES) { } elsif ($status eq "Mitigation") { $status_message = $Lang::tr{'mitigated'}; $colour = "white"; - $bgcolour = ${Header::colourblue}; + $bgcolour = ${Header::colourorange}; # Unknown report from kernel } else {