-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (82 loc) · 3.54 KB
/
index.html
File metadata and controls
91 lines (82 loc) · 3.54 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Cloudflare IP Test Tool including HTTP respond time and download speed">
<title>Cloudflare IP Batch Test Tool</title>
<link href="/tabulator/css/tabulator_site.min.css" rel="stylesheet">
<link href="/style.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/jquery@3.5.1/dist/jquery.js"></script>
<script type="text/javascript" src="/tabulator/js/tabulator.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175571646-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-175571646-1');
var targetProtocol = "http:";
if (window.location.protocol != targetProtocol)
window.location.href = targetProtocol +
window.location.href.substring(window.location.protocol.length);
</script>
<script data-ad-client="ca-pub-2746399471019267" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body>
<h1>Cloudflare IP Batch Test Tool</h1>
<div class="table panel">
<div class="line">
<div class="col">
<button class="button big" id="select-all" status=0>Select All</button>
<div class="line">
<input id="select-number" class="border" type="number" value="20" min="1" max="100"></input>
<button class="button" id="select-random"> Random </button>
</div>
</div>
<div class="col">
<button class="button big" id="test-respond" status=0>Test Respond</button>
<div class="line">
<select id="img-select" class="border">
<option value="0">115KB</option>
<option value="1" selected="selected">1.20MB</option>
<option value="2">10.4MB</option>
</select>
<button class="button" id="test-speed" status=0> Speed </button>
</div>
</div>
</div>
</div>
<div id="main-table"></div>
<div class="panel bottom">
<div class="line">
<div class="button" id="download" status=0>Data Sheet</div>
<div class="button" id="list-edit" status=0>List Edit</div>
</div>
<div class="line" id="list-edit-wrap">
<textarea id="list-edit-input" class="border"></textarea>
<div class="line">
<div class="button" id="list-edit-set">Set & Refresh</div>
<div class="button" id="list-edit-reset">Default</div>
<div class="button" id="list-edit-larger">Larger</div>
</div>
</div>
</div>
<p>First Respond of every IP may be relatively slow</p>
<p>You can use Shift + Drag to choose a range quickly (in some browser)</p>
<p>If testing too frequently, you may be blocked by Cloudflare or your ISP</p>
<p>It is not clear about the test consistency between browser and local software</p>
<p>Please visit this page in HTTP or cause problem</p>
<p>Feedback via <a href="https://github.com/TulvL/cloudflare-ip-tester">Github</a> is welcome</p>
<p>IE browser is not supported</p>
<br />
<p><a href="http://flares.cloud/">HOME</a></p>
<!-- Want More IP? Visit <a href=""> here </a> (only support http) -->
<br />
<br />
<script type="text/javascript" src="/script.js"></script>
<script>
loadStoredOrDefaultList()
</script>
</body>
</html>