{% extends "security/base_security.html" %} {% block title %}{{ notice.id }}: {{ notice.title }} | Ubuntu security notices{% endblock %} {% block content %}

{{ notice.id }}: {{ notice.title }}

{{ notice.published }}

{{ notice.summary | safe }}

Reduce your security exposure

Ubuntu Pro provides ten-year security coverage to 25,000+ packages in Main and Universe repositories, and it is free for up to five machines.

Learn more about Ubuntu Pro

Releases

{% if notice.package_descriptions %}

Packages

    {% for package_name, package_title in notice.package_descriptions.items() %}
  • {{ package_name }} - {{ package_title }}
  • {% endfor %}
{% endif %}

Details

{{ notice.details|safe }}

Reduce your security exposure

Ubuntu Pro provides ten-year security coverage to 25,000+ packages in Main and Universe repositories, and it is free for up to five machines.

Learn more about Ubuntu Pro

Update instructions

{% if notice.release_packages %}

The problem can be corrected by updating your system to the following package versions:

{% for version in notice.release_packages.__reversed__() %}
Ubuntu {{ version }}
    {% for package_name, package in notice.release_packages[version].items() %}
  • {% if package.source_link %} {{ package.name }} {% else %} {{ package.name }} {% endif %} - {% if package.version_link %} {{ package.version }} {% else %} {{ package.version }} {% endif %}
    {% if package.pocket == "esm-infra" %} Available with Ubuntu Pro {% endif %} {% if package.pocket == "esm-apps" %} Available with Ubuntu Pro {% endif %}
  • {% endfor %}
{% endfor %} {% endif %}

{{ notice.instructions|safe }}

{% if notice.cves or notice.references %}

References

    {% if notice.cves %} {% for cve in notice.cves %}
  • {{ cve.id }}
  • {% endfor %} {% endif %} {% if notice.references %} {% for reference in notice.references %}
  • {{ reference }}
  • {% endfor %} {% endif %}
{% endif %} {% if notice.related_notices|length > 0 %}

Related notices

    {% for notice in notice.related_notices %}
  • {{ notice }}
  • {% endfor %}
{% endif %}
{% with first_item="_security_discussion", second_item="_security_need", third_item="_security_further_reading" %}{% include "shared/contextual_footers/_contextual_footer.html" %}{% endwith %} {% endblock %}