- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- How do I hide passwords in a perl script.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2007 04:54 PM
тАО05-31-2007 04:54 PM
How do I hide passwords in a perl script.
I'm having problem hiding my password entry from users vision. How can I solve it?
Rgds,
Stanley
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2007 06:01 PM
тАО05-31-2007 06:01 PM
Re: How do I hide passwords in a perl script.
will give you all the answers you need.
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2007 06:44 PM
тАО05-31-2007 06:44 PM
Re: How do I hide passwords in a perl script.
- Tags:
- stty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2007 07:12 PM
тАО05-31-2007 07:12 PM
Re: How do I hide passwords in a perl script.
Currently i just read user input to a variable like below:
$password =
and run in solaris environment.
My objective is to hide from user when user input.
As I know the -stty command is just for shell script file. Is it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2007 07:46 PM
тАО05-31-2007 07:46 PM
Re: How do I hide passwords in a perl script.
It *literally* states your problem and gives the solution. We don't have to cut and paste the output here, do we?
I admit that Term::ReadKey is not a CORE module, but it will give you a portable way to disable the echo of characters entered.
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2007 08:20 PM
тАО05-31-2007 08:20 PM
Re: How do I hide passwords in a perl script.
I do have try your statement and put it in my perl script and it dont reflect any changes that I had made. Or do I made any mistake? Pls advice.
FYI, I just need to mask a
Thks and rgds,
Stanley
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2007 10:18 PM
тАО05-31-2007 10:18 PM
Re: How do I hide passwords in a perl script.
system "stty -echo";
to mask off.
Thanks all