新增ssl_self_check目录用于ssl自检部署

This commit is contained in:
fumingwei
2020-01-06 15:08:46 +08:00
parent c84e2d8fc7
commit d5a9f79981
174 changed files with 21993 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
---
title: mixed css
layout: page
favicon: red
background: gray
---
<style>
.triggered {
display: none;
}
</style>
<div id="content">
<h1 style="font-size: 9vw;">
mixed css
</h1>
</div>
<div id="footer">
This page <span class="not-triggered">triggers</span><span class="triggered">has triggered</span> insecure CSS.
</div>
<link rel="stylesheet" href="http://{{ site.http-domain }}/resources/stylesheet.css">

View File

@@ -0,0 +1,26 @@
---
title: mixed font
layout: page
favicon: red
background: gray
---
<style>
@font-face {
font-family: Inception;
src: url(http://{{ site.http-domain }}/resources/font.ttf) format("truetype");
}
#content h1 {
font-family: Inception !important;
}
</style>
<div id="content">
<h1 style="font-size: 9vw;">
MIXED FONT
</h1>
</div>
<div id="footer">
This page triggers an insecure font using CSS.
</div>

View File

@@ -0,0 +1,17 @@
---
title: mixed form
layout: page
favicon: yellow
background: rgb(246, 207, 47)
---
<div id="content">
<h1 style="font-size: 7vw;">
mixed form
</h1>
<br><br>
<form action="http://{{ site.http-domain }}/resources/form-submitted.html" method="post">
<input type="text" id="value" placeholder="This form submits to HTTP."/>
<button type="submit">Submit</button>
</form>
</div>

View File

@@ -0,0 +1,22 @@
---
title: mixed iframe
layout: page
favicon: red
background: gray
---
<style>
iframe {
width: 20vh;
height: 10vh;
max-width: 256;
margin-top: 5vh;
}
</style>
<div id="content">
<h1 style="font-size: 7vw;">
mixed iframe
</h1>
<iframe src="http://{{ site.http-domain }}/resources/iframe.html"></iframe>
</div>

View File

@@ -0,0 +1,15 @@
---
title: mixed image
layout: page
favicon: yellow
background: rgb(246, 207, 47)
---
<div id="content">
<h1 style="font-size: 7vw;">
mixed image
</h1>
<div>
<img class="mixed" src="http://{{ site.http-domain }}/resources/image.jpg" alt="HTTP image">
</div>
</div>

View File

@@ -0,0 +1,13 @@
---
title: mixed nonexistent-image
layout: page
favicon: yellow
background: rgb(246, 207, 47)
---
<div id="content">
<h1 style="font-size: 5vw;">
mixed nonexistent-image
</h1>
<img class="mixed" src="http://nonexistent.domain/resources/image.jpg" alt="mixed image on nonexistent domain">
</div>

View File

@@ -0,0 +1,17 @@
---
title: mixed password
layout: page
favicon: yellow
background: rgb(246, 207, 47)
---
<div id="content">
<h1 style="font-size: 7vw;">
mixed password
</h1>
<br><br>
<form action="http://{{ site.http-domain }}/resources/form-submitted.html" method="post">
<input type="password" id="value" placeholder="This form submits to HTTP." value="password"/>
<button type="submit">Submit</button>
</form>
</div>

View File

@@ -0,0 +1,18 @@
---
title: mixed script
layout: page
favicon: red
background: gray
---
<div id="content">
<h1 style="font-size: 9vw;">
mixed script
</h1>
</div>
<div id="footer">
This page triggers active mixed content<br>(a script from an insecure URL).
</div>
<script src="http://{{ site.http-domain }}/resources/script.js"></script>