Web Design Web Design Forum
Registration is free! Here you can view your subscribed threads, work with private messages and edit your profile and preferences Calendar Find other members Frequently Asked Questions Search
Home Web Design

Convenient web based access to our favorite web design Usenet groups

web design reviews

This is Interesting: Free Magazines for Graphics designers and webmasters  





  Last Thread  Next Thread
Author
Thread Post New Thread   

htaccess Mass Password Generator for Windows
 

jim evans




quote this post edit post

IP Loged report this post

Old Post  06-11-06 - 08:58 AM  
Does anyone know where I can find a htaccess password generator that runs in
Windows and converts based on a file of usernames:passwords?  There are many
such generators where you must enter one name:password at a time, but I have
 500
members to generate passwords for and I can't face doing them one at a time.
Hopefully there is a free utility that does this.  If I must pay for it, kay
sera.

jim


Post Follow-Up to this message ]
Re: htaccess Mass Password Generator for Windows
 

Matt Probert




quote this post edit post

IP Loged report this post

Old Post  06-11-06 - 08:58 AM  
On Fri, 09 Jun 2006 16:09:24 GMT, jim evans <jimsnews@houston.rr.com>
wrote:

>Does anyone know where I can find a htaccess password generator that runs i
n
>Windows and converts based on a file of usernames:passwords?  There are man
y
>such generators where you must enter one name:password at a time, but I hav
e 500
>members to generate passwords for and I can't face doing them one at a time
.
>Hopefully there is a free utility that does this.  If I must pay for it, ka
y
>sera.
>
>jim


Not completely what you want, but it might help you... Or perhaps you
can amend the form and submit it?


http://www.clockwatchers.com/htaccess_tool.html


Matt


--
Veritas Vincti
http://www.probertencyclopaedia.com


Post Follow-Up to this message ]
Re: htaccess Mass Password Generator for Windows
 

Brian Wakem




quote this post edit post

IP Loged report this post

Old Post  06-11-06 - 08:58 AM  
jim evans wrote:

> Does anyone know where I can find a htaccess password generator that runs
> in
> Windows and converts based on a file of usernames:passwords?  There are
> many such generators where you must enter one name:password at a time, but
> I have 500 members to generate passwords for and I can't face doing them
> one at a time.
> Hopefully there is a free utility that does this.  If I must pay for it,
> kay sera.



$ cat userpassfile.txt
user1:bananas
user2:oranges
someuser:lemons
anotheruser:strawberries

$ cat userpassfile.txt | perl -ne 'chomp;@_=split/:/;print qq!$_[0]:! .
crypt($_[1],$_[0]). qq!\n! if $_[1]'
user1:us.VqtcMg9bNY
user2:us9gkSuV7cRmY
someuser:soFV0I0Kz1vto
anotheruser:anKlqXAj8Rp8Q


That's free.


--
Brian Wakem
Email: http://homepage.ntlworld.com/b.wakem/myemail.png


Post Follow-Up to this message ]
Re: htaccess Mass Password Generator for Windows
 

jim evans




quote this post edit post

IP Loged report this post

Old Post  06-11-06 - 08:59 AM  
Brian Wakem <no@email.com> wrote:

>jim evans wrote:
> 
>
>
>
>$ cat userpassfile.txt
>user1:bananas
>user2:oranges
>someuser:lemons
>anotheruser:strawberries
>
>$ cat userpassfile.txt | perl -ne 'chomp;@_=split/:/;print qq!$_[0]:! .
>crypt($_[1],$_[0]). qq!\n! if $_[1]'
>user1:us.VqtcMg9bNY
>user2:us9gkSuV7cRmY
>someuser:soFV0I0Kz1vto
>anotheruser:anKlqXAj8Rp8Q
>
>That's free.

Those are unix commands, not Windows.  My host does not allow me to Telnet t
o
their servers and I don't know how to issue unix commands another way.   Tha
t's
why I'm looking for a Windows utility.

jim


Post Follow-Up to this message ]
Re: htaccess Mass Password Generator for Windows
 

Brian Wakem




quote this post edit post

IP Loged report this post

Old Post  06-11-06 - 08:59 AM  
jim evans wrote:

> Brian Wakem <no@email.com> wrote:
> 
>
> Those are unix commands, not Windows.  My host does not allow me to Telnet
> to
> their servers and I don't know how to issue unix commands another way.
> That's why I'm looking for a Windows utility.
>


Perl will run on almost any OS, including Windows.

Here's a self contained script that does exactly the same.


#!usr/bin/perl

use strict;
use warnings;

my $userpassfile = '/home/bwakem/userpassfile.txt';

open (USERPASSFILE, "< $userpassfile") or die "Cannot open userpass file -
$!";
while (<USERPASSFILE> ) {
chomp;
next if !$_;
my ($user,$pass) = split/:/;
print qq!$user:! . crypt($pass,$user). qq!\n!;
}
close USERPASSFILE;


--
Brian Wakem
Email: http://homepage.ntlworld.com/b.wakem/myemail.png


Post Follow-Up to this message ]
Re: htaccess Mass Password Generator for Windows
 

jim evans




quote this post edit post

IP Loged report this post

Old Post  06-11-06 - 08:59 AM  
Brian Wakem <no@email.com> wrote:

>Perl will run on almost any OS, including Windows.
>
>Here's a self contained script that does exactly the same.
><snip>

Thank you very much.  It does what I need perfectly.

jim


Post Follow-Up to this message ]
Sponsored Links
 





All times are GMT. The time now is 06:00 AM. Post New Thread   
  Previous Last Thread   Next Thread next
Webmaster forum archive | Show Printable Version | Email this Page | Subscribe to this Thread

Popular forums

Adobe Photoshop forum Macromedia Flash Web Site Design
Dreamweaver FrontPage forum
JavaScript Forum XML forum
Style Sheets VRML
Forum Jump:
Rate This Thread:

 

XML RSS Feed web design latest articles Syndicate our forum via XML or simple JavaScript

Web Design archive  Database administration help  


Top Home  -  Register  -  Control Panel   -  Memberlist  -  Calendar  -  Faq  -  Search Top