dbTalk Databases Forums  

Security: EAL4 and Database Links

comp.databases.oracle.server comp.databases.oracle.server


Discuss Security: EAL4 and Database Links in the comp.databases.oracle.server forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
bernard (bernard_at_bosvark.com)
 
Posts: n/a

Default Security: EAL4 and Database Links - 05-23-2007 , 11:28 AM






In my quest to comply with EAL4 evaluationsI came across the following
in the Oracle Documentation and got confused, I hope that someone
might understand this better than me:

Quote:
[DB.AC-6] Each database link must be defined such that users who refer to the link are connected to an identically named normal user account in the secondary or remote database, that is the database link must be defined without reference to a single normal user account to which all users referencing the link would otherwise be connected.
Does this mean one should only use CURRENT_USER Database Links as
described in Metalink Note:264872.1? Or does it mean something else?

I appreciate your help.



Reply With Quote
  #2  
Old   
sybrandb@hccnet.nl
 
Posts: n/a

Default Re: Security: EAL4 and Database Links - 05-23-2007 , 12:24 PM






On 23 May 2007 09:28:03 -0700, "bernard (bernard_at_bosvark.com)"
<bosvark2000 (AT) googlemail (DOT) com> wrote:

Quote:
In my quest to comply with EAL4 evaluationsI came across the following
in the Oracle Documentation and got confused, I hope that someone
might understand this better than me:

[DB.AC-6] Each database link must be defined such that users who refer to the link are connected to an identically named normal user account in the secondary or remote database, that is the database link must be defined without reference to a single normal user account to which all users referencing the link would otherwise be connected.

Does this mean one should only use CURRENT_USER Database Links as
described in Metalink Note:264872.1? Or does it mean something else?

I appreciate your help.
This means the database link needs to be set up as
create database link foo using 'bar'
instead of
create database link foo connect to scott identified by tiger using
'bar'

Guess this text comes from one of their lawyers.

--
Sybrand Bakker
Senior Oracle DBA


Reply With Quote
  #3  
Old   
bernard (bernard_at_bosvark.com)
 
Posts: n/a

Default Re: Security: EAL4 and Database Links - 05-24-2007 , 04:45 AM



On May 23, 6:24 pm, sybra... (AT) hccnet (DOT) nl wrote:
Quote:
On 23 May 2007 09:28:03 -0700, "bernard (bernard_at_bosvark.com)"

bosvark2... (AT) googlemail (DOT) com> wrote:
In my quest to comply with EAL4 evaluationsI came across the following
in the Oracle Documentation and got confused, I hope that someone
might understand this better than me:

[DB.AC-6] Each database link must be defined such that users who refer to the link are connected to an identically named normal user account in the secondary or remote database, that is the database link must be defined without reference to a single normal user account to which all users referencing the link would otherwise be connected.

Does this mean one should only use CURRENT_USER Database Links as
described in Metalink Note:264872.1? Or does it mean something else?

I appreciate your help.

This means the database link needs to be set up as
create database link foo using 'bar'
instead of
create database link foo connect to scott identified by tiger using
'bar'

Guess this text comes from one of their lawyers.

--
Sybrand Bakker
Senior Oracle DBA

Thank you Sybrand, now I can move forward. Apparently, when using the
"identified by" phrase when creating a dblink, the password is stored
in clear text, I'm trying to verify that, but my workstations's hard
drive is playing up. Will post result.

Regards
Bernard



Reply With Quote
  #4  
Old   
Frank van Bortel
 
Posts: n/a

Default Re: Security: EAL4 and Database Links - 05-26-2007 , 08:41 AM



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

bernard (bernard_at_bosvark.com) wrote:
Quote:
On May 23, 6:24 pm, sybra... (AT) hccnet (DOT) nl wrote:
On 23 May 2007 09:28:03 -0700, "bernard (bernard_at_bosvark.com)"

