2024-01-14 18:40:47 -06:00

59 lines
1.9 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">
<title>Is The Internet On Fire?</title>
</head>
<body style="text-align:center;">
<small>
[<a href="./status.txt">txt</a>]&nbsp;<tt>dig +short txt istheinternetonfire.app</tt>&nbsp;[<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="//twitter.com/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>