-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed-audit.html
More file actions
19 lines (19 loc) · 789 Bytes
/
Copy pathseed-audit.html
File metadata and controls
19 lines (19 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Fishtank Seed Audit</title>
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self'; img-src 'self' data:; font-src 'self'; frame-src 'self'; object-src 'none'; base-uri 'none'; form-action 'none'; worker-src 'none'"
/>
<meta name="referrer" content="no-referrer" />
<link rel="stylesheet" href="seed-audit.css" />
</head>
<body>
<pre id="out">running audit...</pre>
<iframe id="sim" src="./index.html" title="seed audit frame" sandbox="allow-same-origin allow-scripts"></iframe>
<script src="seed-audit.js"></script>
</body>
</html>