--- layout: security title: Xen Security Advisory (XSA) Tracker permalink: /security/xsa/ --- Xen Security Advisory (XSA) Tracker =================================== **Notice:** This page is still under construction. Until this notice is removed, the information below may not be accurate. We appreciate your patience. This tracker shows whether Qubes OS is affected by any given [Xen Security Advisory (XSA)][XSA]. Shortly after a new XSA is published, we will add a new row to this tracker. Whenever Qubes is significantly affected by an XSA, a [Qubes Security Bulletin (QSB)][QSB] is published, and a link to that QSB is added to the row for the associated XSA. Under the "Is Qubes Affected?" column, there are two possible values: **Yes** or **No**. * **Yes** means that the *security* of Qubes OS *is* affected. * **No** means that the *security* of Qubes OS is *not* affected. Important Notes --------------- * For the purpose of this tracker, we do *not* classify mere [denial-of-service (DoS) attacks][DoS] as affecting the *security* of Qubes OS. Therefore, if an XSA pertains *only* to DoS attacks against Qubes, the value in the "Is Qubes Affected?" column will be **No**. * For simplicity, we use the present tense ("is affected") throughout this page, but this does **not** necessarily mean that up-to-date Qubes installations are *currently* affected by any particular XSA. In fact, it is extremely unlikely that any up-to-date Qubes installations are vulnerable to any XSAs on this page, since patches are almost always published concurrently with QSBs. Please read the QSB (if any) for each XSA for patching details. * All dates are in UTC. Statistics ---------- {% assign date_first = site.data.xsa.first.date %} {% assign date_first_epoch = date_first | date: "%s" %} {% assign date_last = site.data.xsa.last.date %} {% assign date_last_epoch = date_last | date: "%s" %} {% assign timespan_epoch = date_last_epoch | minus: date_first_epoch %} {% assign timespan_human = timespan_epoch | divided_by: 31536000.0 | round: 1 %} {% assign xsa_total = site.data.xsa | size | plus: 1.0 %} {% assign xsa_affected = 0.0 %} {% for xsa in site.data.xsa %} {% if xsa.affected == true %} {% assign xsa_affected = xsa_affected | plus: 1.0 %} {% endif %} {% endfor %} {% assign affected_percentage = xsa_affected | divided_by: xsa_total | times: 100 | round: 2 %} * Total time span: **{{ timespan_human }} years** ({{ date_first }} to {{ date_last }}) * Total XSAs published: **{{ xsa_total | round }}** * Total XSAs affecting Qubes OS: **{{ xsa_affected | round }}** * Percentage of XSAs affecting Qubes OS: **{{ affected_percentage }}%** Tracker ------- {% for xsa in site.data.xsa %} {% endfor %}
Date XSA Is Qubes Affected?
{{ xsa.date }} XSA-{{ xsa.xsa }}  {% if xsa.affected == false %} {% if xsa.mitigation %} No ({{ xsa.mitigation }}) {% else %} No {% endif %} {% elsif xsa.affected == true %} Yes {% if xsa.qsb %} | QSB-{{ xsa.qsb }}  {% endif %} {% else %} {% endif %}
[XSA]: https://xenbits.xen.org/xsa/ [QSB]: /security/bulletins/ [DoS]: https://en.wikipedia.org/wiki/Denial-of-service_attack