Skip to content

Commit

Permalink
Dishant disable sslv3 (#15)
Browse files Browse the repository at this point in the history
* Bug 1822129: [OMI Engine] Insecure TLS configuration (SSLv3, Compression)

* Setting TLS v1.2 as default minimum
  • Loading branch information
dishantcr7 authored and Yash-Khatri committed Jun 10, 2022
1 parent b157550 commit 6a9a1b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Unix/etc/omicli.conf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#logfile = miclient.log
NoSSLv2=true
NoSSLv3=true
NoTLSv1_0=false
NoTLSv1_1=false
NoTLSv1_0=true
NoTLSv1_1=true
NoTLSv1_2=false
NoSSLCompression=true
3 changes: 3 additions & 0 deletions Unix/etc/omiserver.conf
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@
##
NoSSLv2=true
NoSSLv3=true
NoTLSv1_0=true
NoTLSv1_1=true
NoTLSv1_2=false
NoSSLCompression=true

##
Expand Down

0 comments on commit 6a9a1b4

Please sign in to comment.