This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* History: | |
* v1.0 - (Rob Stradling) Original version. | |
* v1.1 - (Tim Hudson) Use SSL_get_ssl_method() instead of ssl3_write_bytes(). | |
* | |
* gcc -ansi -pedantic -o heartbleed heartbleed.c -lssl -lcrypto | |
*/ | |
#include <stdio.h> | |
#include "openssl/rand.h" | |
#include "openssl/ssl.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PUBLIC KEY----- | |
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEOfifIGLUV1Voou9JLfA5LZreRLSU | |
MOCeeic8q3Dw0fpRkGMWV0Gtq20fgHQweQJeLVmEByQj9p81uIW4QkWkTw== | |
-----END PUBLIC KEY----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From: Symantec Alert Notification [mailto:[email protected]] | |
Sent: 21 May 2016 | |
Subject: Urgent! Your Immediate Response Is Required | |
Dear Partner, | |
Your immediate response is required to avoid triggering "Untrusted" | |
warnings from Chrome for your customers' websites. | |
We would like to inform you about a new requirement in Google Chrome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Entry ID | Entry Timestamp (UTC) | Not Before (UTC) | Not Before (CST) | |
---|---|---|---|---|
109153 | 2016-09-02 04:50:53.767 | 2015-12-20 12:02:09 | 2015-12-20 18:02:09+00 | |
109154 | 2016-09-02 04:50:54.079 | 2015-12-31 09:42:24 | 2015-12-31 15:42:24+00 | |
109155 | 2016-09-02 04:50:54.858 | 2015-12-31 10:02:07 | 2015-12-31 16:02:07+00 | |
109156 | 2016-09-02 04:50:55.065 | 2015-12-31 10:29:36 | 2015-12-31 16:29:36+00 | |
109157 | 2016-09-02 04:50:55.784 | 2015-12-31 10:10:11 | 2015-12-31 16:10:11+00 | |
109158 | 2016-09-02 04:50:56.062 | 2015-12-31 10:21:42 | 2015-12-31 16:21:42+00 | |
109159 | 2016-09-02 04:50:56.264 | 2015-12-31 10:26:07 | 2015-12-31 16:26:07+00 | |
109160 | 2016-09-02 04:50:56.467 | 2015-12-31 10:15:16 | 2015-12-31 16:15:16+00 | |
109161 | 2016-09-02 04:50:56.775 | 2015-12-20 08:07:49 | 2015-12-20 14:07:49+00 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
00002-mitherz.hopto.org | |
0001.ca | |
00076.accountant | |
00078.accountant | |
000casino.com | |
0010.ca | |
001-cloud.com | |
0026.cc | |
0049241.com | |
0049241.net |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo -n "{\"chain\":[\"" | |
INPUT_FILE=`mktemp` | |
echo $1 | sed "s/^/openssl base64 -d -in /g" | sed "s/$/ | base64 -w0/g" > $INPUT_FILE | |
chmod 755 $INPUT_FILE | |
$INPUT_FILE | |
rm $INPUT_FILE | |
echo "\"]}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* roca.c - ROCA (CVE-2017-15361) fingerprint checker. | |
* Written by Rob Stradling (based on https://github.com/crocs-muni/roca/blob/master/roca/detect.py) | |
* Copyright (C) 2017-2018 Sectigo Limited | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chrome_ev: | |
gcc -o chrome_ev chrome_ev.cc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AC Camerfirma, S.A. | |
Actalis | |
ADACOM S.A. | |
Agencia Notarial de Certificación (ANCERT) | |
Amazon Trust Services | |
AOL | |
Apple Inc. | |
Asseco Data Systems S.A. (previously Unizeto Certum) | |
Athens Exchange S.A. (Athex) | |
Atos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH mozilla_server_cas AS ( | |
SELECT DISTINCT ctp.CA_ID | |
FROM ca_trust_purpose ctp | |
WHERE ctp.TRUST_CONTEXT_ID = 5 /* Mozilla */ | |
AND ctp.TRUST_PURPOSE_ID = 1 /* Server Authentication */ | |
) | |
SELECT c.ID, | |
coalesce(cc.CA_OWNER, cc.INCLUDED_CERTIFICATE_OWNER) as CA_OWNER, | |
CASE WHEN mo.CERTIFICATE_ID IS NOT NULL THEN 'Revoked' ELSE 'Unrevoked' END as ONECRL_STATUS, | |
x509_signatureHashAlgorithm(c.CERTIFICATE) as SIG_HASH_ALG, |
OlderNewer