Skip to content

Commit 18eaf58

Browse files
committed
Add expired-ocsp.badssl.com subdomain
This subdomain sends an expired stapled OCSP response, which triggers an SSL error in Firefox (and soon in Chrome as well). The OCSP response, certs/wildcard.expired-ocsp.der, was generated by running: openssl ocsp -issuer certs/wildcard.issuer.pem -cert certs/wildcard.normal.pem -url http://ocsp.comodoca.com -noverify -respout certs/wildcard.expired-ocsp.der where certs/wildcard.issuer.pem contains the certificate that issued certs/wildcard.normal.pem (i.e. the first intermediate certificate in the chain). http://ocsp.comodoca.com was taken from the OCSP field as output by `openssl x509 -in certs/wildcard.normal.pem -noout -text`. certs/wildcard.expired-ocsp.der will need to be regenerated whenever wildcard.normal.pem is reissued. Note that, at the time of this commit, certs/wildcard.expired-ocsp.der is not yet expired, but will expire on Jun 8, 2015 at 09:38:45 UTC.
1 parent a1951d7 commit 18eaf58

File tree

5 files changed

+85
-0
lines changed

5 files changed

+85
-0
lines changed

certs/cert-generator/cert-generator.sh

+24
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,30 @@ openssl x509 -req -days 730 -sha256 -CAcreateserial \
5353
-in badssl-wildcard.csr \
5454
-CA ../self-signed/badssl-intermediate.pem \
5555
-CAkey ../self-signed/badssl-intermediate.key \
56+
-set_serial 01 \
5657
-extfile badssl-wildcard.conf \
5758
-extensions req_v3_usr \
5859
-out out.pem
5960
cat out.pem ../self-signed/badssl-intermediate.pem ../self-signed/badssl-root.pem > ../self-signed/wildcard.normal.pem
6061
echo
6162

63+
echo "Generating expired OCSP response for BadSSL Default Certificate"
64+
printf "V\t\t\t01\t\t\n" > index.txt # 01 must match serial # of cert, as passed to -set_serial above
65+
echo "unique_subject = no" > index.txt.attr
66+
openssl ocsp \
67+
-index index.txt \
68+
-rsigner ../self-signed/badssl-intermediate.pem \
69+
-rkey ../self-signed/badssl-intermediate.key \
70+
-CA ../self-signed/badssl-intermediate.pem \
71+
-issuer ../self-signed/badssl-intermediate.pem \
72+
-CAfile ../self-signed/badssl-root.pem \
73+
-serial 01 \
74+
-nmin 1 \
75+
-nrequest 1 \
76+
-respout ../self-signed/wildcard.expired-ocsp.der
77+
rm index.txt index.txt.attr
78+
echo
79+
6280
echo "Generating incomplete certificate chain"
6381
cp out.pem ../self-signed/wildcard.incomplete-chain.pem
6482
rm out.pem
@@ -69,6 +87,7 @@ openssl x509 -req -days $du2016 -sha1 -CAcreateserial \
6987
-in badssl-wildcard.csr \
7088
-CA ../self-signed/badssl-intermediate.pem \
7189
-CAkey ../self-signed/badssl-intermediate.key \
90+
-set_serial 02 \
7291
-extfile badssl-wildcard.conf \
7392
-extensions req_v3_usr \
7493
-out out.pem
@@ -81,6 +100,7 @@ openssl x509 -req -days $du2017 -sha1 -CAcreateserial \
81100
-in badssl-wildcard.csr \
82101
-CA ../self-signed/badssl-intermediate.pem \
83102
-CAkey ../self-signed/badssl-intermediate.key \
103+
-set_serial 03 \
84104
-extfile badssl-wildcard.conf \
85105
-extensions req_v3_usr \
86106
-out out.pem
@@ -96,6 +116,7 @@ if [ ! -f ../self-signed/wildcard.expired.pem ]
96116
-in badssl-wildcard.csr \
97117
-CA ../self-signed/badssl-intermediate.pem \
98118
-CAkey ../self-signed/badssl-intermediate.key \
119+
-set_serial 04 \
99120
-extfile badssl-wildcard.conf \
100121
-extensions req_v3_usr \
101122
-out out.pem
@@ -110,6 +131,7 @@ echo "Self-signing BadSSL SHA-256 Certificate"
110131
openssl x509 -req -days 730 -sha256 -CAcreateserial \
111132
-in badssl-wildcard.csr \
112133
-signkey ../self-signed/badssl.com.key \
134+
-set_serial 05 \
113135
-extfile badssl-wildcard.conf \
114136
-extensions req_v3_usr \
115137
-out out.pem
@@ -136,6 +158,7 @@ openssl x509 -req -days 730 -sha256 -CAcreateserial \
136158
-in rsa512.badssl-wildcard.csr \
137159
-CA ../self-signed/badssl-intermediate.pem \
138160
-CAkey ../self-signed/badssl-intermediate.key \
161+
-set_serial 06 \
139162
-extfile badssl-wildcard.conf \
140163
-extensions req_v3_usr \
141164
-out out.pem
@@ -160,6 +183,7 @@ openssl x509 -req -days 730 -sha256 -CAcreateserial \
160183
-in rsa1024.badssl-wildcard.csr \
161184
-CA ../self-signed/badssl-intermediate.pem \
162185
-CAkey ../self-signed/badssl-intermediate.key \
186+
-set_serial 07 \
163187
-extfile badssl-wildcard.conf \
164188
-extensions req_v3_usr \
165189
-out out.pem

