summaryrefslogtreecommitdiff
path: root/gen-cipher-test
blob: 73593b06283e3c9059e8f35a59bc1cbf5e7369b7 (plain)
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
#!/bin/bash
# Generate nginx config and HTML for testing ciphers
# Author: Peter Wu <lekensteyn@gmail.com>

#domain=ciphertest.lekensteyn.nl
# ssl-enabled ip:port, may occur multiple times space-separated
# PORT will be replaced for a number that increments for every test
#listen=$domain:PORT
domain=${1:-local.al.lekensteyn.nl}
address=localhost
listen="$address:4433 $address:PORT "
portbase=4433

pkdir=certs/
rsa_prv=server.pem
rsa_pub=server.crt
dsa_prv=dsa.pem
dsa_pub=dsa.crt
#ecc_prv=ec.pem
#ecc_pub=ec.crt
ecc_prv=secp384r1.pem
ecc_pub=secp384r1.crt
dh_params=dhparams.pem

root=/srv/http/ciphertest
html="$root/index.html"

get_ciphers() {
    # output: index (n1 << 8 | n2) name version auth line
    openssl ciphers -V | sort -n |
        awk -F'[ ,]+' '{ print ++i, $2, $3, $5, $6, substr($8, 4), $0 }'
}
htmlescape() {
    sed 's/&/&amp;/g;s/</\&lt/g;s/>/\&gt;/g'
}

#if [ ! -s "$html" ]; then
if true; then # always generate file
cat > "$html" <<EOF
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>Cipher suite test</title>
<style>
iframe {
    width: 800px;
    height: 1.5em;
    display: block;
}
label {
    font-family: monospace;
}
#openssl-version {
    white-space: pre-line;
    font-family: monospace;
}
.cipher-unknown {
    background-color: #ccc;
}
.cipher-ok {
    background-color: lightgreen;
}
.cipher-nok {
    background-color: pink;
}
#hide-unknown:checked ~ #opts .cipher-unknown,
#hide-nok:checked ~ #opts .cipher-nok,
#hide-ok:checked ~ #opts .cipher-ok,
#hide-checks:checked ~ #opts input[type=checkbox],
#hide-frames:checked ~ #opts iframe {
    display: none;
}
</style>
</head>
<body>

<div id="openssl-version">
$(openssl version -a | htmlescape)
</div>

<form id="frm" action="javascript:">
    <label><input type="checkbox" id="toggle-all">Toggle all</label>

    <button id="delayed_executor">Check boxes (delayed)</button>

    <input type="checkbox" id="hide-frames">
    <label for="hide-frames">Hide frames</label>

    <input type="checkbox" id="hide-checks">
    <label for="hide-checks">Hide checkboxes</label>

    <br>
    Hide cipher suites:

    <input type="checkbox" id="hide-unknown">
    <label for="hide-unknown">Hide unknown</label>

    <input type="checkbox" id="hide-nok">
    <label for="hide-nok">Hide nok</label>

    <input type="checkbox" id="hide-ok">
    <label for="hide-ok">Hide ok</label>

    <fieldset id="opts">
    </fieldset>
</form>

<script>
"use strict";
var ciphers = [
$(get_ciphers | while read i n1 n2 name version auth line; do
    printf '{number:%s, name:"%s", version:"%s", auth:"%s", port:%i},\n' \
        $((n1*0x100+n2)) "$name" "$version" "$auth" $((portbase + i))
done)
];
var opts = document.getElementById("opts");
var toggler = document.getElementById("toggle-all");
var frame_path = "/";

document.domain = "$domain";

function frame_handler(ev) {
    var ifr = document.getElementById("ifr-" + this.value);
    var port = this.dataset.port;
    var url = "//" + this.value + ".$domain:" + port + frame_path;
    ifr.src = this.checked ? url : "";
}

function toggle_handler(ev) {
    var opts = document.getElementsByClassName("cipher-choices");
    for (var i = 0; i < opts.length; i++) {
        if (this.checked != opts[i].checked)
            opts[i].click();
    }
}

(function (trigger) {
    var delayer = null;
    var current_index;
    var opts = document.getElementsByClassName("cipher-choices");

    function stop_delayer() {
        clearInterval(delayer);
        delayer = null;
    }

    function delayed_opener() {
        if (current_index < opts.length) {
            if (!opts[current_index].checked)
                opts[current_index].click();

            current_index++;
        } else {
            stop_delayer();
            toggler.checked = true;
        }
    }

    function start_timer(interval) {
        if (delayer) {
            console.log("Timer already active");
            return;
        }

        current_index = 0;
        delayer = setInterval(delayed_opener, interval);
    }

    trigger.addEventListener("click", function (ev) {
        var interval = parseInt(prompt("Delay (msec). 0 is stop", 300));
        if (isNaN(interval) || interval < 0) {
            console.log("Invalid interval - ignoring");
            return;
        }

        if (interval > 0)
            start_timer(interval);
        else
            stop_delayer();
    });
})(document.getElementById("delayed_executor"));

