mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Merge pull request #217 from lewellyn/patch-1
Default to TLS connections only
This commit is contained in:
commit
cc8fff4d81
@ -2577,6 +2577,9 @@ void SiLoadInitialConfiguration(SERVER *s)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Default to TLS only; mitigates CVE-2016-0800
|
||||||
|
s->Cedar->AcceptOnlyTls = true;
|
||||||
|
|
||||||
// Auto saving interval related
|
// Auto saving interval related
|
||||||
s->AutoSaveConfigSpan = SERVER_FILE_SAVE_INTERVAL_DEFAULT;
|
s->AutoSaveConfigSpan = SERVER_FILE_SAVE_INTERVAL_DEFAULT;
|
||||||
s->BackupConfigOnlyWhenModified = true;
|
s->BackupConfigOnlyWhenModified = true;
|
||||||
@ -2762,6 +2765,9 @@ void SiInitConfiguration(SERVER *s)
|
|||||||
s->AutoSaveConfigSpan = SERVER_FILE_SAVE_INTERVAL_DEFAULT;
|
s->AutoSaveConfigSpan = SERVER_FILE_SAVE_INTERVAL_DEFAULT;
|
||||||
s->BackupConfigOnlyWhenModified = true;
|
s->BackupConfigOnlyWhenModified = true;
|
||||||
|
|
||||||
|
// Default to TLS only; mitigates CVE-2016-0800
|
||||||
|
s->Cedar->AcceptOnlyTls = true;
|
||||||
|
|
||||||
// IPsec server
|
// IPsec server
|
||||||
if (s->Cedar->Bridge == false)
|
if (s->Cedar->Bridge == false)
|
||||||
{
|
{
|
||||||
@ -6156,7 +6162,14 @@ void SiLoadServerCfg(SERVER *s, FOLDER *f)
|
|||||||
SetGlobalServerFlag(GSF_DISABLE_SESSION_RECONNECT, CfgGetBool(f, "DisableSessionReconnect"));
|
SetGlobalServerFlag(GSF_DISABLE_SESSION_RECONNECT, CfgGetBool(f, "DisableSessionReconnect"));
|
||||||
|
|
||||||
// AcceptOnlyTls
|
// AcceptOnlyTls
|
||||||
c->AcceptOnlyTls = CfgGetBool(f, "AcceptOnlyTls");
|
if (CfgIsItem(f, "AcceptOnlyTls"))
|
||||||
|
{
|
||||||
|
c->AcceptOnlyTls = CfgGetBool(f, "AcceptOnlyTls");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
c->AcceptOnlyTls = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Unlock(c->lock);
|
Unlock(c->lock);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user