-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 1.72 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 1.72 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
<!doctype html>
<html lang="cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta http-equiv="Cache-control" content="no-cache;max-age=3600"/>
<meta content="always" name="referrer">
<meta name="theme-color" content="#2932e1">
<title>无头浏览器检测 Headless Detector</title>
<meta name="Keywords" content="无头浏览器检测,headless,browser,detector,爬虫检测,robot detect,反爬,模拟登录检测,模拟浏览识别">
<meta name="Description" content="检测请求方是否基于无头浏览器进行网络模拟访问,试图绕过安全机制,模仿真人浏览相关数据,以便爬取、虚假浏览等行为。">
<link rel="stylesheet" href="css/index.css" type="text/css">
<link href="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.16.0/bootstrap-table.min.css" rel="stylesheet">
</head>
<body>
<div class="legend">
<ul>
<li><span class="headful"></span>Headful</li>
<li><span class="headless"></span>Headless</li>
<li><span class="undefined"></span>Undefined</li>
</ul>
</div>
<div class="bootstrap-table">
<div class="fixed-table-container">
<table class="table">
<thead>
<tr>
<th>测试项</th>
<th>测试值</th>
<th>测试结果</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script type="text/javascript" src="js/detectlogic.js"></script>
</body>
</html>