Link to home
Start Free TrialLog in
Avatar of sdruss
sdruss

asked on

Wrap Oraccle SQL*Plus executable Command

Need example of bash shell script wrapper to not allow SQL*Plus command to be executed on command line as:

      sqlplus user/password@ora12

Need to prevent user from entering plain text password to comply with DoD STIG. Forcing the above to be executed as the following is acceptable as password is prompted for and not echoed:

    sqlplus user/@ora12
Avatar of Geert G
Geert G
Flag of Belgium image

if they can find the direct path to sqlplus they can workaround your batch

try requesting a new version of sqlplus without the command line password possibility from oracle
alias sqlplus='sqlplus blah blah blah'
ASKER CERTIFIED SOLUTION
Avatar of johnsone
johnsone
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sdruss
sdruss

ASKER

You bring up some very interesting points.  Thank You.