home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / CGIPERL / SCRIPTS / PASSWD.PL < prev    next >
Encoding:
Perl Script  |  1996-04-16  |  1.6 KB  |  48 lines

  1. #!/usr/bin/perl
  2.  
  3. # Created By Matt Wright
  4. # Version 1.0
  5. # Simple Password Creator
  6. # Created on: 12/24/95 Christmas Eve! Last Modified On: 12/24/95
  7.  
  8. $num_args = @ARGV;
  9. if (!($num_args == 2)) {
  10.    print "Wrong Number of Arguments!\n";
  11.    print "USAGE: passwd.pl [passwd_file] <username>\n\n";
  12.    exit;
  13. }
  14. ($file,$username) = @ARGV;
  15.  
  16. system 'stty', '-echo';
  17. print "Adding password for $username to file $file\n";
  18. print "New Password: "; chop($pass1 = <STDIN>);
  19. print "\nRe-Type new password: "; chop($pass2 = <STDIN>);
  20. while (!($pass1 eq $pass2)) {
  21.    print "\nPasswords not the same.  Try Again.\n\n";
  22.    print "\nNew Password: "; chop($pass1 = <STDIN>);   
  23.    print "\nRe-Type new password: "; chop($pass2 = <STDIN>);
  24. }
  25. system 'stty', 'echo';
  26. $passwd = crypt($pass1,MW);
  27. open(FILE,">>$file") || die "Can't open file $file for writing: $!\n";
  28. print FILE "$username: $passwd\n";
  29. close(FILE);
  30. print "\nUser $username Added to Password File $file\n";
  31.  
  32. # This program is a simple passwd making program.  It turns ordinary
  33. # text into encrypted passwords like the passwd program in unix.
  34.  
  35. # This program does not have all the fancy features that the unix version 
  36. # has however.
  37. # This program can be used to create htaccess user databases.
  38. # Just simply run it like:
  39.  
  40. # passwd.pl filename user
  41. # where filename is the file you want the user and passwd to be stored in
  42. # and  user is the username you want to add a passwd for.
  43.  
  44. # This script can also be used for WWWADMIN's passwd.txt file, if you forget
  45. # the one you changed it to and can't change it from the web.
  46.  
  47. # Enjoy!
  48.