-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (61 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
62 lines (61 loc) · 1.76 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Gateway List Creator</title>
<meta
name="description"
content="Create and download CSV files which contain domains, hostnames or IPs to use in Cloudflare Zero Trust Lists, especially useful for Gateway."
/>
<meta
name="keywords"
content="zero trust, gateway, lists, domains, hostnames, cloudflare"
/>
<link rel=icon href=favicon.png>
<link rel="stylesheet" href="css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<h1>Convert Hostname to CSV file</h1>
<p>
Fetch the first 4999 hostnames from a list from
<a
href="https://filterlists.com/"
target="_blank"
rel="nofollow external noopener noreferrer"
>FilterLists</a
>
</p>
<form id="url-form">
<label for="url-input">URL:</label>
<input type="url" id="url-input" name="url" required />
<br /><br />
<input
type="radio"
id="hosts"
name="type"
value="hosts"
checked
required
/>
<label
for="hosts"
title="Only fetches lists starting with '||' or '0.0.0.0'."
>Fetch hosts</label
>
<br />
<small>Fetches only lists starting with '||' or '0.0.0.0'.</small>
<br />
<br />
<input type="radio" id="networks" name="type" value="networks" required />
<label for="networks" title="Only fetches lists that contain IPs."
>Fetch IPs</label
>
<br />
<small>Fetches only lists that contain IP addresses.</small>
<br /><br />
<button type="submit">Fetch</button>
</form>
<div id="result"></div>
<script src="js/form.js"></script>
</body>
</html>