function get_container_for_frame(ifr) {
    return document.getElementById("ctr-" + ifr.id.replace("ifr-", ""));
}

function frame_loaded() {
    var ctr = get_container_for_frame(this);
    var cipher = ctr.dataset.cipher.toLowerCase();
    var cipherFound = null;

    if (!this.src) {
        return;
    }

    console.log("Loaded: " + this.src);
    try {
        var line = this.contentDocument.body.firstChild.textContent;
        cipherFound = line.toLowerCase().indexOf(cipher) != -1;
        console.log("looking for '" + cipher + "' in: " + line);
    } catch (ex) {
        console.log(ex);
    }

    if (cipherFound === null) {
        ctr.className = "cipher-unknown";
    } else if (cipherFound) {
        ctr.className = "cipher-ok";
    } else {
        ctr.className = "cipher-nok";
    }
}
function frame_error() {
    var ctr = get_container_for_frame(this);

    console.log("Error while loading: " + this.src);
    ctr.className = "cipher-nok";
}

toggler.addEventListener("change", toggle_handler);

ciphers.forEach(function (cipher, i) {
    var container = document.createElement("div");
    container.id = "ctr-" + cipher.name;
    container.dataset.cipher = cipher.name;
    container.className = "cipher-unknown";

    var hexid = "0x" + ("000" + cipher.number.toString(16)).substr(-4).toUpperCase();

    var lbl = document.createElement("label");
    lbl.id = "lbl-" + cipher.name;
    lbl.textContent = hexid + " " + cipher.name + " (" + cipher.version +
        ", Au=" + cipher.auth + ") #" + i;

    var opt = document.createElement("input");
    opt.type = "checkbox";
    opt.value = cipher.name;
    opt.dataset.port = cipher.port;
    opt.className = "cipher-choices";
    opt.addEventListener("change", frame_handler);
    lbl.insertBefore(opt, lbl.firstChild);

    var ifr = document.createElement("iframe");
    ifr.id = "ifr-" + cipher.name;
    ifr.onload = frame_loaded;
    ifr.onerror = frame_error;

    container.appendChild(ifr);
    container.appendChild(lbl);

    opts.appendChild(container);
});
</script>

</body>
</html>
EOF
fi

# Begin nginx config generator

get_common() {
    local auth=$1
    local port=${2:-$portbase}
    local crtfile keyfile dhpfile

    case $auth in
    RSA)
        crtfile=$rsa_pub
        keyfile=$rsa_prv
        ;;
    ECDH)
        # Note: NSS does not support all cipher suites from OpenSSL, but OpenSSL
        # cannot work with ECDH-RSA using th below certificates.
        crtfile=$ecc_pub
        keyfile=$ecc_prv
        #dhpfile=$dh_params
        ;;
    DSS)
        crtfile=$dsa_pub
        keyfile=$dsa_prv
        ;;
    ECDSA)
        crtfile=$ecc_pub
        keyfile=$ecc_prv
        #dhpfile=$dh_params
        ;;
    PSK)
        #echo "Unknown Au=$auth - using RSA" >&2
        crtfile=$rsa_pub
        keyfile=$rsa_prv
        ;;
    *)
        echo "Unknown Au=$auth - using RSA" >&2
        crtfile=$rsa_pub
        keyfile=$rsa_prv
        ;;
    esac

    local listens l
    listens=$(echo ${listen//PORT/$port} | tr ' ' '\n' | sort -u | tr '\n' ' ')
    for l in $listens; do
        echo "    listen $l ssl;"
    done

cat <<EOF
    ssl_certificate $pkdir$crtfile;
    ssl_certificate_key $pkdir$keyfile;
EOF
    [ -z "$dhpfile" ] || cat <<EOF
    ssl_dhparam $pkdir$dhpfile;
EOF
cat <<EOF
    ssl_prefer_server_ciphers on;
    expires epoch;
    keepalive_timeout 0s;
    root $root;
EOF
}
cat <<EOF
server {
$(get_common RSA)
    default_type "text/plain";
    access_log off;
    return 200 "Invalid host - is SNI enabled?";
}

server {
$(get_common RSA)
    server_name $domain www.$domain;
}

EOF

# WARNING: BROKEN CONFIG for server blocks sharing same listen address and port.
# If SNI is not available, the first server block will be loaded for
# certificates and ciphers. Once the host (via Host header) is known, it will
# return the "OK" response.

get_ciphers |
while read i n1 n2 name version auth line; do
    num=$(($n1*0x100 + $n2)) # 49169
    hex=$n1${n2:2} # 0xC011

    cat <<EOF
server { # cipher suite #$i
$(get_common $auth $((portbase+i)))
    server_name ${hex,,}.$domain $num.$domain ${name,,}.$domain;
    ssl_ciphers -ALL:$name;
    #ssl_protocols $version;
    default_type "text/html";
    access_log off;
    location = / {
        return 200 "$line<script>document.domain='$domain'</script>";
    }
}

EOF
done

cat <<EOF
# vim: set et sw=4 ts=4:
EOF