Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sca-patterns-sle11 for openSUSE:Factory checked in at 2021-03-05 13:47:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sca-patterns-sle11 (Old) and /work/SRC/openSUSE:Factory/.sca-patterns-sle11.new.2378 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sca-patterns-sle11" Fri Mar 5 13:47:34 2021 rev:8 rq:876717 version:1.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/sca-patterns-sle11/sca-patterns-sle11.changes 2020-12-16 11:01:46.307645588 +0100 +++ /work/SRC/openSUSE:Factory/.sca-patterns-sle11.new.2378/sca-patterns-sle11.changes 2021-03-05 13:50:07.647886779 +0100 @@ -1,0 +2,8 @@ +Thu Mar 4 03:01:14 UTC 2021 - [email protected] + +- Changes to version 1.3.1 + + Feb 2021 New Security Announcement Patterns (4) for SUSE-SU-2021:14630-1 SUSE-SU-2021:14634-1 SUSE-SU-2021:14627-1 SUSE-SU-2021:14632-1 + + Jan 2021 New Security Announcement Patterns (6) for SUSE-SU-2021:14198-1 SUSE-SU-2021:14609-1 SUSE-SU-2021:14595-1 SUSE-SU-2021:14598-1 SUSE-SU-2021:14603-1 SUSE-SU-2021:14592-1 + + Dec 2020 New Security Announcement Patterns (7) for SUSE-SU-2020:14553-1 SUSE-SU-2020:14578-1 SUSE-SU-2020:14557-1 SUSE-SU-2020:14590-1 SUSE-SU-2020:14584-1 SUSE-SU-2020:14588-1 SUSE-SU-2020:14579-1 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sca-patterns-sle11.spec ++++++ --- /var/tmp/diff_new_pack.itzic0/_old 2021-03-05 13:50:08.291887364 +0100 +++ /var/tmp/diff_new_pack.itzic0/_new 2021-03-05 13:50:08.295887368 +0100 @@ -1,7 +1,7 @@ # # spec file for package sca-patterns-sle11 # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++++++ sca-patterns-sle11-1.3.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14632-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14632-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14632-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14632-1_11.4.ltss.py 2021-03-04 03:52:10.780039280 +0100 @@ -0,0 +1,67 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for bind SUSE-SU-2021:14632-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "bind" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-February/008341.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'bind' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14632-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'bind': '9.9.6P1-0.51.23.1', + 'bind-chrootenv': '9.9.6P1-0.51.23.1', + 'bind-doc': '9.9.6P1-0.51.23.1', + 'bind-libs': '9.9.6P1-0.51.23.1', + 'bind-libs-32bit': '9.9.6P1-0.51.23.1', + 'bind-utils': '9.9.6P1-0.51.23.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/clamav_SUSE-SU-2021_14592-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/clamav_SUSE-SU-2021_14592-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/clamav_SUSE-SU-2021_14592-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/clamav_SUSE-SU-2021_14592-1_11.4.ltss.py 2021-03-04 03:32:18.754926681 +0100 @@ -0,0 +1,62 @@ +#!/usr/bin/python +# +# Title: Moderate Security Announcement for clamav SUSE-SU-2021:14592-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "clamav" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-January/008156.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'clamav' +MAIN = '' +SEVERITY = 'Moderate' +TAG = 'SUSE-SU-2021:14592-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'clamav': '0.103.0-0.20.32.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/cyrus-sasl_SUSE-SU-2020_14579-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/cyrus-sasl_SUSE-SU-2020_14579-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/cyrus-sasl_SUSE-SU-2020_14579-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/cyrus-sasl_SUSE-SU-2020_14579-1_11.4.ltss.py 2021-03-03 23:20:32.802415710 +0100 @@ -0,0 +1,76 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for cyrus-sasl SUSE-SU-2020:14579-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "cyrus-sasl" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2020-December/008085.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'cyrus-sasl' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2020:14579-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'cyrus-sasl': '2.1.22-182.26.4.1', + 'cyrus-sasl-32bit': '2.1.22-182.26.4.1', + 'cyrus-sasl-crammd5': '2.1.22-182.26.4.1', + 'cyrus-sasl-crammd5-32bit': '2.1.22-182.26.4.1', + 'cyrus-sasl-digestmd5': '2.1.22-182.26.4.1', + 'cyrus-sasl-digestmd5-32bit': '2.1.22-182.26.4.1', + 'cyrus-sasl-gssapi': '2.1.22-182.26.4.1', + 'cyrus-sasl-gssapi-32bit': '2.1.22-182.26.4.1', + 'cyrus-sasl-otp': '2.1.22-182.26.4.1', + 'cyrus-sasl-otp-32bit': '2.1.22-182.26.4.1', + 'cyrus-sasl-plain': '2.1.22-182.26.4.1', + 'cyrus-sasl-plain-32bit': '2.1.22-182.26.4.1', + 'cyrus-sasl-saslauthd': '2.1.22-182.26.4.1', + 'cyrus-sasl-sqlauxprop': '2.1.22-182.26.4.1', + 'cyrus-sasl-sqlauxprop-32bit': '2.1.22-182.26.4.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/dnsmasq_SUSE-SU-2021_14603-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/dnsmasq_SUSE-SU-2021_14603-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/dnsmasq_SUSE-SU-2021_14603-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/dnsmasq_SUSE-SU-2021_14603-1_11.4.ltss.py 2021-03-04 03:33:38.140772577 +0100 @@ -0,0 +1,62 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for dnsmasq SUSE-SU-2021:14603-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "dnsmasq" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-January/008224.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'dnsmasq' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14603-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'dnsmasq': '2.78-0.17.15.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/imagemagick_SUSE-SU-2021_14598-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/imagemagick_SUSE-SU-2021_14598-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/imagemagick_SUSE-SU-2021_14598-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/imagemagick_SUSE-SU-2021_14598-1_11.4.ltss.py 2021-03-04 03:33:28.429036289 +0100 @@ -0,0 +1,63 @@ +#!/usr/bin/python +# +# Title: Moderate Security Announcement for ImageMagick SUSE-SU-2021:14598-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "ImageMagick" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-January/008218.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'ImageMagick' +MAIN = '' +SEVERITY = 'Moderate' +TAG = 'SUSE-SU-2021:14598-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'libMagickCore1': '6.4.3.6-78.135.1', + 'libMagickCore1-32bit': '6.4.3.6-78.135.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/jasper_SUSE-SU-2021_14627-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/jasper_SUSE-SU-2021_14627-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/jasper_SUSE-SU-2021_14627-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/jasper_SUSE-SU-2021_14627-1_11.4.ltss.py 2021-03-04 03:51:55.224430445 +0100 @@ -0,0 +1,63 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for jasper SUSE-SU-2021:14627-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "jasper" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-February/008332.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'jasper' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14627-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'libjasper': '1.900.14-134.33.20.1', + 'libjasper-32bit': '1.900.14-134.33.20.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2020_14588-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2020_14588-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2020_14588-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2020_14588-1_11.4.ltss.py 2021-03-03 23:20:55.593796788 +0100 @@ -0,0 +1,66 @@ +#!/usr/bin/python +# +# Title: Moderate Security Announcement for Java SUSE-SU-2020:14588-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "Java" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2020-December/008106.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'Java' +MAIN = '' +SEVERITY = 'Moderate' +TAG = 'SUSE-SU-2020:14588-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'java-1_7_1-ibm': '1.7.1_sr4.75-26.62.1', + 'java-1_7_1-ibm-alsa': '1.7.1_sr4.75-26.62.1', + 'java-1_7_1-ibm-devel': '1.7.1_sr4.75-26.62.1', + 'java-1_7_1-ibm-jdbc': '1.7.1_sr4.75-26.62.1', + 'java-1_7_1-ibm-plugin': '1.7.1_sr4.75-26.62.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2021_14634-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2021_14634-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2021_14634-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/java_SUSE-SU-2021_14634-1_11.4.ltss.py 2021-03-04 03:52:21.487769409 +0100 @@ -0,0 +1,66 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for Java SUSE-SU-2021:14634-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "Java" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-February/008347.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'Java' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14634-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'java-1_7_1-ibm': '1.7.1_sr4.80-26.65.1', + 'java-1_7_1-ibm-alsa': '1.7.1_sr4.80-26.65.1', + 'java-1_7_1-ibm-devel': '1.7.1_sr4.80-26.65.1', + 'java-1_7_1-ibm-jdbc': '1.7.1_sr4.80-26.65.1', + 'java-1_7_1-ibm-plugin': '1.7.1_sr4.80-26.65.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14630-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14630-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14630-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14630-1_11.4.ltss.py 2021-03-04 03:52:01.120282313 +0100 @@ -0,0 +1,85 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for Kernel SUSE-SU-2021:14630-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "Kernel" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-February/008335.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'Kernel' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14630-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'kernel-bigmem': '3.0.101-108.120.1', + 'kernel-bigmem-base': '3.0.101-108.120.1', + 'kernel-bigmem-devel': '3.0.101-108.120.1', + 'kernel-default': '3.0.101-108.120.1', + 'kernel-default-base': '3.0.101-108.120.1', + 'kernel-default-devel': '3.0.101-108.120.1', + 'kernel-default-man': '3.0.101-108.120.1', + 'kernel-ec2': '3.0.101-108.120.1', + 'kernel-ec2-base': '3.0.101-108.120.1', + 'kernel-ec2-devel': '3.0.101-108.120.1', + 'kernel-pae': '3.0.101-108.120.1', + 'kernel-pae-base': '3.0.101-108.120.1', + 'kernel-pae-devel': '3.0.101-108.120.1', + 'kernel-ppc64': '3.0.101-108.120.1', + 'kernel-ppc64-base': '3.0.101-108.120.1', + 'kernel-ppc64-devel': '3.0.101-108.120.1', + 'kernel-source': '3.0.101-108.120.1', + 'kernel-syms': '3.0.101-108.120.1', + 'kernel-trace': '3.0.101-108.120.1', + 'kernel-trace-base': '3.0.101-108.120.1', + 'kernel-trace-devel': '3.0.101-108.120.1', + 'kernel-xen': '3.0.101-108.120.1', + 'kernel-xen-base': '3.0.101-108.120.1', + 'kernel-xen-devel': '3.0.101-108.120.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2020_14584-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2020_14584-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2020_14584-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2020_14584-1_11.4.ltss.py 2021-03-03 23:20:45.946058833 +0100 @@ -0,0 +1,64 @@ +#!/usr/bin/python +# +# Title: Critical Security Announcement for MozillaFirefox SUSE-SU-2020:14584-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "MozillaFirefox" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2020-December/008097.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'MozillaFirefox' +MAIN = '' +SEVERITY = 'Critical' +TAG = 'SUSE-SU-2020:14584-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'MozillaFirefox': '78.6.0-78.108.1', + 'MozillaFirefox-translations-common': '78.6.0-78.108.1', + 'MozillaFirefox-translations-other': '78.6.0-78.108.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14595-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14595-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14595-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14595-1_11.4.ltss.py 2021-03-04 03:32:33.634523204 +0100 @@ -0,0 +1,64 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for MozillaFirefox SUSE-SU-2021:14595-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "MozillaFirefox" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-January/008172.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'MozillaFirefox' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14595-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'MozillaFirefox': '78.6.1-78.111.1', + 'MozillaFirefox-translations-common': '78.6.1-78.111.1', + 'MozillaFirefox-translations-other': '78.6.1-78.111.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14609-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14609-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14609-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/mozillafirefox_SUSE-SU-2021_14609-1_11.4.ltss.py 2021-03-04 03:34:25.675481126 +0100 @@ -0,0 +1,64 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for MozillaFirefox SUSE-SU-2021:14609-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "MozillaFirefox" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-January/008256.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'MozillaFirefox' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14609-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'MozillaFirefox': '78.7.0-78.114.1', + 'MozillaFirefox-translations-common': '78.7.0-78.114.1', + 'MozillaFirefox-translations-other': '78.7.0-78.114.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/python_SUSE-SU-2021_14198-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/python_SUSE-SU-2021_14198-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/python_SUSE-SU-2021_14198-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/python_SUSE-SU-2021_14198-1_11.4.ltss.py 2021-03-04 03:32:10.699145065 +0100 @@ -0,0 +1,75 @@ +#!/usr/bin/python +# +# Title: Moderate Security Announcement for python SUSE-SU-2021:14198-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "python" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-January/008150.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'python' +MAIN = '' +SEVERITY = 'Moderate' +TAG = 'SUSE-SU-2021:14198-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'libpython2_6-1_0': '2.6.9-40.32.1', + 'libpython2_6-1_0-32bit': '2.6.9-40.32.1', + 'python': '2.6.9-40.32.2', + 'python-32bit': '2.6.9-40.32.2', + 'python-base': '2.6.9-40.32.1', + 'python-base-32bit': '2.6.9-40.32.1', + 'python-curses': '2.6.9-40.32.2', + 'python-demo': '2.6.9-40.32.2', + 'python-doc': '2.6-8.40.32.1', + 'python-doc-pdf': '2.6-8.40.32.1', + 'python-gdbm': '2.6.9-40.32.2', + 'python-idle': '2.6.9-40.32.2', + 'python-tk': '2.6.9-40.32.2', + 'python-xml': '2.6.9-40.32.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/squid3_SUSE-SU-2020_14590-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/squid3_SUSE-SU-2020_14590-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/squid3_SUSE-SU-2020_14590-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/squid3_SUSE-SU-2020_14590-1_11.4.ltss.py 2021-03-03 23:21:22.169074599 +0100 @@ -0,0 +1,62 @@ +#!/usr/bin/python +# +# Title: Critical Security Announcement for squid3 SUSE-SU-2020:14590-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "squid3" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2020-December/008129.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'squid3' +MAIN = '' +SEVERITY = 'Critical' +TAG = 'SUSE-SU-2020:14590-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'squid3': '3.1.23-8.16.37.15.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14557-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14557-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14557-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14557-1_11.4.ltss.py 2021-03-03 23:19:08.360704950 +0100 @@ -0,0 +1,69 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for xen SUSE-SU-2020:14557-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "xen" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2020-December/007936.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'xen' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2020:14557-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'xen': '4.4.4_46-61.58.1', + 'xen-doc-html': '4.4.4_46-61.58.1', + 'xen-kmp-default': '4.4.4_46_3.0.101_108.117-61.58.1', + 'xen-kmp-pae': '4.4.4_46_3.0.101_108.117-61.58.1', + 'xen-libs': '4.4.4_46-61.58.1', + 'xen-libs-32bit': '4.4.4_46-61.58.1', + 'xen-tools': '4.4.4_46-61.58.1', + 'xen-tools-domU': '4.4.4_46-61.58.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14578-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14578-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14578-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xen_SUSE-SU-2020_14578-1_11.4.ltss.py 2021-03-03 23:20:24.474641753 +0100 @@ -0,0 +1,69 @@ +#!/usr/bin/python +# +# Title: Moderate Security Announcement for xen SUSE-SU-2020:14578-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "xen" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2020-December/008079.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'xen' +MAIN = '' +SEVERITY = 'Moderate' +TAG = 'SUSE-SU-2020:14578-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'xen': '4.4.4_48-61.61.1', + 'xen-doc-html': '4.4.4_48-61.61.1', + 'xen-kmp-default': '4.4.4_48_3.0.101_108.117-61.61.1', + 'xen-kmp-pae': '4.4.4_48_3.0.101_108.117-61.61.1', + 'xen-libs': '4.4.4_48-61.61.1', + 'xen-libs-32bit': '4.4.4_48-61.61.1', + 'xen-tools': '4.4.4_48-61.61.1', + 'xen-tools-domU': '4.4.4_48-61.61.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xorg-x11-server_SUSE-SU-2020_14553-1_11.4.ltss.py new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xorg-x11-server_SUSE-SU-2020_14553-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xorg-x11-server_SUSE-SU-2020_14553-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.1/patterns/SLE/sle11sp4/xorg-x11-server_SUSE-SU-2020_14553-1_11.4.ltss.py 2021-03-03 23:18:29.541755102 +0100 @@ -0,0 +1,64 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for xorg-x11-server SUSE-SU-2020:14553-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Mar 03 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "xorg-x11-server" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2020-December/007902.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'xorg-x11-server' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2020:14553-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'xorg-x11-Xvnc': '7.4-27.122.37.1', + 'xorg-x11-server': '7.4-27.122.37.1', + 'xorg-x11-server-extra': '7.4-27.122.37.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() +
