Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
194cc70f
Commit
194cc70f
authored
Mar 30, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Disable SSL2 protocol in default settings.
parent
8036bd14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
schannel.c
dlls/secur32/schannel.c
+2
-2
wine.inf.in
tools/wine.inf.in
+1
-0
No files found.
dlls/secur32/schannel.c
View file @
194cc70f
...
...
@@ -178,7 +178,7 @@ static void read_config(void)
BOOL
enabled
;
/* If no config is present, enable the protocol */
BOOL
disabled_by_default
;
/* Disable if caller asks for default protocol set */
}
protocol_config_keys
[]
=
{
{{
'S'
,
'S'
,
'L'
,
' '
,
'2'
,
'.'
,
'0'
,
0
},
SP_PROT_SSL2_CLIENT
,
TRUE
,
TRUE
},
{{
'S'
,
'S'
,
'L'
,
' '
,
'2'
,
'.'
,
'0'
,
0
},
SP_PROT_SSL2_CLIENT
,
FALSE
,
TRUE
},
/* NOTE: TRUE, TRUE on Windows */
{{
'S'
,
'S'
,
'L'
,
' '
,
'3'
,
'.'
,
'0'
,
0
},
SP_PROT_SSL3_CLIENT
,
TRUE
,
FALSE
},
{{
'T'
,
'L'
,
'S'
,
' '
,
'1'
,
'.'
,
'0'
,
0
},
SP_PROT_TLS1_0_CLIENT
,
TRUE
,
FALSE
},
{{
'T'
,
'L'
,
'S'
,
' '
,
'1'
,
'.'
,
'1'
,
0
},
SP_PROT_TLS1_1_CLIENT
,
TRUE
,
FALSE
/* NOTE: not enabled by default on Windows */
},
...
...
@@ -220,7 +220,7 @@ static void read_config(void)
if
(
type
!=
REG_DWORD
||
value
)
default_disabled
|=
protocol_config_keys
[
i
].
prot_client_flag
;
}
else
if
(
protocol_config_keys
[
i
].
disabled_by_default
)
{
default_disabled
|=
protocol_config_keys
[
i
].
prot_client_flag
;
default_disabled
|=
protocol_config_keys
[
i
].
prot_client_flag
;
}
RegCloseKey
(
key
);
...
...
tools/wine.inf.in
View file @
194cc70f
...
...
@@ -639,6 +639,7 @@ HKLM,Software\Microsoft\Transaction Server,,16
HKLM,Software\Policies,,16
HKLM,Software\Registered Applications,,16
HKLM,System\CurrentControlSet\Control\Lsa,,16
HKLM,System\CurrentControlSet\Control\SecurityProviders\Schannel\Protocols\SSL 2.0\Client,"DisabledByDefault",0x10003,1
HKLM,System\CurrentControlSet\Control\TimeZoneInformation,"StandardName",2,""
HKLM,System\CurrentControlSet\Control\TimeZoneInformation,"TimeZoneKeyName",2,""
HKLM,System\CurrentControlSet\Control\VirtualDeviceDrivers,,16
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment