How to hide password when using echo cmd?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to hide password when using echo cmd?
# 1  
Old 05-09-2013
How to hide password when using echo cmd?

Hi Am using unix Aix Ksh
I need to hide the password using echo cmd
Code:
Connecting the database and fetching ip_address and  password from one table.

greping the IP_address and password using two variable
IP_addr
Pawd

Then Used echo cmd
Code:
echo " connecting to $IP-addr and $Pawd"

ex : IP_addr as 10.145.21.12

Output :-
Code:
Connecting to 10.145.21.12 and ******

Password should not display ...
Can anyone help me..

Last edited by Scott; 05-18-2013 at 09:51 AM.. Reason: Moved thread. Does not seem like an 'Emergency'
# 2  
Old 05-09-2013
I must be missing something trivial here. If you don't want to display $Pawd, leave it out of the echo:
Code:
echo " connecting to $IP-addr with a password"

# 3  
Old 05-10-2013
Remove the $ from the echo code:

Code:
echo " connecting to $IP-addr and Pawd"

# 4  
Old 05-10-2013
Even telling a hacker how many letters a password is is giving them more information than they need. Don't even bother with *'s.

If you don't want to print it, just...don't.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. UNIX for Dummies Questions & Answers

Password wont hide when I type it!!

Hi there, I found out a very strange behavior. If I call ssh, my password will be invisible when I'm prompted to type it: santiago@cassiopee:~$ ssh titan.caoba.fr "echo connected" santiago@titan.caoba.fr's password: <--- password is hidden when typed connected santiago@cassiopee:~$ If I... (5 Replies)
Discussion started by: chebarbudo
5 Replies

3. 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

4. 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

5. 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

6. Shell Programming and Scripting

How to hide password from getting displayed on screen

I am writting script like echo "ENTER USERNAME: \c " read uName echo "ENTER PASSWORD: \c" read pwd In this it is shwng password on screen, I want to hide it, how can I do that (5 Replies)
Discussion started by: scorp_rahul23
5 Replies

7. Shell Programming and Scripting

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... (6 Replies)
Discussion started by: samd
6 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