+ All Categories
Home > Documents > Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide...

Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide...

Date post: 04-Jun-2020
Category:
Upload: others
View: 11 times
Download: 0 times
Share this document with a friend
62
Masking Sensitive Data in Oracle Database Maja Veselica, Consultant
Transcript
Page 1: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Masking Sensitive Data

in

Oracle Database

Maja Veselica, Consultant

Page 2: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Contact

Maja Veselica,

CTO & Principal Consultant

Email: [email protected]

Twitter: orapassion

Website www.evoxera.com

Page 3: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

➢ Introductory and Concepts Q&A

➢ Use-case-based Q&A

➢ Your questions

Agenda

Page 4: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Introductory and Concepts Q&A

Page 5: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Masking Data

What is sensitive data?

What is considered as masking of data?

Why should you mask data?

When and Where?

Which Oracle solutions exist?

Page 6: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

❖ Virtual Private Database (VPD) enables you to restrict access to

data at row-level or column-level.

❖ The main purpose of Data Redaction is to provide different

ways to mask sensitive data from end-users in production

environments.

❖ Transparent Sensitive Data Protection (TSDP) provides a way to

create classes of sensitive data and enables more centralized

control of how sensitive data is protected.

❖ Oracle Data Masking enables organizations to use production

data in development and test environments by changing

production data with realistic data (transformation is done by

using masking rules).

Oracle solutions

Page 7: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

➢ Data Masking

➢ Format entry

➢ built-in masking primitives

➢ built-in masking routines

➢ user defined function

Concepts

Page 8: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Built-in masking primitives

Type Description

Array List Randomly chosen value from the list of values

Fixed Number Number that will be used for data masking

Fixed String String that will be used for data masking

Random Dates Date interval from which a value will be chosen

in a random way

Random Digits Digit interval from which a value will be chosen

in a random way

Random Numbers Number interval from which a value will be

chosen in a random way

Random Strings String interval from which a value will be chosen

in a random way

Page 9: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Built-in masking routines

Type Description

Shuffle Changing the position of the original data

Substitute Uses a hash-based substitution (deterministic

masking)

Substring Specify start and length of substring

Table column Value is chosen from the specified table column

Page 10: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

➢ Data Masking

➢ Masking format

➢ Masking definition

➢ Format Library

Concepts

Page 11: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Data Masking

Page 12: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Format Library

Page 13: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

EM 12c

Page 14: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

EM 12c

Page 15: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

EM 12c

Page 16: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Clone staging DB to test

Execute masking job

Create masking definitions

Clone production DB to staging

Define mask formats

Identify sensitive data

Q: How to implement Data Masking?

Page 17: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

➢ VPD

➢ Policy

➢ Policy function

➢ Driving context

Concepts

Page 18: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Q: How to implement VPD?

Page 19: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

➢ Masks sensitive data just before results of SQL query

are returned to application that issued the query

➢ Different from Data Masking

➢ It’s designed to protect from end-users, not from

privileged users

Data Redaction

Page 20: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

None

• Redaction is

NOT

applied

Full

• Columns

are

redacted to

constant

values

depending

on column

data type

Partial

• User-

specified

positions

are replaced

by a user-

specified

character

Regular Expression

• Pattern for

matching

and

replacing is

defined and

used for

redaction

Random

• Preserves

data types

• Randomizes

output

Available Redaction Types

Page 21: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Data Redaction - Full

DBMS_REDACT.ADD_POLICY

