Script for Reading a Password file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script for Reading a Password file
# 1  
Old 02-28-2007
Question Script for Reading a Password file

How do I Authenticate users with a Password file that I have build using PWP - Password Privacy

Password file contents are as under
bash-2.03$ cat passwd.cf
janes hostname Q+BejYC7AxGVv21TiAiUYQ== user janes /tmp/pwp_access.cf

Now two things I need from a script

If the user exists in passwd.cf file then authenticate from there or else use NIS+ for authentication :

Can you help ?
# 2  
Old 03-01-2007
this Perl script may help you:
Code:
#!/usr/bin/perl
use strict;

my $username  = shift  or  die "Insufficient arguement: username missing";
my $pass_file = "passwd.cf";
my @grep_output =`grep " $username " $pass_file`;

if ($#grep_output < 0) {
# user exists in password file
# so authenticate from there
}
else {
# user does not exist in password file
# so use NIS+ for authentication
    print "got something \n";
}

# 3  
Old 03-07-2007
Thanks Yogesh
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

ksh Script, Reading A File, Grepping A File Contents In Another File

So I'm stumped. First... APOLOGIES... my work is offline in an office that has zero internet connectivity, as required by our client. If need be, I could print out my script attempts and retype them here. But on the off chance... here goes. I have a text file (file_source) of terms, each line... (3 Replies)
Discussion started by: Brusimm
3 Replies

2. UNIX for Dummies Questions & Answers

Reading XML file and print the values in the text file using Linux shell script

hi guys, i want help... Reding XML file and print the values into the text file using linux shell script file as per below xml file <sequence> <Filename>aldorzum.doc</Filename> <DivisionCode>US</DivisionCode> <ContentType>Template</ContentType> <ProductCode>VIMZIM</ProductCode> </sequence>... (1 Reply)
Discussion started by: sravanreddy
1 Replies

3. UNIX for Dummies Questions & Answers

Reading password from /dev/tty

hi, From the below script: ##########################################pwd_auth.sh######################################################################################## #Author: Pandeeswaran Bhoopathy #Written on:26th Jan 2012 2:00PM #This script describes the feature of stty and illustrates... (3 Replies)
Discussion started by: pandeesh
3 Replies

4. Shell Programming and Scripting

Reading a password

For an assignment i have to create a CSH menu that requires a password in order to login, and then does all this other stuff. I am really stumped on the password part though here is the question 1) ask for a password from the user. If the password is not correct, the system will exit ... (3 Replies)
Discussion started by: dexxterr
3 Replies

5. UNIX for Dummies Questions & Answers

UNIX script for reading a file and creating another file

Hi, I am a beginner in scripting...I have to do a script where I have to read a file which has list of job names, line by line and for every line execute a dsjob command to find the log details of the job and extract only the start time of the job, if it is greater than jan 01 2008 and create... (1 Reply)
Discussion started by: Vijay81
1 Replies

6. Shell Programming and Scripting

Reading password and echo * character

Hi, First of all i am using solaris 10. I want to write a script that ask user to enter password and read the character input from keyboard. The ask to re-enter the password and then if they are match it will accept. But my problem is I want to echo a '*' character instead of the character I... (4 Replies)
Discussion started by: alanpachuau
4 Replies

7. Shell Programming and Scripting

Reading file names from a file and executing the relative file from shell script

Hi How can i dynamically read files names from a list file and execute them from a single shell script. Please help its urgent Thanks in Advance (4 Replies)
Discussion started by: anushilrai
4 Replies

8. UNIX for Dummies Questions & Answers

script to reading a file

hi, I have a file containing names, say n number of names, sample file robin smith dallas frey cook all these names are in a file name called names.txt and it is placed in a directory called /data/names all i want is to write a script, which will read from the file and gives the... (3 Replies)
Discussion started by: vasikaran
3 Replies

9. Programming

Reading a file into a C++ script

Hi, I'm trying to read a file in with and assigne the stream to a char * type. I've manged it using the cin.get returning type char, but am having run-time problems returning a char *. For example, char *pStream = "file.txt"; ifstream from(pStream); from.open(pStream); ... (1 Reply)
Discussion started by: Breen
1 Replies
Login or Register to Ask a Question