Skip to content

Commit

Permalink
Merge pull request #8 from OllieJC/integrity-fix
Browse files Browse the repository at this point in the history
Integrity fix and RFC text
  • Loading branch information
OllieJC authored Jun 27, 2022
2 parents 998e390 + 178f678 commit db7ce47
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions templates/_primary.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<meta http-equiv="Content-Language" content="en">
<meta name="google" content="notranslate">
<link rel="canonical" href="{{ canonical }}">
<link rel="stylesheet" crossorigin="anonymous" href="/assets/css/bootstrap.min.css" integrity="{{ bs_min_css_hash }}">
<link rel="stylesheet" crossorigin="anonymous" href="/assets/css/bootstrap.min.css">
{% if false -%}<link rel="stylesheet" crossorigin="anonymous" href="/assets/css/all.min.css" integrity="{{ font_awesome_css_hash }}">{% endif -%}
<link rel="stylesheet" crossorigin="anonymous" href="/assets/css/bootstrap-table.min.css" integrity="{{ bs_table_css_hash }}">
<link rel="stylesheet" crossorigin="anonymous" href="/assets/css/bootstrap-table.min.css">
<meta name="theme-color" content="#7952b3">
<link rel="manifest" href="/site.webmanifest">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link href="/assets/css/_main_1644289153.css" rel="stylesheet" integrity="{{ main_css_hash }}" crossorigin="anonymous">
<link href="/assets/css/_main_1644289153.css" rel="stylesheet" crossorigin="anonymous">
{% block head %}{% endblock %}
</head>
<body class="d-flex flex-column h-100">
Expand Down Expand Up @@ -67,7 +67,7 @@
</footer>


<script src="/assets/js/_main_1617722175.js" integrity="{{ main_js_hash }}" crossorigin="anonymous"></script>
<script src="/assets/js/_main_1617722175.js" crossorigin="anonymous"></script>
{% if false -%}
<script src="/assets/js/jquery.min.js" integrity="{{ jq_js_hash }}" crossorigin="anonymous"></script>
<script src="/assets/js/bootstrap.bundle.min.js" integrity="{{ bsb_js_hash }}" crossorigin="anonymous"></script>
Expand Down
2 changes: 1 addition & 1 deletion templates/domain.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h3>dnssecuritytxt (DNS)</h3>
{% endif %}

<h3>security.txt (HTTP)</h3>
<p>You can find out more about <a href="https://securitytxt.org/" target="_blank">security.txt here</a>.</p>
<p>You can find out more about <a href="https://securitytxt.org/" target="_blank">security.txt here</a> or by looking up <a href="https://www.rfc-editor.org/rfc/rfc9116.html">RFC 9116</a>.</p>

<p>{{ "Status: " + (res["http_security_txt"]["status_code"]|string) if "http_security_txt" in res and "status_code" in res["http_security_txt"] else "No security.txt file found" }}</p>
{% if "http_security_txt" in res and "headers" in res["http_security_txt"] and "Content-Type" in res["http_security_txt"]["headers"] -%}
Expand Down
4 changes: 2 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ <h2>What is a security contact?</h2>
<p>A security contact is a way for websites or services to sign post where and how security researchers can get in contact. It also typically describes whether there is any vulnerability disclosure policy or bug bounty.</p>
<p>There are two methods to set security contacts, with a security.txt file served on a known path and with DNS TXT records.</p>
<p><strong>findsecuritycontacts.com</strong> scans the top {{ total }} sites daily for their security.txt file or DNS records.<br>
You can also <a href="/query">query</a> any website to see if there is a security.txt file or DNS records and whether they appear to be formatted correctly.</p>
<p>You can find more about the <strong>security.txt</strong> file and the RFC status on <a href="https://securitytxt.org">securitytxt.org</a>; and about <strong>DNS security records</strong> and the status on <a href="https://dnssecuritytxt.org/">dnssecuritytxt.org</a></p>
You can also <a href="/query">query</a> any website to see if there is a security.txt file (RFC 9116) or DNS records and whether they appear to be formatted correctly.</p>
<p>You can find more about the <strong>security.txt</strong> file at <a href="https://securitytxt.org">securitytxt.org</a> or by looking up <a href="https://www.rfc-editor.org/rfc/rfc9116.html">RFC 9116</a>; and about <strong>DNS security records</strong> and the status on <a href="https://dnssecuritytxt.org/">dnssecuritytxt.org</a></p>
</div>

<div class="validDiv">
Expand Down

0 comments on commit db7ce47

Please sign in to comment.