1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
<%- @packages = @rev.packages_by_atom
@packages_count = 0
@tf = Text::Format.new -%>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Gentoo Linux Security Advisory GLSA <%= @glsa.glsa_id %>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
http://security.gentoo.org/
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
<%= prefixed_item(" Severity:", @rev.severity.capitalize) %>
<%= prefixed_item(" Title:", @rev.title) %>
<%= prefixed_item(" Date:", @rev.updated_at.strftime('%B %d, %Y')) %>
<%= prefixed_item(" Bugs:", @rev.bugs.map {|b| "\##{b.bug_id}" }.join(', ')) %>
<%= prefixed_item(" ID:", @glsa.glsa_id) %>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Synopsis
========
<%= adv_wrap @rev.synopsis %>
Background
==========
<%= adv_wrap @rev.background %>
Affected packages
=================
-------------------------------------------------------------------
Package / Vulnerable / Unaffected
-------------------------------------------------------------------
<%= render :partial => "show_package_row", :as => :package, :collection => @packages -%>
<% if @print_vulnerable -%>
-------------------------------------------------------------------
NOTE: Certain packages are still vulnerable. Users should migrate
to another package if one is available or wait for the
existing packages to be marked stable by their
architecture maintainers.
<% end -%>
<% if @print_noauto -%>
-------------------------------------------------------------------
NOTE: Packages marked with asterisks require manual intervention!
<% end -%>
<% if @packages_count > 1 -%>
-------------------------------------------------------------------
<%= @packages_count %> affected packages
<% # on all of their supported architectures. REMOVE? -%>
-------------------------------------------------------------------
<% end -%>
Description
===========
<%= adv_wrap @rev.description %>
Impact
======
<%= adv_wrap @rev.impact %>
Workaround
==========
<%= adv_wrap @rev.workaround %>
Resolution
==========
<%= adv_wrap @rev.resolution, true %>
References
==========
<% @reference_number = 0
@max_digits_of_references = @rev.references.size.to_s.size
-%>
<%= render :partial => "show_reference", :as => :reference, :collection => @rev.references -%>
Availability
============
This GLSA and any updates to it are available for viewing at
the Gentoo Security Website:
http://security.gentoo.org/glsa/glsa-<%= @glsa.glsa_id %>.xml
Concerns?
=========
Security is a primary focus of Gentoo Linux and ensuring the
confidentiality and security of our users' machines is of utmost
importance to us. Any security concerns should be addressed to
security@gentoo.org or alternatively, you may file a bug at
https://bugs.gentoo.org.
License
=======
Copyright <%= Time.now.year %> Gentoo Foundation, Inc; referenced text
belongs to its owner(s).
The contents of this document are licensed under the
Creative Commons - Attribution / Share Alike license.
http://creativecommons.org/licenses/by-sa/2.5
|