layout | title | permalink |
---|---|---|
page |
Security Reports |
/security/ |
This page lists all security vulnerabilities fixed in released versions of Apache Guacamole. Each vulnerability is listed with a description of the problem, its associated CVE number, and the Guacamole release in which the vulnerability was fixed.
If you believe you have discovered a security problem in Apache Guacamole, please follow responsible disclosure practices and report discovered security issues privately, either to the private security mailing list of the ASF Security Team or the [email protected] mailing list, before disclosing or discussing the issue in a public forum.
{% assign releases = site.security | group_by: 'fixed' %} {% for release in releases reversed %}
{% assign asfrelease = site.releases | where: 'title', release.name %} {% if asfrelease != empty %} Fixed in Apache Guacamole {{ release.name }}
{% endif %}
-
{% assign reports = release.items | sort: 'title' %}
{% for report in reports %}
-
{{ report.content }}
{{ report.title }} ({{ report.cve }})
{% endfor %}