59 lines
2.0 KiB
Plaintext
59 lines
2.0 KiB
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<title>Is The Internet On Fire?</title>
|
|
<style>
|
|
{{ template "style.css" . }}
|
|
</style>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
<link rel="me" href="https://mastodon.c.smoothnet.org/@nhyatt">
|
|
<title>Is The Internet On Fire?</title>
|
|
</head>
|
|
<body style="text-align:center;">
|
|
<small>
|
|
[<a href="./status.txt">txt</a>] <tt>dig +short txt istheinternetonfire.app | sed 's/" "//g' | sed 's/%n/\n/g'</tt> [<a href="./status.json">json</a>]
|
|
</small>
|
|
<hr align="CENTER" noshade="noshade" size="2" width="100%">
|
|
{{- if gt (len .CVEs) 0 }}
|
|
<P>
|
|
<span class="fire">Yes!</span><br>
|
|
</P>
|
|
<table>
|
|
{{- range .CVEs }}
|
|
<tr>
|
|
<td>
|
|
<a href="//nvd.nist.gov/vuln/detail/{{ .CveID | ToUpper }}">{{ .CveID | ToUpper }}</a>
|
|
</td>
|
|
<td>
|
|
{{ .Product }}
|
|
</td>
|
|
<td {{ if gt (len .ShortDescription) 100 }} style="font-size: 10pt;"{{ end }}>
|
|
{{ .ShortDescription }}
|
|
</td>
|
|
</tr>
|
|
{{- end }}
|
|
</table>
|
|
{{ else }}
|
|
<P>
|
|
<span class="safe">Nope!</span><br>
|
|
</P>
|
|
{{- end }}
|
|
<hr align="CENTER" noshade="noshade" size="2" width="100%">
|
|
<small>
|
|
Data provided by <a href="//www.cisa.gov">CISA</a> & <a href="//nvd.nist.gov">NIST</a>.
|
|
<br>
|
|
Special thanks to <a href="//mstdn.social/@jschauma">@jschauma</a> author of <a href="//istheinternetonfire.com">istheinternetonfire.com</a>.
|
|
<br>
|
|
Updated by <a href="//mastodon.c.smoothnet.org/@nhyatt">@nhyatt</a>. <a href="//gitea.smoothnet.org/nhyatt/istheinternetonfire">Source</a>
|
|
</small>
|
|
</body>
|
|
</html> |