首页 4.常见应用默认页面记录
文章
取消

4.常见应用默认页面记录

1. 前言

介绍一下为什么会写这篇文章吧,主要是记录一些常见应用的默认页面截图和响应数据。

这些数据在攻防当中对信息收集是有一定帮助的,例如:

  • 常见的WAF拦截页面特征,识别后,在自动化的工具中,我们可以设置自动屏蔽这些url,不用人工再做分析。
  • 常见的中间件启动特征,这类的可能是刚部署的系统,也可能是将资产藏到了二级目录下,可以做一些定制扫描分析,如启动dirscan对其做扫描。
  • 常见的报错页面特征,这类可能会泄漏应用系统的指纹,也可能会泄漏系统信息,例如:系统绝对路径

等等,也正是因为上述这些原因,故将平时搜集到的一些信息存储起来,作为一篇文章记录,后面做研究时可以进行深入分析。

2. 中间件类的默认页面

2.1 Nginx

标题1:Welcome to Nginx

截图1:

Untitled

响应内容1:

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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

标题2:Welcome to nginx for Windows

截图2:

Untitled

响应内容2:

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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx for Windows!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx for Windows!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
Windows documentation and support is available at
<a href="http://nginx-win.ecsds.eu/">nginx for Windows</a>.<br/>
Windows commercial support is available at
<a href="mailto:support@ecsystems.nl">ITProjectPartner</a>.</p>

<p><em>Thank you for using nginx for Windows.</em></p>
</body>
</html>

标题3:Test Page for the Nginx HTTP Server on Red Hat Enterprise Linux

截图3:

Untitled

响应内容3:

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>Test Page for the Nginx HTTP Server on Red Hat Enterprise Linux</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <style type="text/css">
            /*<![CDATA[*/
            body {
                background-color: #fff;
                color: #000;
                font-size: 0.9em;
                font-family: sans-serif,helvetica;
                margin: 0;
                padding: 0;
            }
            :link {
                color: #c00;
            }
            :visited {
                color: #c00;
            }
            a:hover {
                color: #f50;
            }
            h1 {
                text-align: center;
                margin: 0;
                padding: 0.6em 2em 0.4em;
                background-color: #900;
                color: #fff;
                font-weight: normal;
                font-size: 1.75em;
                border-bottom: 2px solid #000;
            }
            h1 strong {
                font-weight: bold;
                font-size: 1.5em;
            }
            h2 {
                text-align: center;
                background-color: #900;
                font-size: 1.1em;
                font-weight: bold;
                color: #fff;
                margin: 0;
                padding: 0.5em;
                border-bottom: 2px solid #000;
            }
            hr {
                display: none;
            }
            .content {
                padding: 1em 5em;
            }
            .alert {
                border: 2px solid #000;
            }

            img {
                border: 2px solid #fff;
                padding: 2px;
                margin: 2px;
            }
            a:hover img {
                border: 2px solid #294172;
            }
            .logos {
                margin: 1em;
                text-align: center;
            }
            /*]]>*/
        </style>
    </head>

    <body>
        <h1>Welcome to <strong>nginx</strong> on Red Hat Enterprise Linux!</h1>

        <div class="content">
            <p>This page is used to test the proper operation of the
            <strong>nginx</strong> HTTP server after it has been
            installed. If you can read this page, it means that the
            web server installed at this site is working
            properly.</p>

            <div class="alert">
                <h2>Website Administrator</h2>
                <div class="content">
                    <p>This is the default <tt>index.html</tt> page that
                    is distributed with <strong>nginx</strong> on
                    Red Hat Enterprise Linux.  It is located in
                    <tt>/usr/share/nginx/html</tt>.</p>

                    <p>You should now put your content in a location of
                    your choice and edit the <tt>root</tt> configuration
                    directive in the <strong>nginx</strong>
                    configuration file
                    <tt>/etc/nginx/nginx.conf</tt>.</p>

                    <p>For information on Red Hat Enterprise Linux, please visit the <a href="http://www.redhat.com/">Red Hat, Inc. website</a>. The documentation for Red Hat Enterprise Linux is <a href="http://www.redhat.com/docs/manuals/enterprise/">available on the Red Hat, Inc. website</a>.</p>

                </div>
            </div>

            <div class="logos">
                <a href="http://nginx.net/"><img
                    src="nginx-logo.png" 
                    alt="[ Powered by nginx ]"
                    width="121" height="32" /></a>
                <a href="http://www.redhat.com/"><img
                    src="poweredby.png"
                    alt="[ Powered by Red Hat Enterprise Linux ]"
                    width="88" height="31" /></a>
            </div>
        </div>
    </body>
</html>

标题4:Test Page for the Nginx HTTP Server on the Amazon Linux AMI

截图4:

Untitled