certs/wildcard.expired-ocsp.der

471 Bytes
Binary file not shown.

domains/misc/badssl.com/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
<a href="https://dh-small-subgroup.badssl.com/" class="more bad">dh-small-subgroup</a>
165165
<a href="https://dh-composite.badssl.com/" class="more bad">dh-composite</a>
166166
<a href="https://incomplete-chain.badssl.com/" class="more orange">incomplete-chain</a>
167+
<a href="https://expired-ocsp.badssl.com/" class="more orange">expired-ocsp</a>
167168
<a href="https://very.badssl.com/" class="more dubious">very</a>
168169
<a href="https://rc4-md5.badssl.com/" class="more neutral">rc4-md5</a>
169170
<a href="http://http.badssl.com/" class="more neutral">http</a>
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
server {
2+
listen 80;
3+
server_name expired-ocsp.badssl.com;
4+
5+
return 301 https://$server_name$request_uri;
6+
}
7+
8+
server {
9+
listen 443;
10+
server_name expired-ocsp.badssl.com;
11+
12+
include /var/www/badssl/nginx-includes/wildcard.normal.conf;
13+
include /var/www/badssl/nginx-includes/tls-defaults.conf;
14+
include /var/www/badssl/common/common.conf;
15+
16+
ssl_stapling on;
17+
ssl_stapling_file /var/www/badssl/certs/wildcard.expired-ocsp.der;
18+
19+
root /var/www/badssl/domains/misc/expired-ocsp.badssl.com;
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>expired-ocsp.badssl.com</title>
5+
<link rel="shortcut icon" href="/icons/favicon-orange.ico"/>
6+
<link rel="apple-touch-icon" href="/icon-orange.png"/>
7+
<style>
8+
html, body {
9+
background: rgb(243, 121, 46);
10+
11+
margin: 0;
12+
padding: 0;
13+
14+
height: 100%;
15+
display: -webkit-flexbox;
16+
display: -ms-flexbox;
17+
display: -webkit-flex;
18+
display: flex;
19+
-webkit-align-items: center;
20+
align-items: center;
21+
-webkit-justify-content: center;
22+
justify-content: center;
23+
}
24+
h1 {
25+
color: white;
26+
text-align: center;
27+
font-family: "Source Code Pro", Monaco, Consolas, "Courier New", monospace, Impact;
28+
font-size: 5em;
29+
font-size: 8vw;
30+
text-shadow:
31+
0 0 20px rgba(255, 255, 255, 0.5),
32+
0 0 40px rgba(255, 255, 255, 0.5),
33+
0 0 60px rgba(255, 255, 255, 0.5);
34+
}
35+
</style>
36+
</head>
37+
<body>
38+
<h1>expired-ocsp.<br>badssl.com</h1>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)