How Do I Hide the Password in a Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How Do I Hide the Password in a Script
# 1  
Old 11-21-2006
How Do I Hide the Password in a Script

Hi,

I am writing a UNIX .ksh script and need to send the login password of the login id that is executing the script to a command that I am executing in the script. I don't want that password to be seen by anyone except whoever is executing the script.

Does anyone know how I can accomplish this?

Thanks

SD
# 2  
Old 11-21-2006
you can just get the encrypted password
# 3  
Old 11-21-2006
Whats the command you are running in the script that needs a passwd?
Is it FTP?
# 4  
Old 11-21-2006
It is a command that I am not sure is UNIX or home-grown. It is "become" which lets a user become another user (like su). In my script I have a line:
>become userid

I need to send the become command the user id of the user who is executing the script because, when run on the command line, the "become" command prompts for the user's password who is running the script.

SD
# 5  
Old 11-21-2006
funksen, is there a way to pass that encrypted password to the command in my script?

SD
# 6  
Old 11-21-2006
If the become command just reads from stdin, then all you have to do is something like this:

Code:
crypt key < /path/to/file/with/encrypted_passwd | become username

But if the become command is going to behave like passwd does, then I don't think it will be possible.
# 7  
Old 11-22-2006
Quote:
funksen, is there a way to pass that encrypted password to the command in my script?

SD
Reply With Quote
I don't think so, the command expects the password in cleartext and not the encrypted password

in your case I would rather use sudo and specify the "su" command for use without a password
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to hide password in shell script?

I am writing a shell script for sql loader (just copy part of the code) : For security reason, I have to put the below loginName and password into another separate file instead of in the same file of this script. Anyone can give me a hand. Thanks. Shell Script :... (12 Replies)
Discussion started by: Jaewong
12 Replies

2. Shell Programming and Scripting

Hide password from processes in Linux

i have a shell script which calls a java program with username and password arguments. #!/bin/ksh #set some classpaths here #finally run the command java com.test -u $U -p $P Now when i run it, the password shows up in the list of processes. I am not the admin on the server so cant... (3 Replies)
Discussion started by: ariesb2b
3 Replies

3. Shell Programming and Scripting

Expect Script - Hide password from process table

i have an expect script that runs like this: /usr/bin/expect -f /home/skysmart/commandstoexecute.sh host2.net b$4aff Skysmart when i run this command, and i do a ps -ef and egrep for expect, i see the exact line in the process table and it shows my password for the world to see. how can i... (2 Replies)
Discussion started by: SkySmart
2 Replies

4. Shell Programming and Scripting

How to hide/encrypt password in script?

Hi I have following problem Im writing a script (in bash ) , where need to be written login & passwd for databas client . Its need to in following form login passwd@dbhostname . The problem is so anybody can read it so the passwd & login are visible and thats not very safety . Can... (8 Replies)
Discussion started by: kvok
8 Replies

5. Shell Programming and Scripting

Best way to hide password in bash script?

Dear folks, The title of my thread says mostly all of what I want to do. Basically I want to auto-ssh to a remote host, and run a program on it (VLC is just an example). I wrote a script which calls xterm and then runs expect on it. The code is as follow #!/bin/bash export PASS="xxxxxxx"... (22 Replies)
Discussion started by: dukevn
22 Replies

6. UNIX for Dummies Questions & Answers

How can i hide username/password

hi all, i run sqlplus command on unix(HP-UX) like "sqlplus username/password@serverA @deneme.sql" but when someone run "ps -ef | grep sqlplus", it can see my username and password :( How can i hide username and password. thanx. (1 Reply)
Discussion started by: temhem
1 Replies

7. Shell Programming and Scripting

Hide password in file with sed

I have a properties file that contains passwords, need to hide the passwords before the properties file can be distributed. Input file: prop1=1 prop2=2 password=123456 this is a test pw prop3=3 password=789abc this is a prod pw My sed command is: sed 's/password=.*/password=xxx/g' <... (3 Replies)
Discussion started by: oakwoodman
3 Replies

8. Shell Programming and Scripting

Want to hide password

All, In my script I am calling another script.. in that script I need to enter a password. Problem is that everyone is able to see the password when I enter that. Is there any way that when i enter that password it should not display or may look like *******. Or if there any other way that I... (1 Reply)
Discussion started by: arpitk
1 Replies

9. Shell Programming and Scripting

How to hide password on Linux?

Hi falks, I have the following ksh code: echo "Enter VS Admin password:" oldstty=`stty -g` stty -echo intr '$-' read password stty $oldstty echo This code ask from a user to enter his password. The OS suppose to hide the entering of the... (2 Replies)
Discussion started by: nir_s
2 Replies

10. Programming

hide password typing

I am doing a project in C program which requires to type in password in Unix terminal. Does anybody know how to shade or not output any words typed by user in the terminal? I use the function scan() to read typing from user. Thanks in advance. (2 Replies)
Discussion started by: ivancheung
2 Replies
Login or Register to Ask a Question