响应内容4:

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>Test Page for the Nginx HTTP Server on the Amazon Linux AMI</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <style type="text/css">
            /*<![CDATA[*/
            body {
                background-color: #fff;
                color: #000;
                font-size: 0.9em;
                font-family: sans-serif,helvetica;
                margin: 0;
                padding: 0;
            }
            :link {
                color: #c00;
            }
            :visited {
                color: #c00;
            }
            a:hover {
                color: #f50;
            }
            h1 {
                text-align: center;
                margin: 0;
                padding: 0.6em 2em 0.4em;
                background-color: #294172;
                color: #fff;
                font-weight: normal;
                font-size: 1.75em;
                border-bottom: 2px solid #000;
            }
            h1 strong {
                font-weight: bold;
                font-size: 1.5em;
            }
            h2 {
                text-align: center;
                background-color: #3C6EB4;
                font-size: 1.1em;
                font-weight: bold;
                color: #fff;
                margin: 0;
                padding: 0.5em;
                border-bottom: 2px solid #294172;
            }
            hr {
                display: none;
            }
            .content {
                padding: 1em 5em;
            }
            .alert {
                border: 2px solid #000;
            }

            img {
                border: 2px solid #fff;
                padding: 2px;
                margin: 2px;
            }
            a:hover img {
                border: 2px solid #294172;
            }
            .logos {
                margin: 1em;
                text-align: center;
            }
            /*]]>*/
        </style>
    </head>

    <body>
        <h1>Welcome to <strong>nginx</strong> on the Amazon Linux AMI!</h1>

        <div class="content">
            <p>This page is used to test the proper operation of the
            <strong>nginx</strong> HTTP server after it has been
            installed. If you can read this page, it means that the
            web server installed at this site is working
            properly.</p>

            <div class="alert">
                <h2>Website Administrator</h2>
                <div class="content">
                    <p>This is the default <tt>index.html</tt> page that
                    is distributed with <strong>nginx</strong> on
                    the Amazon Linux AMI.  It is located in
                    <tt>/usr/share/nginx/html</tt>.</p>

                    <p>You should now put your content in a location of
                    your choice and edit the <tt>root</tt> configuration
                    directive in the <strong>nginx</strong>
                    configuration file
                    <tt>/etc/nginx/nginx.conf</tt>.</p>

                </div>
            </div>

            <div class="logos">
                <a href="http://nginx.net/"><img
                    src="nginx-logo.png" 
                    alt="[ Powered by nginx ]"
                    width="121" height="32" /></a>

                <a href="http://aws.amazon.com/amazon-linux-ami/"><img 
                    src="poweredby.png" 
                    alt="[ Powered by the Amazon Linux AMI ]" 
                    width="88" height="31" /></a>
            </div>
        </div>
    </body>
</html>

标题5:Test Page for the Nginx HTTP Server on EPEL

截图5:

Untitled

响应内容5:

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>Test Page for the Nginx HTTP Server on EPEL</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <style type="text/css">
            /*<![CDATA[*/
            body {
                background-color: #fff;
                color: #000;
                font-size: 0.9em;
                font-family: sans-serif,helvetica;
                margin: 0;
                padding: 0;
            }
            :link {
                color: #c00;
            }
            :visited {
                color: #c00;
            }
            a:hover {
                color: #f50;
            }
            h1 {
                text-align: center;
                margin: 0;
                padding: 0.6em 2em 0.4em;
                background-color: #294172;
                color: #fff;
                font-weight: normal;
                font-size: 1.75em;
                border-bottom: 2px solid #000;
            }
            h1 strong {
                font-weight: bold;
                font-size: 1.5em;
            }
            h2 {
                text-align: center;
                background-color: #3C6EB4;
                font-size: 1.1em;
                font-weight: bold;
                color: #fff;
                margin: 0;
                padding: 0.5em;
                border-bottom: 2px solid #294172;
            }
            hr {
                display: none;
            }
            .content {
                padding: 1em 5em;
            }
            .alert {
                border: 2px solid #000;
            }

            img {
                border: 2px solid #fff;
                padding: 2px;
                margin: 2px;
            }
            a:hover img {
                border: 2px solid #294172;
            }
            .logos {
                margin: 1em;
                text-align: center;
            }
            /*]]>*/
        </style>
    </head>

    <body>
        <h1>Welcome to <strong>nginx</strong> on EPEL!</h1>

        <div class="content">
            <p>This page is used to test the proper operation of the
            <strong>nginx</strong> HTTP server after it has been
            installed. If you can read this page, it means that the
            web server installed at this site is working
            properly.</p>

            <div class="alert">
                <h2>Website Administrator</h2>
                <div class="content">
                    <p>This is the default <tt>index.html</tt> page that
                    is distributed with <strong>nginx</strong> on
                    EPEL.  It is located in
                    <tt>/usr/share/nginx/html</tt>.</p>

                    <p>You should now put your content in a location of
                    your choice and edit the <tt>root</tt> configuration
                    directive in the <strong>nginx</strong>
                    configuration file
                    <tt>/etc/nginx/nginx.conf</tt>.</p>

                </div>
            </div>

            <div class="logos">
                <a href="http://nginx.net/"><img
                    src="nginx-logo.png" 
                    alt="[ Powered by nginx ]"
                    width="121" height="32" /></a>

                <a href="http://fedoraproject.org/"><img 
                    src="poweredby.png" 
                    alt="[ Powered by Fedora EPEL ]"
                    width="88" height="31" /></a>
            </div>
        </div>
    </body>
</html>

标题6:Test Page for the Nginx HTTP Server on Fedora

截图6:

)

响应内容6:

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>Test Page for the Nginx HTTP Server on Fedora</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <style type="text/css">
            /*<![CDATA[*/
            body {
                background-color: #fff;
                color: #000;
                font-size: 0.9em;
                font-family: sans-serif,helvetica;
                margin: 0;
                padding: 0;
            }
            :link {
                color: #c00;
            }
            :visited {
                color: #c00;
            }
            a:hover {
                color: #f50;
            }
            h1 {
                text-align: center;
                margin: 0;
                padding: 0.6em 2em 0.4em;
                background-color: #294172;
                color: #fff;
                font-weight: normal;
                font-size: 1.75em;
                border-bottom: 2px solid #000;
            }
            h1 strong {
                font-weight: bold;
                font-size: 1.5em;
            }
            h2 {
                text-align: center;
                background-color: #3C6EB4;
                font-size: 1.1em;
                font-weight: bold;
                color: #fff;
                margin: 0;
                padding: 0.5em;
                border-bottom: 2px solid #294172;
            }
            hr {
                display: none;
            }
            .content {
                padding: 1em 5em;
            }
            .alert {
                border: 2px solid #000;
            }

            img {
                border: 2px solid #fff;
                padding: 2px;
                margin: 2px;
            }
            a:hover img {
                border: 2px solid #294172;
            }
            .logos {
                margin: 1em;
                text-align: center;
            }
            /*]]>*/
        </style>
    </head>

    <body>
        <h1>Welcome to <strong>nginx</strong> on Fedora!</h1>

        <div class="content">
            <p>This page is used to test the proper operation of the
            <strong>nginx</strong> HTTP server after it has been
            installed. If you can read this page, it means that the
            web server installed at this site is working
            properly.</p>

            <div class="alert">
                <h2>Website Administrator</h2>
                <div class="content">
                    <p>This is the default <tt>index.html</tt> page that
                    is distributed with <strong>nginx</strong> on
                    Fedora.  It is located in
                    <tt>/usr/share/nginx/html</tt>.</p>

                    <p>You should now put your content in a location of
                    your choice and edit the <tt>root</tt> configuration
                    directive in the <strong>nginx</strong>
                    configuration file
                    <tt>/etc/nginx/nginx.conf</tt>.</p>

                </div>
            </div>

            <div class="logos">
                <a href="http://nginx.net/"><img
                    src="nginx-logo.png" 
                    alt="[ Powered by nginx ]"
                    width="121" height="32" /></a>

                <a href="http://fedoraproject.org/"><img 
                    src="poweredby.png" 
                    alt="[ Powered by Fedora ]" 
                    width="88" height="31" /></a>
            </div>
        </div>
    </body>
</html>

2.2 IIS7

标题:IIS7

截图:

Untitled

响应内容:

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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>IIS7</title>
<style type="text/css">
<!--
body {
	color:#000000;
	background-color:#B3B3B3;
	margin:0;
}

#container {
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	}

a img {
	border:none;
}

-->
</style>
</head>
<body>
<div id="container">
<a href="http://go.microsoft.com/fwlink/?linkid=66138&amp;clcid=0x409"><img src="welcome.png" alt="IIS7" width="571" height="411" /></a>
</div>
</body>
</html>

2.3 IIS8.5

标题:IIS Windows Server

截图:

Untitled

响应内容:

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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>IIS Windows Server</title>
<style type="text/css">
<!--
body {
	color:#000000;
	background-color:#0072C6;
	margin:0;
}

#container {
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	}

a img {
	border:none;
}

-->
</style>
</head>
<body>
<div id="container">
<a href="http://go.microsoft.com/fwlink/?linkid=66138&amp;clcid=0x409"><img src="iis-85.png" alt="IIS" width="960" height="600" /></a>
</div>
</body>
</html>

2.4 OpenResty

标题:Welcome to OpenResty!

截图:

Untitled

响应内容:

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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Welcome to OpenResty!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to OpenResty!</h1>
<p>If you see this page, the OpenResty web platform is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to our
<a href="https://openresty.org/">openresty.org</a> site<br/>
Commercial support is available at
<a href="https://openresty.com/">openresty.com</a>.</p>
<p>We have articles on troubleshooting issues like <a href="https://blog.openresty.com/en/lua-cpu-flame-graph/?src=wb">high CPU usage</a> and
<a href="https://blog.openresty.com/en/how-or-alloc-mem/">large memory usage</a> on <a href="https://blog.openresty.com/">our official blog site</a>.
<p><em>Thank you for flying <a href="https://openresty.org/">OpenResty</a>.</em></p>
</body>
</html>

2.5 Tengine

标题:Welcome to tengine!

截图:

Untitled

响应内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Welcome to tengine!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to tengine!</h1>
<p>If you see this page, the tengine web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://tengine.taobao.org/">tengine.taobao.org</a>.</p>

<p><em>Thank you for using tengine.</em></p>
</body>
</html>

2.6 Welcome to Centos (不知道是什么应用)

标题:Welcome to Centos

截图:

Untitled

