-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.2 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.2 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/assets/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Web Fuzzing Commons" />
<title>WFC Reports</title>
</head>
<body>
<div id="root">
<h2>WARNING</h2>
<p>
If you see this message, it means the web app was not properly started.
For example, if you opened the index.html file directly, that would be loaded with file:// protocol
in your browser.
By default, modern browsers block loading local files due to CORS issues.
You need to open the web app via an HTTP server.
</p>
<p>
To simplify the visualization of the web report, we provide a webreport.py script to start a HTTP server,
and automatically open your browser on the starting page of the report.
To simplify its use, we also provide a webreport.command (for Mac) and webreport.bat (for Windows) to easily start the
Python script with a simple mouse double-click.
</p>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>