diff --git a/classes/checklist.inc b/classes/checklist.inc index ccd1a35..ba20eb1 100644 --- a/classes/checklist.inc +++ b/classes/checklist.inc @@ -399,7 +399,7 @@ class checklist case (preg_match("/SharePoint/i", $this->name) ? true : false): $this->icon = 'Microsoft Sharepoint.png'; break; - case (preg_match("/Dot Net/i", $this->name) ? true : false): + case (preg_match("/Dot Net|DotNet/i", $this->name) ? true : false): $this->icon = 'Microsoft .NET.png'; break; case (preg_match("/Internet Explorer/i", $this->name) ? true : false): @@ -574,6 +574,27 @@ class checklist break; case (preg_match("/Mainframe /i", $this->name) ? true : false): $this->icon = 'mainframe.png'; + break; + case (preg_match("/HBSS/i", $this->name) ? true : false): + $this->icon = 'HBSS.jpg'; + break; + case (preg_match("/Akamai/i", $this->name) ? true : false): + $this->icon = 'Akamai.png'; + break; + case (preg_match("/ArcGIS/i", $this->name) ? true : false): + $this->icon = 'ArcGIS.png'; + break; + case (preg_match("/Bromium/i", $this->name) ? true : false): + $this->icon = 'Bromium.png'; + break; + case (preg_match("/Forescout/i", $this->name) ? true : false): + $this->icon = 'Forescout.jpg'; + break; + case (preg_match("/DB Networks|DBN\-6300/i", $this->name) ? true : false): + $this->icon = 'DB Networks.png'; + break; + case (preg_match("/Windows PAW/i", $this->name) ? true : false): + $this->icon = 'Windows PAW.jpg'; break; default: $this->icon = 'Orphan.png'; diff --git a/img/checklist_icons/Akamai.png b/img/checklist_icons/Akamai.png new file mode 100644 index 0000000..a093375 Binary files /dev/null and b/img/checklist_icons/Akamai.png differ diff --git a/img/checklist_icons/ArcGIS.png b/img/checklist_icons/ArcGIS.png new file mode 100644 index 0000000..6a8585e Binary files /dev/null and b/img/checklist_icons/ArcGIS.png differ diff --git a/img/checklist_icons/Bromium.png b/img/checklist_icons/Bromium.png new file mode 100644 index 0000000..1adfdc5 Binary files /dev/null and b/img/checklist_icons/Bromium.png differ diff --git a/img/checklist_icons/DB Networks.png b/img/checklist_icons/DB Networks.png new file mode 100644 index 0000000..136cca6 Binary files /dev/null and b/img/checklist_icons/DB Networks.png differ diff --git a/img/checklist_icons/Forescout.jpg b/img/checklist_icons/Forescout.jpg new file mode 100644 index 0000000..3edea72 Binary files /dev/null and b/img/checklist_icons/Forescout.jpg differ diff --git a/img/checklist_icons/Windows PAW.jpg b/img/checklist_icons/Windows PAW.jpg new file mode 100644 index 0000000..480c641 Binary files /dev/null and b/img/checklist_icons/Windows PAW.jpg differ