响应内容:

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title>Welcome to CentOS</title>
  <style rel="stylesheet" type="text/css"> 

	html {
	background-image:url(img/html-background.png);
	background-color: white;
	font-family: "DejaVu Sans", "Liberation Sans", sans-serif;
	font-size: 0.85em;
	line-height: 1.25em;
	margin: 0 4% 0 4%;
	}

	body {
	border: 10px solid #fff;
	margin:0;
	padding:0;
	background: #fff;
	}

	/* Links */

	a:link { border-bottom: 1px dotted #ccc; text-decoration: none; color: #204d92; }
	a:hover { border-bottom:1px dotted #ccc; text-decoration: underline; color: green; }
	a:active {  border-bottom:1px dotted #ccc; text-decoration: underline; color: #204d92; }
	a:visited { border-bottom:1px dotted #ccc; text-decoration: none; color: #204d92; }
	a:visited:hover { border-bottom:1px dotted #ccc; text-decoration: underline; color: green; }
 
	.logo a:link,
	.logo a:hover,
	.logo a:visited { border-bottom: none; }

	.mainlinks a:link { border-bottom: 1px dotted #ddd; text-decoration: none; color: #eee; }
	.mainlinks a:hover { border-bottom:1px dotted #ddd; text-decoration: underline; color: white; }
	.mainlinks a:active { border-bottom:1px dotted #ddd; text-decoration: underline; color: white; }
	.mainlinks a:visited { border-bottom:1px dotted #ddd; text-decoration: none; color: white; }
	.mainlinks a:visited:hover { border-bottom:1px dotted #ddd; text-decoration: underline; color: white; }

	/* User interface styles */

	#header {
	margin:0;
	padding: 0.5em;
	background: #204D8C url(img/header-background.png);
	text-align: left;
	}

	.logo {
	padding: 0;
	/* For text only logo */
	font-size: 1.4em;
	line-height: 1em;
	font-weight: bold;
	}

	.logo img {
	vertical-align: middle;
	padding-right: 1em;
	}

	.logo a {
	color: #fff;
	text-decoration: none;
	}

	p {
	line-height:1.5em;
	}

	h1 { 
		margin-bottom: 0;
		line-height: 1.9em; }
	h2 { 
		margin-top: 0;
		line-height: 1.7em; }

	#content {
	clear:both;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	border-bottom: 5px solid #eee;
	}

    .mainlinks {
        float: right;
        margin-top: 0.5em;
        text-align: right;
    }

    ul.mainlinks > li {
    border-right: 1px dotted #ddd;
    padding-right: 10px;
    padding-left: 10px;
    display: inline;
    list-style: none;
    }

    ul.mainlinks > li.last,
    ul.mainlinks > li.first {
    border-right: none;
    }

  </style>

</head>

<body>

<div id="header">

    <ul class="mainlinks">
        <li> <a href="http://www.centos.org/">Home</a> </li>
        <li> <a href="http://wiki.centos.org/">Wiki</a> </li>
        <li> <a href="http://wiki.centos.org/GettingHelp/ListInfo">Mailing Lists</a></li>
        <li> <a href="http://www.centos.org/download/mirrors/">Mirror List</a></li>
        <li> <a href="http://wiki.centos.org/irc">IRC</a></li>
        <li> <a href="https://www.centos.org/forums/">Forums</a></li>
        <li> <a href="http://bugs.centos.org/">Bugs</a> </li>
        <li class="last"> <a href="http://wiki.centos.org/Donate">Donate</a></li>
    </ul>

	<div class="logo">
		<a href="http://www.centos.org/"><img src="img/centos-logo.png" border="0"></a>
	</div>

</div>

<div id="content">

	<h1>Welcome to CentOS</h1>

	<h2>The Community ENTerprise Operating System</h2>

	<p><a href="http://www.centos.org/">CentOS</a> is an Enterprise-class Linux Distribution derived from sources freely provided
to the public by Red Hat, Inc. for Red Hat Enterprise Linux.  CentOS conforms fully with the upstream vendors
redistribution policy and aims to be functionally compatible. (CentOS mainly changes packages to remove upstream vendor
branding and artwork.)</p>

	<p>CentOS is developed by a small but growing team of core
developers.&nbsp; In turn the core developers are supported by an active user community
including system administrators, network administrators, enterprise users, managers, core Linux contributors and Linux enthusiasts from around the world.</p>

	<p>CentOS has numerous advantages including: an active and growing user community, quickly rebuilt, tested, and QA'ed errata packages, an extensive <a href="http://www.centos.org/download/mirrors/">mirror network</a>, developers who are contactable and responsive, Special Interest Groups (<a href="http://wiki.centos.org/SpecialInterestGroup/">SIGs</a>) to add functionality to the core CentOS distribution, and multiple community support avenues including a <a href="http://wiki.centos.org/">wiki</a>, <a
href="http://wiki.centos.org/irc">IRC Chat</a>, <a href="http://wiki.centos.org/GettingHelp/ListInfo">Email Lists</a>, <a href="https://www.centos.org/forums/">Forums</a>, <a href="http://bugs.centos.org/">Bugs Database</a>, and an <a
href="http://wiki.centos.org/FAQ/">FAQ</a>.</p>

	</div>

</div>


</body>
</html>

3. 列目录类的默认页面

3.1 Directory: /(Jetty列目录)

标题:Directory: /

截图:

Untitled

响应内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="jetty-dir.css" rel="stylesheet" />
<title>Directory: /</title>
</head>
<body>
<h1 class="title">Directory: /</h1>
<table class="listing">
<thead>
<tr><th class="name"><a href="?C=N&O=D">Name&nbsp; &#8679;</a></th><th class="lastmodified"><a href="?C=M&O=A">Last Modified</a></th><th class="size"><a href="?C=S&O=A">Size</a></th></tr>
</thead>
<tbody>
<tr><td class="name"><a href="/1ceb8a6f-ba74-4bb4-b591-xxxxxx.json">1ceb8a6f-ba74-4bb4-b591-xxxxxx.json&nbsp;</a></td><td class="lastmodified">2023-1-13 17:13:01&nbsp;</td><td class="size">5,896 bytes&nbsp;</td></tr>
<tr><td class="name"><a href="/22db316e-828b-xxxxxx.json">22db316e-828b-xxxxxx.json&nbsp;</a></td><td class="lastmodified">2023-1-13 17:13:01&nbsp;</td><td class="size">22,597 bytes&nbsp;</td></tr>
<tr><td class="name"><a href="/3fb430a5-d613-495e-85df-ce4495df6b54-result.json">3fb430a5-d613-495e-85df-ce4495df6b54-result.json&nbsp;</a></td><td class="lastmodified">2023-1-13 17:13:01&nbsp;</td><td class="size">24,969 bytes&nbsp;</td></tr>
<tr><td class="name"><a href="/a6a615a4-eedd-490e-8c99-3c63e6bb83fa-container.json">a6a615a4-eedd-490e-8c99-3c63e6bb83fa-container.json&nbsp;</a></td><td class="lastmodified">2023-1-13 17:13:01&nbsp;</td><td class="size">251 bytes&nbsp;</td></tr>
<tr><td class="name"><a href="/xxxxx/">xxxxx/&nbsp;</a></td><td class="lastmodified">2023-1-13 13:50:53&nbsp;</td><td class="size">0 bytes&nbsp;</td></tr>
<tr><td class="name"><a href="/xxx/">xxx/&nbsp;</a></td><td class="lastmodified">2023-3-8 9:37:21&nbsp;</td><td class="size">0 bytes&nbsp;</td></tr>
<tr><td class="name"><a href="/xxxx/">xxxx/&nbsp;</a></td><td class="lastmodified">2023-5-12 0:03:58&nbsp;</td><td class="size">4,096 bytes&nbsp;</td></tr>
</tbody>
</table>
</body></html>

3.2 Index of /

标题:Index of /

截图:

Untitled

响应内容:

1
2
3
4
5
6
7
<html>
<head><title>Index of /</title></head>
<body>
<h1>Index of /</h1><hr><pre><a href="../">../</a>
<a href="WW_verify_eACWaITSdWOm0M5i.txt">WW_verify_eACWaITSdWOm0M5i.txt</a>                     13-May-2022 11:33                  16
</pre><hr></body>
</html>

3.3 Directory Listing For /(Tomcat列目录)

标题:Directory Listing For /

截图:

Untitled

响应内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<title>Directory Listing For /</title>
<STYLE><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></STYLE> </head>
<body><h1>Directory Listing For /</h1><HR size="1" noshade="noshade"><table width="100%" cellspacing="0" cellpadding="5" align="center">
<tr>
<td align="left"><font size="+1"><strong>Filename</strong></font></td>
<td align="center"><font size="+1"><strong>Size</strong></font></td>
<td align="right"><font size="+1"><strong>Last Modified</strong></font></td>
</tr><tr>
<td align="left">&nbsp;&nbsp;
<a href="/crossdomain.xml"><tt>crossdomain.xml</tt></a></td>
<td align="right"><tt>0.2 kb</tt></td>
<td align="right"><tt>Tue, 30 Jul 2019 08:55:52 GMT</tt></td>
</tr>
</table>
<HR size="1" noshade="noshade"><h3>Apache Tomcat</h3></body>
</html>

3.4 域名 - /

标题1:xxx.com - / (中文类)

截图1:

Untitled

响应内容1:

1
2
3
<html><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>xxxxxx.com - /</title></head><body><H1>xxxxxx.com - /</H1><hr>

<pre>             2013年12月7日     9:15     &lt;目录&gt; <A HREF="/apk/">apk</A><br>             2014年5月28日    12:40     &lt;目录&gt; <A HREF="/aspnet_client/">aspnet_client</A><br>            2013年10月31日    11:22     &lt;目录&gt; <A HREF="/bin/">bin</A><br>            2013年10月30日    14:58          346 <A HREF="/crossdomain.xml">crossdomain.xml</A><br>            2013年10月30日    16:09           90 <A HREF="/generator.aspx">generator.aspx</A><br>             2022年2月16日    22:47     &lt;目录&gt; <A HREF="/log/">log</A><br>            2013年10月30日    16:09           49 <A HREF="/PrecompiledApp.config">PrecompiledApp.config</A><br>            2013年10月30日    16:09           88 <A HREF="/QrCoder.aspx">QrCoder.aspx</A><br>            2013年10月30日    16:09           87 <A HREF="/upload.aspx">upload.aspx</A><br>            2013年10月31日    11:28         1586 <A HREF="/Web.config">Web.config</A><br></pre><hr></body></html>

标题2:xxx.com - / (英文类)

截图2:

Untitled

响应内容2:

1
2
3
<html><head><title>xxxx.com - /</title></head><body><H1>xxxxx.com - /</H1><hr>

<pre>  2022/9/9     5:54        &lt;dir&gt; <A HREF="/aspnet_client/">aspnet_client</A><br> 2022/1/21    11:44        &lt;dir&gt; <A HREF="/bin/">bin</A><br> 2019/7/25     7:34          107 <A HREF="/HOSPWS.asmx">HOSPWS.asmx</A><br> 2023/3/29    16:48        &lt;dir&gt; <A HREF="/log/">log</A><br> 2022/1/21    11:44        &lt;dir&gt; <A HREF="/SqlXml/">SqlXml</A><br> 2022/1/21    11:46         7384 <A HREF="/web.config">web.config</A><br> 2022/1/21    11:44        &lt;dir&gt; <A HREF="/Xml/">Xml</A><br></pre><hr></body></html>

4. 部分框架后可能部署的业务系统

4.1 SpringBoot

4.1.1 Druid

业务路径:/druid/index.html
标题:Druid Stat Index
截图:

响应内容:
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
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html>
	<head>
		<title class="lang" langKey="xxxx">Druid Stat Index</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
		<link href='css/bootstrap.min.css' rel="stylesheet" />
		<link href="css/style.css" type="text/css" rel="stylesheet"/>
    	<script type="text/javascript" src="js/jquery.min.js"></script>
    	<script src="js/lang.js" type="text/javascript" charset="utf8"></script>
		<script src="js/common.js" type="text/javascript" charset="utf8"></script>
	</head>
	<body>
		
    	<div class="container">
          				<h3>
          					Stat Index
          					<a href="basic.json" target="_blank" class="lang" langKey="ViewJSONAPI">View JSON API</a>
          				</h3>
						<table id="dataTable" style="background-color: #fff" class="table table-bordered responsive-utilities">
							<tr >
								<td valign="top" width="100" class="td_lable lang"  langKey="Version">
									Version
								</td>
								<td id="DruidVersion" width="95%"></td>
							</tr>
							<tr >
								<td valign="top" class="td_lable lang" langKey="Drivers"> Drivers </td>
								<td id="DruidDrivers"> </td>
							</tr>
							<tr >
								<td valign="top" class="td_lable lang" langKey="ResetEnable"> ResetEnable </td>
								<td id="ResetEnable"></td>
							</tr>
							<tr >
								<td valign="top" class="td_lable lang" langKey="ResetCount"> ResetCount </td>
								<td id="ResetCount"></td>
							</tr>
							<tr >
								<td valign="top" class="td_lable lang" langKey="JavaVersion"> JavaVersion </td>
								<td id="JavaVersion"></td>
							</tr>
							<tr >
								<td valign="top" class="td_lable lang" langKey="JavaVMName"> JavaVMName </td>
								<td id="JavaVMName"></td>
							</tr>
							<tr>
								<td valign="top" class="td_lable lang" langKey="JavaClassPath"> JavaClassPath </td>
								<td id="JavaClassPath"></td>
							</tr>
							<tr >
								<td valign="top" class="td_lable lang" langKey="StartTime"> StartTime </td>
								<td id="StartTime"></td>
							</tr>
						</table>
          			</div>
		<script type="text/javascript">
			$.namespace("druid.index");
			druid.index = function () {  
				return  {
					init : function() {
						druid.common.buildHead(0);
						this.ajaxRequestForBasicInfo();
					},
					
					ajaxRequestForBasicInfo : function() {
						$.ajax({
							type: 'POST',
							url: "basic.json",
							success: function(data) {
								$("#DruidVersion").text(data.Content.Version)
								var driversList = data.Content.Drivers;
								if (driversList) {
									var driverHtml = '';
									for ( var i = 0; i < driversList.length; i++) {
										var driver = driversList[i];
										driverHtml += driver + '<br/>';
									}
									$("#DruidDrivers").html(driverHtml);
								}
								$("#ResetEnable").text(data.Content.ResetEnable)
								$("#ResetCount").text(data.Content.ResetCount)
								$("#JavaVersion").text(data.Content.JavaVersion)
								$("#JavaVMName").text(data.Content.JavaVMName)
								$("#JavaClassPath").html(data.Content.JavaClassPath.split(/;|:/).join("<br/>"))
								$("#StartTime").text(data.Content.StartTime)
								
								druid.lang.trigger();
							},
							dataType: "json"
						});
					}
				}
			}();
			
			$(document).ready(function() {
				druid.index.init();
			});
		</script>
	</body>
</html>

5. 报错页面

5.1 ThinkPHP

标题1:系统发生错误

截图1:

响应内容1:

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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>系统发生错误</title>
<style type="text/css">
*{ padding: 0; margin: 0; }
html{ overflow-y: scroll; }
body{ background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }
img{ border: 0; }
.error{ padding: 24px 48px; }
.face{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; }
h1{ font-size: 32px; line-height: 48px; }
.error .content{ padding-top: 10px}
.error .info{ margin-bottom: 12px; }
.error .info .title{ margin-bottom: 3px; }
.error .info .title h3{ color: #000; font-weight: 700; font-size: 16px; }
.error .info .text{ line-height: 24px; }
.copyright{ padding: 12px 48px; color: #999; }
.copyright a{ color: #000; text-decoration: none; }
</style>
</head>
<body>
<div class="error">
<p class="face">:(</p>
<h1>系统不支持:mysqli</h1>
<div class="content">
	<div class="info">
		<div class="title">
			<h3>错误位置</h3>
		</div>
		<div class="text">
			<p>FILE: /data/website/ldicptemp/ThinkPHP/Library/Think/Db/Driver/Mysqli.class.php &#12288;LINE: 26</p>
		</div>
	</div>
	<div class="info">
		<div class="title">
			<h3>TRACE</h3>
		</div>
		<div class="text">
			<p>#0 /data/website/ldicptemp/ThinkPHP/Library/Think/Db/Driver/Mysqli.class.php(26): E('\xE7\xB3\xBB\xE7\xBB\x9F\xE4\xB8\x8D\xE6\x94\xAF\xE6\x8C\x81...')<br />
#1 /data/website/ldicptemp/ThinkPHP/Library/Think/Db.class.php(90): Think\Db\Driver\Mysqli->__construct(Array)<br />
#2 /data/website/ldicptemp/ThinkPHP/Library/Think/Db.class.php(65): Think\Db->factory('')<br />
#3 /data/website/ldicptemp/ThinkPHP/Library/Think/Model.class.php(1287): Think\Db::getInstance('')<br />
#4 /data/website/ldicptemp/ThinkPHP/Library/Think/Model.class.php(95): Think\Model->db(0, '', true)<br />
#5 /data/website/ldicptemp/ThinkPHP/Common/functions.php(554): Think\Model->__construct('users', '', '')<br />
#6 /data/website/ldicptemp/Application/Home/Controller/IndexController.class.php(8): M('users')<br />
#7 [internal function]: Home\Controller\IndexController->index()<br />
#8 /data/website/ldicptemp/ThinkPHP/Library/Think/App.class.php(155): ReflectionMethod->invoke(Object(Home\Controller\IndexController))<br />
#9 /data/website/ldicptemp/ThinkPHP/Library/Think/App.class.php(193): Think\App::exec()<br />
#10 /data/website/ldicptemp/ThinkPHP/Library/Think/Think.class.php(120): Think\App::run()<br />
#11 /data/website/ldicptemp/ThinkPHP/ThinkPHP.php(96): Think\Think::start()<br />
#12 /data/website/ldicptemp/index.php(22): require('/data/website/l...')<br />
#13 {main}</p>
		</div>
	</div>
</div>
</div>
<div class="copyright">
<p><a title="官方网站" href="http://www.thinkphp.cn">ThinkPHP</a><sup>3.2.2</sup> { Fast & Simple OOP PHP Framework } -- [ WE CAN DO IT JUST THINK ]</p>
</div>
</body>
</html>

5.2 宝塔

标题1:安全入口校验失败

截图1:

响应内容1:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>安全入口校验失败</title>
</head>
<body>
    <h1>请使用正确的入口登录面板</h1>
    <p><b>错误原因:</b>当前新安装的已经开启了安全入口登录,新装机器都会随机一个8位字符的安全入口名称,亦可以在面板设置处修改,如您没记录或不记得了,可以使用以下方式解决</p>
    <p><b>解决方法:</b>在SSH终端输入以下一种命令来解决</p>
    <p>1.查看面板入口:/etc/init.d/bt default</p>
    <p>2.关闭安全入口:rm -f /www/server/panel/data/admin_path.pl</p>
    <p style="color:red;">注意:【关闭安全入口】将使您的面板登录地址被直接暴露在互联网上,非常危险,请谨慎操作</p>
</body>
</html>

6. 防火墙拦截页面

6.1 阿里云

标题1:阿里云 Web应用防火墙

截图1:

响应内容1:

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>阿里云 Web应用防火墙</title>
  <style rel="stylesheet">
    body {
      font-size: 14px;
      color: #333;
      font-weight: 400;
      padding: 100px 0px 0px;
    }

    .wrapper {
      width: 850px;
      margin: 0 auto;
    }

    .top-wrapper {
      padding: 35px 30px 12px;
    }

    .top-content-right {
      padding-top: 20px;
    }

    .select-content {
      display: flex;
      justify-content: end;

    }

    #selectLang {
      color: rgb(250 100 0) !important;
      border: 1px solid rgb(250 100 0);
    }

    .bottom-wrapper {
      padding: 0 20px 0 40px;
    }

    .bottom-content-one {
      margin: 30px 0px;
    }

    .bottom-content-two {
      border-top: 1px solid #ededed;
      padding-top: 30px;
    }

    .theme-color {
      color: #ff6a00;
    }

    .grey-color1 {
      color: #999;
    }

    .grey-color2 {
      color: #666;
    }

    .background-color {
      background-color: #fa640008;
    }

    .font-weight {
      font-weight: 500;
    }

    .space-top8 {
      margin-top: 8px
    }

    .space-bottom16 {
      margin-bottom: 16px;
    }

    .no_derciton {
      text-decoration: none;
    }

    .flex-content {
      display: flex;
    }
  </style>
</head>

<body>
  <div class="wrapper">
    <div class="top-wrapper background-color">
      <div class="select-content">
        <select name="" id="selectLang" onchange="langChange(value)"  >
          <option value="en">English</option>
          <option value="ch">简体中文</option>
        </select>
      </div>
      <div class="flex-content">
        <div>
          <img
            src="data:image/png;base64,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"
            width="252px" height="173px">
        </div>
        <div class="top-content-right">
          <div class="font-weight" style="font-size:18px" id="produceTitle"></div>
          <div class="font-weight space-bottom16 space-top8" style="font-size:22px" id="errorCodeTitle"></div>
          <div id="errorCodeInfo"></div>
        </div>
      </div>
    </div>
    <div class="bottom-wrapper">
      <div class="bottom-content-one">
        <div class="font-weight" style="font-size:18px" id="visitRole"></div>
        <div class="grey-color2 space-top8" id="visitRoleDeal"></div>
      </div>
      <div class="bottom-content-two">
        <div class="font-weight" style="font-size:18px" id="mangerRole"></div>
        <div class="grey-color2 space-bottom16 space-top8" id="mangerRoleDeal"></div>
        <a class="theme-color no_derciton" href="https://yundun.console.aliyun.com/?p=waf#/waf/cn/dashboard/index"
          target="_blank" id="waf"></a>
      </div>
    </div>
  </div>
</body>
<script>
  var innerHtmlConfig = {
    "en": {
      "produceTitle": "Alibaba Cloud Web Application Firewall (WAF)",
      "errorCodeTitle": "The website is temporarily inaccessible...",
      "errorCodeInfo": "The protocol and port for the website are not added to Web Application Firewall.",
      "visitRole": "If you are a website visitor",
      "visitRoleDeal": "try again later after the website is added to Web Application Firewall",
      "mangerRole": "If you are a website administrator",
      "mangerRoleDeal": "log on to the Web Application Firewall console at the earliest opportunity and add the website to Web Application Firewall",
      "waf": "Web Application Firewall Console >"
    },
    "ch": {
      "produceTitle": "阿里云Web应用防火墙 (WAF)",
      "errorCodeTitle": "网站暂时无法访问...",
      "errorCodeInfo": "该域名对应的协议和端口未接入阿里云Web应用防火墙",
      "visitRole": "如果您是网站访问者",
      "visitRoleDeal": "请等待网站接入后再访问",
      "mangerRole": "如果您是网站管理员",
      "mangerRoleDeal": "请尽快登录阿里云Web应用防火墙产品控制台配置网站接入",
      "waf": "阿里云Web应用防火墙控制台 >"
    },
  }
  const lang = navigator.language || navigator.userLanguage;
  const defaultLang = {
    "zh-CN": 'ch'
  }[lang] || 'en'

  document.querySelector('#selectLang').value=defaultLang

  initHtmlText(defaultLang)
  function langChange(value) {
    initHtmlText(value)
  }
  function initHtmlText(value) {
    Object.keys(innerHtmlConfig[value]).map(item => {
      if (item === 'aliyunLogol') {
        document.querySelector(`#${item}`).setAttribute('src', innerHtmlConfig[value][item])
      }
      document.querySelector(`#${item}`).innerText = innerHtmlConfig[value][item]
    })
  }


</script>

</html>

6.2 McAfee

标题1:McAfee Web Gateway - Notification

截图1:

响应内容1:

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
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<!-- FileName: index.html
     Language: [en]
-->
<!--Head-->
<head>
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  <meta http-equiv="X-UA-Compatible" content="IE=7" />
  <title>McAfee Web Gateway - Notification</title>
  <script src="/mwg-internal/de5fs23hu73ds/files/javascript/sw.js" type="text/javascript" ></script>
  <link rel="stylesheet" href="/mwg-internal/de5fs23hu73ds/files/default/stylesheet.css" />
</head>
<!--/Head-->
<!--Body-->
<body onload="swOnLoad();">
  <table class='bodyTable'>
    <tr>
      <td class='bodyData' background='/mwg-internal/de5fs23hu73ds/files/default/img/bg_body.gif'>
<!--Logo-->
<table class='logoTable'>
  <tr>
    <td class='logoData'>
      <a href='http://www.mcafee.com'>
        <img src='/mwg-internal/de5fs23hu73ds/files/default/img/logo_mwg.png'></a>
    </td>
  </tr>
</table>
<!--/Logo-->
<!--Contents-->
<!-- FileName: handshakefailed.html
     Language: [en]
-->
<!--Title-->
<table class='titleTable' background='/mwg-internal/de5fs23hu73ds/files/default/img/bg_navbar.jpg'>
  <tr>
    <td class='titleData'>
      Handshake failed
    </td>
  </tr>
</table>
<!--/Title-->

<!--Content-->
<table class="contentTable">
  <tr>
    <td class="contentData">
      The SSL handshake could not be performed.
    </td>
  </tr>
</table>
<!--/Content-->

<!--Info-->
<table class="infoTable">
  <tr>
    <td class="infoData">
      <b>Host: </b>192.168.255.250<br />
      <b>Reason: </b>error:1408F09C:SSL routines:ssl3_get_record:http request:state 22:Application response 500 handshakefailed
    </td>
  </tr>
</table>
<!--/Info-->

<!--/Contents-->
<!--Policy-->
<table class='policyTable'>
  <tr>
    <td class='policyHeading'>
      <hr>
      Company Acceptable Use Policy
    </td>
  </tr>
  <tr>
    <td class='policyData'>
      This is an optional acceptable use disclaimer that appears on every page. You may change the wording or remove this section entirely in index.html.
    </td>
  </tr>
</table>
<!--/Policy-->
<!--Foot-->
<table class='footTable'>
  <tr>
    <td class='helpDeskData' background='/mwg-internal/de5fs23hu73ds/files/default/img/bg_navbar.jpg'>
      For assistance, please contact your system administrator.
    </td>
  </tr>
  <tr>
    <td class='footData'>
      generated <span id="time">2023-06-28 14:32:46</span> by McAfee Web Gateway
      <br />
      
    </td>
  </tr>
</table>
<!--/Foot-->
      </td>
    </tr>
  </table>
</body>
<!--/Body-->
</html>

7. 写在最后

后面有识别到新的类型会持续补充,大家如果有发现新的一些类型,很欢迎私发给我,我也会一并更新上来。

本文由作者按照 CC BY 4.0 进行授权

3.钓鱼常见套路最简单的防护方法

在线杀软比对