1
0
의 미러 https://github.com/therootcompany/greenlock.js.git synced 2024-11-16 17:29:00 +00:00

Compare commits

...

2 커밋

작성자 SHA1 메시지 날짜
a612f4f98b chimney 2018-11-05 01:04:26 -07:00
2abdfcc665 v2.4.8: only do fronting checks on TLS sockets 2018-11-05 00:39:10 -07:00
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -557,7 +557,8 @@ Greenlock.create = function (gl) {
req.headers.host = host.join(':');
}
if (!gl.__sni_allow_domain_fronting) {
// Note: This sanitize function is also called on plain sockets, which don't need Domain Fronting checks
if (req.socket.encrypted && !gl.__sni_allow_domain_fronting) {
if (req.socket && 'string' === typeof req.socket.servername) {
// Workaround for https://github.com/nodejs/node/issues/22389
if (!gl._checkServername(safehost, req.socket.servername.toLowerCase())) {

파일 보기

@ -28,7 +28,6 @@ function addCommunityMember(pkg, action, email, domains, communityMember) {
.replace(/\//g, '_').replace(/\+/g, '-').replace(/=/g, '');
}).join(',')
};
console.log(JSON.stringify(data, 2, null));
req.write(JSON.stringify(data, 2, null));
req.end();
}, 50);

파일 보기

@ -1,6 +1,6 @@
{
"name": "greenlock",
"version": "2.4.7",
"version": "2.4.8",
"description": "Let's Encrypt for node.js on npm",
"main": "index.js",
"files": [