bosvark2... (AT) googlemail (DOT) com> wrote:
In my quest to comply with EAL4 evaluationsI came across the following
in the Oracle Documentation and got confused, I hope that someone
might understand this better than me:
[DB.AC-6] Each database link must be defined such that users who refer to the link are connected to an identically named normal user account in the secondary or remote database, that is the database link must be defined without reference to a single normal user account to which all users referencing the link would otherwise be connected.
Does this mean one should only use CURRENT_USER Database Links as
described in Metalink Note:264872.1? Or does it mean something else?
I appreciate your help.
This means the database link needs to be set up as
create database link foo using 'bar'
instead of
create database link foo connect to scott identified by tiger using
'bar'

Guess this text comes from one of their lawyers.

--
Sybrand Bakker
Senior Oracle DBA


Thank you Sybrand, now I can move forward. Apparently, when using the
"identified by" phrase when creating a dblink, the password is stored
in clear text, I'm trying to verify that, but my workstations's hard
drive is playing up. Will post result.

Regards
Bernard

Select from link$

- --
Regards,
Frank van Bortel

Top-posting is one way to shut me up...
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)

iD8DBQFGWDkgLw8L4IAs830RAiVYAJ9BWm+RzQTwnKvvjbO8bx 9rmkyB3gCeIRMP
vaW0UYHkap48aDBZhgv0CkQ=
=cEV3
-----END PGP SIGNATURE-----


Reply With Quote
  #5  
Old   
Maxim Demenko
 
Posts: n/a

Default Re: Security: EAL4 and Database Links - 05-26-2007 , 09:12 AM



Frank van Bortel schrieb:
Quote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

bernard (bernard_at_bosvark.com) wrote:
On May 23, 6:24 pm, sybra... (AT) hccnet (DOT) nl wrote:
On 23 May 2007 09:28:03 -0700, "bernard (bernard_at_bosvark.com)"

bosvark2... (AT) googlemail (DOT) com> wrote:
In my quest to comply with EAL4 evaluationsI came across the following
in the Oracle Documentation and got confused, I hope that someone
might understand this better than me:
[DB.AC-6] Each database link must be defined such that users who refer to the link are connected to an identically named normal user account in the secondary or remote database, that is the database link must be defined without reference to a single normal user account to which all users referencing the link would otherwise be connected.
Does this mean one should only use CURRENT_USER Database Links as
described in Metalink Note:264872.1? Or does it mean something else?
I appreciate your help.
This means the database link needs to be set up as
create database link foo using 'bar'
instead of
create database link foo connect to scott identified by tiger using
'bar'

Guess this text comes from one of their lawyers.

--
Sybrand Bakker
Senior Oracle DBA

Thank you Sybrand, now I can move forward. Apparently, when using the
"identified by" phrase when creating a dblink, the password is stored
in clear text, I'm trying to verify that, but my workstations's hard
drive is playing up. Will post result.

Regards
Bernard

Select from link$

- --
Regards,
Frank van Bortel

Top-posting is one way to shut me up...
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)

iD8DBQFGWDkgLw8L4IAs830RAiVYAJ9BWm+RzQTwnKvvjbO8bx 9rmkyB3gCeIRMP
vaW0UYHkap48aDBZhgv0CkQ=
=cEV3
-----END PGP SIGNATURE-----
In recent oracle versions this is no more the case - password won't
stored in plain text.

Best regards

Maxim


Reply With Quote
  #6  
Old   
Frank van Bortel
 
Posts: n/a

Default Re: Security: EAL4 and Database Links - 05-26-2007 , 02:35 PM



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Maxim Demenko wrote:
Quote:
Frank van Bortel schrieb:
Select from link$


In recent oracle versions this is no more the case - password won't
stored in plain text.

Best regards

Maxim
Correct; and it is just as easy to have them sent over
the communication lines encrypted.
- --
Regards,
Frank van Bortel

Top-posting is one way to shut me up...
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)

iD8DBQFGWIwHLw8L4IAs830RAocQAKCbILmd/OK9wPAjzaSbmcUBDQo8pwCeOFco
/Vv2OO9gU7t1FIL53KUukf8=
=w7JK
-----END PGP SIGNATURE-----


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.