-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaws_ecr_scan_result_html_failed.html
170 lines (150 loc) · 4.12 KB
/
aws_ecr_scan_result_html_failed.html
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!doctype html>
<html>
<head>
<title>
Scan for psql-client 12.4.0
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- basic bootstrap css/js just to make it a bit nicer to look at -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<style>
/* the whole style looks dumb, but anyway... */
/* severities are color coded according to CVE levels */
.custom-critical {
background-color: red;
border: 1px solid black;
color: black;
}
.custom-high {
background-color: orange;
border: 1px solid black;
color: black;
}
.custom-medium {
background-color: yellow;
border: 1px solid black;
color: black;
}
.custom-low {
background-color: green;
border: 1px solid black;
color: white;
}
.custom-informational {
background-color: blue;
border: 1px solid black;
color: white;
}
.custom-undefined {
background-color: lightgray;
border: 1px solid black;
color: black;
}
.info-severities {
background-color: #f8f9fc;
color: #000;
padding: 1em;
text-transform: uppercase !important;
}
.info-general {
background-color: #f8f9fc;
border-left: 1em black solid;
border: 1px solid black;
color: #000;
margin-top: 1em;
padding-left: 1em;
}
.info-box {
background-color: #f8f9fc;
border-left: 1em black solid;
border: 1px solid black;
color: #000;
margin-top: 1em;
padding-left: 1em;
text-transform: uppercase !important;
background-color: #c3c3c3;
}
.item-box {
border-left: 0.1em black solid;
border: 1px solid black;
margin-top: 1em;
padding-top: 1em;
}
#footer {
margin-bottom: 1em;
padding-bottom: 1em;
}
</style>
</head>
<body>
<!-- dummy section to redirect 'Back to top' hrefs -->
<div id="top">
<br/>
</div>
<!-- general info -->
<div class="container info-general">
<div class="container">
<div class="row">
<div class="col-md-3 text-right"><b>Image scan completed at</b></div>
<div class="col-md-9"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3 text-right"><b>Vulnerability source updated at</b></div>
<div class="col-md-9"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3 text-right"><b>Image</b></div>
<div class="col-md-9">psql-client</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3 text-right"><b>Tag</b></div>
<div class="col-md-9">12.4.0</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3 text-right"><b>SHA</b></div>
<div class="col-md-9">sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-11">
<small>
<textarea class="form-control" rows="3">
docker pull psql-client:12.4.0
docker pull psql-client@sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
</textarea>
</small>
<br/>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center info-general info-severities">
Image scan FAILED</div>
</div>
<div class="row item-box">
<div class="col-md-12 text-center">
UnsupportedImageError: The operating system 'alpine' version 'v3.13' is not supported.<br/>
<br/>
</div>
</div>
</div>
<!-- footer for.. nothing -->
<div id="footer" class="container">
<div class="row">
<div class="col-md-12 text-center">
</div>
</div>
</div>
</body>
</html>