Oracle documentation bug SSL Version 1.2

There is a documentation bug already opened for this, so the docs should be updated soon.

FlagQuoteOff Topic1Like

Applies To

All Users

Summary

This document provides the steps needed to disable use of SSLv3 for Oracle database clients and servers to address the POODLE vulnerability in SSL as described by CVE-2014-3566.

Please refer to the following document:

SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566 http://www.oracle.com/technetwork/topics/security/poodlecve-2014-3566-2339408.html

This document is intended for all levels of expertise.

Solution

Oracle database clients and services can be configured to disallow use of SSLv3 via the SSL_VERSION parameter in sqlnet.ora and listener.ora. To do so, update any sqlnet.ora and listener.ora configuration files used by database clients or servers that enable SSL to include an SSL_VERSION parameter that excludes the value "3.0". For example, the setting below will enforce the use of TLS 1.0 and disallow any other SSL versions including SSLv3:

SSL_VERSION=1.0

References:

Oracle Database Advanced Security Administrator's Guide (10g Release 2)

Oracle Database Security Guide (12c Release 1)

See the following link: http://docs.oracle.com/database/121/NETRF/sqlnet.htm#NETRF235

Compatibility Reference:

11.1.0.7 SSLv3, Upgradeable to TLSv1.0 with <BUG 6973000> UTL_HTTP DOES NOT SUPPORT TRANSPORT LAYER SECURITY VERSION 1

11.2.0.4 TLSv1.0, SSLv3, SSLv2

12c TLSv1.1, TLSv1.2

SSL_VERSION

Purpose

To force the version of the SSL connection.

Usage Notes

Clients and database servers must use a compatible version.

Default

undetermined

Values

复制代码
undetermined | 2.0 | 3.0

Example

复制代码
SSL_VERSION=2.0
相关推荐
尚雷558031 分钟前
从电商订单支付更新,吃透 Oracle 数据修改的底层设计哲学与全组件协同原理
数据库·oracle
李兆龙的博客44 分钟前
从一到无穷大 #70 从 LR 图 PEC 到InfluxQL兼容性差分测试方法论与工程实践
数据库·功能测试·oracle
张子行的博客2 小时前
SQL 调优实战:跨表排序性能提升之路
数据库·sql·oracle
FinTech老王3 小时前
逻辑删除不等于物理销毁:KingbaseES敏感数据标记与销毁实操指南
数据库·安全·oracle
池佳齐4 小时前
软考高级系统架构设计师备考(十八):数据库系统—事务管理与并发控制
数据库·oracle·系统架构
Irene19916 小时前
数据库“水位线”概念详解:Oracle数据库的数据文件空间管理 和 Flink/流处理中的事件时间处理
数据库·oracle
Irene19916 小时前
(课堂笔记)Oracle 子查询与表操作
数据库·oracle
Irene19917 小时前
EXTRACT 是 Oracle 中的一个日期/时间提取函数,也会导致索引失效(和 TO_CHAR() 对比)
oracle·extract
安当加密7 小时前
TDE透明加密:精准管控数据库文件的读取、复制与权限,实现全方位版权保护
数据库·oracle
Irene19918 小时前
Oracle 数据库表操作总结(新建表,删除表,表的增删改查等)
数据库·sql·oracle