(object_schema => ‘GLDB’,

object_name => ‘CUSTOMERS’,

policy_name => ‘CCN_POLICY',

column_name => ‘CREDIT_CARD',

function_type => DBMS_REDACT.FULL,

expression => ‘7=7');

NAME CREDIT_CARD

tom 3455647456589132

mike 3734982321225691

john 3472586894975806

CUSTOMERS

NAME CREDIT_CARD

tom 0

mike 0

john 0

SQL> SELECT * FROM CUSTOMERS;

Page 22: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Data Redaction - Partial

DBMS_REDACT.ADD_POLICY

(object_schema => ‘GLDB’,

object_name => ’CUSTOMERS’,

policy_name => ’CCN_POLICY',

column_name => ’CREDIT_CARD',

function_type => DBMS_REDACT.PARTIAL,

function_parameters => 'VVVVFVVVVFVVVVFVVVV,

VVVV-VVVV-VVVV-VVVV, #,1,12’

expression => ‘7=7');

NAME CREDIT_CARD

tom 3455647456589132

mike 3734982321225691

john 3472586894975806

CUSTOMERS

SQL> SELECT * FROM CUSTOMERS;

NAME CREDIT_CARD

tom ####-####-####-9132

mike ####-####-####-5691

john ####-####-####-5806

Page 23: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Data Redaction - Exemptions

DBMS_REDACT.ADD_POLICY

(object_schema => ‘GLDB’,

object_name => ’CUSTOMERS’,

policy_name => ’CCN_POLICY',

column_name => ’CREDIT_CARD',

function_type=> DBMS_REDACT.FULL,

expression => ‘7=7');

NAME CREDIT_CARD

tom 3455647456589132

mike 3734982321225691

john 3472586894975806

CUSTOMERS

RMAN> BACKUP TABLESPACE gltbs;

NAME CREDIT_CARD

tom 3455647456589132

mike 3734982321225691

john 3472586894975806

Page 24: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Data Redaction - Exemptions

DBMS_REDACT.ADD_POLICY

(object_schema => ‘GLDB’,

object_name => ’CUSTOMERS’,

policy_name => ’CCN_POLICY',

column_name => ’CREDIT_CARD',

function_type => DBMS_REDACT.FULL,

expression => ‘7=7');

NAME CREDIT_CARD

tom 3455647456589132

mike 3734982321225691

john 3472586894975806

CUSTOMERS

NAME CREDIT_CARD

tom 3455647456589132

mike 3734982321225691

john 3472586894975806

SQL> SELECT * FROM CUSTOMERS;

User with EXEMPT REDACTION POLICY

Page 25: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

c##zoran@PDB1> BEGIN

2 DBMS_REDACT.ADD_POLICY (object_schema => ‘GLDB’,

3 object_name => ’CUSTOMERS’,

4 policy_name => ’CCN_POLICY',

5 column_name => ’CREDIT_CARD',

6 function_type => DBMS_REDACT.PARTIAL,

7 function_parameters => 'VVVVFVVVVFVVVVFVVVV, VVVV-VVVV-VVVV-VVVV,

#,1,12’

8 expression => ‘7=7');

9 END;

10 /

PL/SQL procedure successfully completed.

c##zoran@PDB1> select * from gldb.customers;

NAME CREDIT_CARD

---------------- --------------------

tom 3455-6474-5658-9132

mike 3734-9823-2122-5691

john 3472-5868-9497-5806

c##zoran@PDB1> grant select on gldb.customers to maja;

Grant succeeded.

Data Redaction - Example

Page 26: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

maja@PDB1> select * from gldb.customers;

NAME CREDIT_CARD

---------------- --------------------

tom ####-####-####-9132

mike ####-####-####-5691

john ####-####-####-5806

maja@PDB1> select * from gldb.customers where credit_card like ‘3472%’;

NAME CREDIT_CARD

---------------- --------------------

john ####-####-####-5806

Data Redaction - Example

Page 27: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

NAME TYPE VALUE

-------------------------------------------------- ----------- --------

compatible string 12.2.0

noncdb_compatible boolean FALSE

create table c##maja.test(id number, d date, email varchar2(30));

insert into c##maja.test values (1,sysdate,'[email protected]');

insert into c##maja.test values (2,sysdate,'[email protected]');

insert into c##maja.test values (3,sysdate,'[email protected]');

insert into c##maja.test values (4,sysdate,'[email protected]');

Data Redaction – NULLIFY Example (12.2)

Note: This example is created on Oracle Database Cloud Service

Page 28: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Data Redaction – NULLIFY Example (12.2)

Before redaction

Page 29: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

BEGIN

DBMS_REDACT.ADD_POLICY (

object_schema => 'C##MAJA',

object_name => 'TEST',

policy_name => 'EMAIL_POLICY',

column_name => 'EMAIL',

function_type => DBMS_REDACT.NULLIFY,

expression => '1=1');

END;

/

Data Redaction – NULLIFY Example (12.2)

Redaction policy

Page 30: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Data Redaction – NULLIFY Example (12.2)

After redaction

SELECT * FROM C##MAJA.TEST;

User with EXEMPT REDACTION POLICY

SELECT * FROM C##MAJA.TEST;

Page 31: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Transparent Sensitive Data Protection (TSDP)

Page 32: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

➢ Provides a way to create classes of sensitive data

such as:

➢ Social security number

➢ Credit card number

➢ Enables more centralised control of how sensitive data

is protected

➢ Levereges security mechanisms:

➢ VPD

➢ Data Redaction

TSDP

Page 33: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Enable the policy

Associate the policy with the type

Create TSDP policy

Associate sensitive columns with that type

Create a sensitive data type

Q: How to implement TSDP?

Page 34: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> BEGIN

2 DBMS_TSDP_MANAGE.ADD_SENSITIVE_TYPE (

3 sensitive_type => ‘email_type’,

4 user_comment=> ’Type for email redaction’);

5 END;

6 /

SQL> select name from DBA_SENSITIVE_COLUMN_TYPES;

NAME

----------------

email_type

TSDP Example - Create a sensitive data type

Page 35: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> BEGIN

2 DBMS_TSDP_MANAGE.ADD_SENSITIVE_COLUMN(

3 schema_name => 'PARALLEL',

4 table_name => 'T1',

5 column_name => 'EMAIL_ADDRESS',

6 sensitive_type => 'email_type');

7 END;

8 /

SQL> BEGIN

2 DBMS_TSDP_MANAGE.ADD_SENSITIVE_COLUMN(

3 schema_name => ‘HR',

4 table_name => ‘EMPLOYEES',

5 column_name => 'EMAIL',

6 sensitive_type => 'email_type');

7 END;

8 /

TSDP Example – Associate sensitive columns

with that type

Note: You can associate a column with only one type. If you try to associate it

with another type, you’ll receive ORA-45607.

Page 36: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> DECLARE

2 redact_feature_options DBMS_TSDP_PROTECT.FEATURE_OPTIONS;

3 policy_conditions DBMS_TSDP_PROTECT.POLICY_CONDITIONS;

4 BEGIN

5 redact_feature_options('expression') :='1=1';

6 redact_feature_options('function_type') :='DBMS_REDACT.REGEXP';

7 redact_feature_options('regexp_pattern'):='([A-Za-z0-9._%+-]+)@([A-Za-

z0-9.-]+\.[A-Za-z]{2,4})';

8 redact_feature_options('regexp_replace_string'):='\[email protected]';

9 policy_conditions(DBMS_TSDP_PROTECT.DATATYPE) := 'VARCHAR2';

10 DBMS_TSDP_PROTECT.ADD_POLICY

('redact_regexp_email',DBMS_TSDP_PROTECT.REDACT,redact_feature_options,

policy_conditions);

11 END;

12 /

TSDP Example – Create TSDP policy

Page 37: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> BEGIN

2 DBMS_TSDP_PROTECT.ASSOCIATE_POLICY(

3 policy_name => 'redact_regexp_email',

4 sensitive_type => ‘email_type',

5 associate => true);

6 END;

7 /

TSDP Example – Associate the policy

with the type

Page 38: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> begin

2 DBMS_TSDP_PROTECT.ENABLE_PROTECTION_COLUMN(

3 schema_name =>'PARALLEL',

4 table_name =>'T1',

5 column_name =>'EMAIL_ADDRESS',

6 policy => 'redact_regexp_email');

7 end;

8 /

SQL> begin

2 DBMS_TSDP_PROTECT.ENABLE_PROTECTION_COLUMN(

3 schema_name =>'HR',

4 table_name =>'EMPLOYEES',

5 column_name =>'EMAIL',

6 policy => 'redact_regexp_email');

7 end;

8 /

TSDP Example – Enable the policy

SQL> BEGIN

2 DBMS_TSDP_PROTECT.ENABLE_PROTECTION_TYPE(

3 sensitive_type => 'email_type');

4 END;

5 /

Page 39: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> begin

2 DBMS_TSDP_PROTECT.DISABLE_PROTECTION_COLUMN(

3 schema_name =>'PARALLEL',

4 table_name =>'T1',

5 column_name =>'EMAIL_ADDRESS',

6 policy => 'redact_regexp_email');

7 end;

8 /

SQL> begin

2 DBMS_TSDP_PROTECT.DISABLE_PROTECTION_COLUMN(

3 schema_name =>'HR',

4 table_name =>'EMPLOYEES',

5 column_name =>'EMAIL',

6 policy => 'redact_regexp_email');

7 end;

8 /

TSDP Example – Disable the policy

SQL> BEGIN

2 DBMS_TSDP_PROTECT.DISABLE_PROTECTION_TYPE(

3 sensitive_type => 'email_type');

4 END;

5 /

Page 40: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Q: How to alter the TSDP policy?

➢ Before altering the policy, you have to disable it for all

columns

➢ After altering the policy, it is not automatically enabled

(you have to enable it)

Page 41: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> DECLARE

2 redact_feature_options DBMS_TSDP_PROTECT.FEATURE_OPTIONS;

3 policy_conditions DBMS_TSDP_PROTECT.POLICY_CONDITIONS;

4 BEGIN

5 redact_feature_options ('expression') :='1=1';

6 redact_feature_options ('function_type') :='DBMS_REDACT.REGEXP';

7 redact_feature_options ('regexp_pattern'):='([A-Za-z0-9._%+-]+)@([A-

Za-z0-9.-]+\.[A-Za-z]{2,4})';

8 redact_feature_options ('regexp_replace_string'):='\[email protected]';

9 redact_feature_options ('regexp_position'):='1';

10 redact_feature_options ('regexp_occurrence'):='DBMS_REDACT.RE_FIRST';

11 policy_conditions(DBMS_TSDP_PROTECT.DATATYPE) := 'VARCHAR2';

12 DBMS_TSDP_PROTECT.ALTER_POLICY

('redact_regexp_email',redact_feature_options, policy_conditions);

13 end;

14 /

TSDP Example – Alter the policy

Page 42: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> connect hr@pdb1

hr@PDB1> select email from employees where first_name='Maja';

EMAIL

------------------------------

[email protected]

hr@PDB1> connect parallel@pdb1

parallel@PDB1> select email_address from t1;

EMAIL_ADDRESS

------------------------------

[email protected]

[email protected]

TSDP Example – Test it

Page 43: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

TSDP – Predefined REDACT_AUDIT policy

➢ Purpose of this policy is to mask bind values of bind

variables

➢ You can neither alter nor drop it

➢ You can disable or enable it

Page 44: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Use-case-based Q&A

Page 45: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Use Case 1

➢ Identify and mask sensitive data

➢ Data will be used on the test system

➢ App accesses 3 tables – Klijenti, Racuni and Kartice

➢ Referential integrity?

Page 46: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Original data in table Klijenti (Clients)

Page 47: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Original data in table Racuni (Accounts)

Page 48: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Original data in table Kartice (CreditCards)

Page 49: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Identified sensitive columns

Table Column

Klijenti Prezime

Klijenti Telefon

Klijenti Adresa

Klijenti JMBG

Racuni Stanje

Racuni Broj_racuna

Kartice Datum_izdavanja

Kartice Datum_isteka

Kartice Broj_kartice

Page 50: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Masking Definition

Page 51: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Masking Definition

Page 52: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Masked data

Page 53: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Masked data

Page 54: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Masked data

Page 55: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Use Case 2

➢ Identify and mask sensitive data

➢ Data will be used on the production system

➢ 2 apps access the same table and they have different

security requirements

Page 56: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent
Page 57: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Use Case 3

➢ “Regular” employee can access only his or her data in a

table and manager user can access his or her data in the table

and data for employees he or she directly manages.

➢ Data will be used on the production system

Page 58: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

SQL> CREATE OR REPLACE FUNCTION emp_access(

schema_var IN VARCHAR2,

table_var IN VARCHAR2)

RETURN VARCHAR2

IS

return_value VARCHAR2 (400);

BEGIN

return_value:= '(emp_id = SYS_CONTEXT(''hr_ctx'',''emp_id'')) OR (mgr_id =

SYS_CONTEXT(''hr_ctx'',''emp_id''))';

RETURN return_value;

END emp_access;

/

➢ Create app context hr_ctx, PL/SQL package and logon

trigger

➢ Create policy function emp_access and use it in VPD policy

Page 59: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Use Case 4

➢ You need to share your production data with 3rd party

company that will create reports. Afterwards, you need to

see original data.

Page 60: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Use Case 4

➢ Use Encrypt Data Masking Format (EM 12c)

➢ Note: It is very important that you remember

Encryption Seed, because without it you won’t be able

to decrypt data

Page 61: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent
Page 62: Masking Sensitive Data in Oracle Database · The main purpose of Data Redaction is to provide different ways to mask sensitive data from end-users in production environments. Transparent

Thank you!


Recommended