Re: Password reset for unix

2011-05-03 Thread krish
On May 2, 11:51 pm, ag4ve...@gmail.com (shawn wilson) wrote: > On May 2, 2011 2:14 PM, "Kenneth Wolcott" wrote: > > > > >   It looks like you have a great working system for annually forcing > > the change of UNIX passwords in a systematic manner, but it would > > definitely not be good to emulate

Re: Password reset for unix

2011-05-02 Thread shawn wilson
On May 2, 2011 2:14 PM, "Kenneth Wolcott" wrote: > > It looks like you have a great working system for annually forcing > the change of UNIX passwords in a systematic manner, but it would > definitely not be good to emulate your system in the general case > because very few people on this list (

Re: Password reset for unix

2011-05-02 Thread Kenneth Wolcott
On Mon, May 2, 2011 at 08:17, Jim Gibson wrote: > > At 10:46 PM -0400 5/1/11, shawn wilson wrote: >> >> jim, you setup your boxes a certain way to make sure this doesn't fail? > > > No. The systems are plain vanilla Red Hat Linux (old versions because they > run proprietary software). > >> >> so,

Re: Password reset for unix

2011-05-02 Thread Jim Gibson
At 10:46 PM -0400 5/1/11, shawn wilson wrote: jim, you setup your boxes a certain way to make sure this doesn't fail? No. The systems are plain vanilla Red Hat Linux (old versions because they run proprietary software). so, the problems i see with this: 1. password schema - newer systems

Re: Password reset for unix

2011-05-01 Thread shawn wilson
jim, you setup your boxes a certain way to make sure this doesn't fail? On Sun, May 1, 2011 at 10:17 PM, Jim Gibson wrote: > At 5:22 PM -0700 4/30/11, dolphin wrote: >> >> Hi, >> >> To reset password in unix, the system will prompt 2 times for entering >> the new password. The first time is to en

Re: Password reset for unix

2011-05-01 Thread Jim Gibson
At 5:22 PM -0700 4/30/11, dolphin wrote: Hi, To reset password in unix, the system will prompt 2 times for entering the new password. The first time is to enter the new password and the second time is to confirm the new password of the account. It is tedious to perform this when there is a huge

Re: Password reset for unix

2011-05-01 Thread shawn wilson
On May 1, 2011 7:24 PM, "dolphin" wrote: > > Hi, > > To reset password in unix, the system will prompt 2 times for entering > the new password. The first time is to enter the new password and the > second time is to confirm the new password of the account. It is > tedious to perform this when ther

Re: Password reset for unix

2011-05-01 Thread Kenneth Wolcott
On Sat, Apr 30, 2011 at 17:22, dolphin wrote: > Hi, > > To reset password in unix, the system will prompt 2 times for entering > the new password. The first time is to enter the new password and the > second time is to confirm the new password of the account. It is > tedious to perform this when

Re: Password Entry

2008-09-17 Thread John W. Krahn
[EMAIL PROTECTED] wrote: Hello Hello, I am looking for sample code where a user would enter a password. The key here is to either replace the characters entered with blanks or something like "*" for each character that is entered. I am sure this has been done before. perldoc -q password

Re: Password Entry

2008-09-17 Thread Jack Gates
On Wednesday 17 September 2008 04:03:55 pm [EMAIL PROTECTED] wrote: > Hello > > I am looking for sample code where a user would enter a password. The key > here is to either replace the characters entered with blanks or something > like "*" for each character that is entered. I am sure this has bee

Re: Password Entry

2008-09-17 Thread Francisco Valladolid
Please check the http://search.cpan.org/~jstowe/TermReadKey-2.30/ReadKey.pm Module for a idea. Basically you can read key by key and store it in a string for doing the compare. Regards On Wed, Sep 17, 2008 at 3:03 PM, <[EMAIL PROTECTED]> wrote: > Hello > > I am looking for sample code where a u

Re: Password generator (limit my dictionary to...)

2007-10-26 Thread John W . Krahn
On Sunday 21 October 2007 23:45, Michael Alipio wrote: > Hi, Hello, > I'm trying to create a dictionary file for my > bruteforce program. > > > I have a huge dictionary file and I want to trim it > down according the requirements. > > The output should be a dictionary file that is minimum > 6 cha

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Paul Lalli
On Oct 22, 2:18 pm, [EMAIL PROTECTED] (Jay Savage) wrote: > On 10/22/07, Paul Lalli <[EMAIL PROTECTED]> wrote: > > > On Oct 22, 2:45 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > > > > The output should be a dictionary file that is minimum > > > 6 characters and maximum 15 characters with at leas

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Jay Savage
On 10/22/07, Paul Lalli <[EMAIL PROTECTED]> wrote: > On Oct 22, 2:45 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > > > The output should be a dictionary file that is minimum > > 6 characters and maximum 15 characters with at least 4 > > letters and 2 numbers in it.. no special characters > > what

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Rob Dixon
Michael Alipio wrote: Here's what I came up with: #!/usr/bin/perl use warnings; use strict; my $wordlist = shift @ARGV; open INPUTFILE, "$wordlist" or die $!; while (){ # Find all words that are 6-15 characters with at least 2 digits and 4 letters that can appear anywhere next unless (

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Paul Lalli
On Oct 22, 7:56 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > Here's what I came up with: /\b\w{6,15}\b\n/ && /.*(\d).*\d/ && /(.*([a-z]|[A-Z]).*){4}/) \b is a word boundary. It is simply true at spaces in between word characters and non-word characters. Your regexps do not at all preclude s

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Michael Alipio
Hi Paul, Here's what I came up with: #!/usr/bin/perl use warnings; use strict; my $wordlist = shift @ARGV; open INPUTFILE, "$wordlist" or die $!; while (){ # Find all words that are 6-15 characters with at least 2 digits and 4 letters that can appear anywhere next unless (/\b\w{6,15}\b\n/

Re: Password generator (limit my dictionary to...)

2007-10-22 Thread Paul Lalli
On Oct 22, 2:45 am, [EMAIL PROTECTED] (Michael Alipio) wrote: > The output should be a dictionary file that is minimum > 6 characters and maximum 15 characters with at least 4 > letters and 2 numbers in it.. no special characters > whatsoever.. This should be a simple regex but it's > been a while

Re: Password

2005-05-02 Thread José J. Cintrón
2005 7:53 PM To: Rentachintala, Jagan Cc: "José J. Cintrón"; beginners@perl.org Subject: Re: Password Hi Jagan, perl -p -i -e 's/username\/password as SYSOPER/username\/# as SYSOPER/g' test.dat Can't find string terminator "'" anywhere before EOF at -e line 1.

Re: Password

2005-04-29 Thread John W. Krahn
Rentachintala, Jagan wrote: From: Jean-Sébastien Guay [mailto:[EMAIL PROTECTED] perl -p -i -e 's/username\/password as SYSOPER/username\/# as SYSOPER/g' test.dat Can't find string terminator "'" anywhere before EOF at -e line 1. is the error I am getting On Windows the single quote is not a

RE: Password

2005-04-29 Thread Rentachintala, Jagan
enter. -Original Message- From: Jean-Sébastien Guay [mailto:[EMAIL PROTECTED] Sent: Thursday, April 28, 2005 7:53 PM To: Rentachintala, Jagan Cc: "José J. Cintrón"; beginners@perl.org Subject: Re: Password Hi Jagan, >perl -p -i -e '

Re: Password

2005-04-28 Thread Jean-Sébastien Guay
Hi Jagan, perl -p -i -e 's/username\/password as SYSOPER/username\/# as SYSOPER/g' test.dat Can't find string terminator "'" anywhere before EOF at -e line 1. is the error I am getting On Windows the single quote is not a valid quoting character for the shell (cmd.exe or command.com). Repla

RE: Password

2005-04-28 Thread Rentachintala, Jagan
Original Message- From: "José J. Cintrón" [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 10:13 AM To: Rentachintala, Jagan Cc: beginners@perl.org Subject: Re: Password If your script is the one generating the log file, it should be as simple as to find the line that

RE: Password

2005-04-27 Thread Rentachintala, Jagan
data center. -Original Message- From: "José J. Cintrón" [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 10:13 AM To: Rentachintala, Jagan Cc: beginners@perl.org Subject: Re: Password If your script is the one generating the log file,

Re: Password

2005-04-27 Thread José J. Cintrón
If your script is the one generating the log file, it should be as simple as to find the line that writes the password and just replace it with whatever string you want. for example old line print $UN."/".$PW new line print $UN."/XX" you get the idea. If the log is being generated by

Re: Password

2005-04-26 Thread Ing. Branislav Gerzo
Rentachintala, Jagan [RJ], on Tuesday, April 26, 2005 at 18:00 (-0400) typed the following: RJ> I am a newbie to perl and I have a question. In one of my project, the perl RJ> script will create a logfile. Inside the log file, the username/password is RJ> in clear text. RJ> I am trying to hide

Re: Password

2005-04-26 Thread Paul Kraus
Lots of ways to do this. Can you show us the code you have already written? On 4/26/05, Rentachintala, Jagan <[EMAIL PROTECTED]> wrote: > Hi, > > I am a newbie to perl and I have a question. In one of my project, the perl > script will create a logfile. Inside the log file, the username/passwor

RE: Password Encryption

2004-12-29 Thread Siegfried Heintze
ssage- From: Mike Blezien [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 29, 2004 8:00 AM To: zentara Cc: beginners@perl.org Subject: Re: Password Encryption Thx's works like a charm. :) zentara wrote: > On Tue, 28 Dec 2004 08:14:37 -0600, [EMAIL PROTECTED] (Mike >

Re: Password Encryption

2004-12-29 Thread Mike Blezien
Thx's works like a charm. :) zentara wrote: On Tue, 28 Dec 2004 08:14:37 -0600, [EMAIL PROTECTED] (Mike Blezien) wrote: Hello, Been trying to figure out how to encrypt a password w/Perl so it's uses the same scheme used in a webmin control panel for password protecting directories. It says i

Re: Password Changer and rexec help

2004-04-22 Thread Smoot Carl-Mitchell
On Thu, 22 Apr 2004 05:55:00 -0700 "John W. Krahn" <[EMAIL PROTECTED]> wrote: > > One of the people at the USENIX presentation was Don Libes of the > National Institute of Standards and Technology. Don had been wanting > for some time to build a program to automate interactive Unix > applications

Re: Password Changer and rexec help

2004-04-22 Thread WC -Sx- Jones
John W. Krahn wrote: From John Ousterhout at http://www.tcl.tk/doc/tclHistory.html One of the people at the USENIX presentation was Don Libes of the National Institute of Standards and Technology. Don had been wanting for ... summer of 1990, and it became an instant hit among system administrato

Re: Password Changer and rexec help

2004-04-22 Thread John W. Krahn
Smoot Carl-Mitchell wrote: > > On Thu, 22 Apr 2004 00:37:37 -0400 > WC -Sx- Jones <[EMAIL PROTECTED]> wrote: > > > > Expect isn't a language, it is a program written in Tcl. > > > > Hmmm, too tempting, but I will pass up this opportunity =) > > BTW, expect is not written in Tcl. It uses Tcl synt

Re: Password Changer and rexec help

2004-04-21 Thread Smoot Carl-Mitchell
On Thu, 22 Apr 2004 00:37:37 -0400 WC -Sx- Jones <[EMAIL PROTECTED]> wrote: > > Expect isn't a language, it is a program written in Tcl. > > > Hmmm, too tempting, but I will pass up this opportunity =) You may want to look at the Perl Expect module. It has similar functionality as expect, but i

Re: Password Changer and rexec help

2004-04-21 Thread WC -Sx- Jones
Expect isn't a language, it is a program written in Tcl. Hmmm, too tempting, but I will pass up this opportunity =) -- _Sx_ http://youve-reached-the.endoftheinternet.org/ _ http://jaxpm.insecurity.org/ http://cis4dl.insecurity.org/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: Password Changer and rexec help

2004-04-21 Thread John W. Krahn
Wc -Sx- Jones wrote: > > Wiggins d'Anconia wrote: > > >> wrap-up some ssh commands inside Perl. > > > > Yikes, if you are going to go that route then consider Net::SSH::Perl, > > has worked well for me in the past, once you get through the dependency > > installation. > > Why yikes? There is an

Re: Password Changer and rexec help

2004-04-21 Thread Wiggins d'Anconia
WC -Sx- Jones wrote: Wiggins d'Anconia wrote: wrap-up some ssh commands inside Perl. Yikes, if you are going to go that route then consider Net::SSH::Perl, has worked well for me in the past, once you get through the dependency installation. Why yikes? There is another language called expec

Re: Password Changer and rexec help

2004-04-21 Thread WC -Sx- Jones
Wiggins d'Anconia wrote: wrap-up some ssh commands inside Perl. Yikes, if you are going to go that route then consider Net::SSH::Perl, has worked well for me in the past, once you get through the dependency installation. Why yikes? There is another language called expect http://expect.nist

Re: Password Changer and rexec help

2004-04-21 Thread Wiggins d'Anconia
WC -Sx- Jones wrote: NandKishore.Sagi wrote: Also I am looking for a perl module which can help me to logon onto different boxes and execute a given script .Something more like rexec. wrap-up some ssh commands inside Perl. Yikes, if you are going to go that route then consider Net::SSH:

Re: Password Changer and rexec help

2004-04-21 Thread WC -Sx- Jones
NandKishore.Sagi wrote: Also I am looking for a perl module which can help me to logon onto different boxes and execute a given script .Something more like rexec. wrap-up some ssh commands inside Perl. -- _Sx_ http://youve-reached-the.endoftheinternet.org/ _ http://jaxpm.insecur

RE: Password Authentication

2003-10-30 Thread Dan Muey
> Hello: Howdy > > I'm attempting to create a CGI script for password requests > Software error: > Can't locate Authen/SASL.pm in @INC (@INC contains: > D:/Perl/lib D:/Perl/site/lib .) at D:/Perl/lib/Net/SMTP.pm You can do two things: 1) install Authen::SASL 2) Try to use a different type

Re: Password Authentication

2003-10-30 Thread Andrew Gaffney
Art Mahanna wrote: Software error: Can't locate Authen/SASL.pm in @INC (@INC contains: D:/Perl/lib D:/Perl/site/lib .) at D:/Perl/lib/Net/SMTP.pm line 101. For help, please send mail to the webmaster ([EMAIL PROTECTED] ), giving this error message and the time and date of

Re: password encrytion perl help

2003-07-01 Thread Janek Schleicher
Vemulakonda Uday Bhaskar wrote at Tue, 01 Jul 2003 09:11:00 +: > my code looks like this: > > #!/usr/bin/perl Missing use strict; use warnings; > $ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected"; or > $u=; > CHOMP $u; ^ cho

Re: password encrytion perl help

2003-07-01 Thread Sudarshan Raghavan
vemulakonda uday bhaskar wrote: hi all my code looks like this: #!/usr/bin/perl $ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected"; $u=; CHOMP $u; $p=; CHOMP $p; $ftp->login($u,$p) or die "login failed"; the code is working fine but the problem is when it asks password i need to give

RE: Password protected script.

2003-03-26 Thread Dan Muey
> Hello again. > I'm trying to write a script for uploading some files, but I > want it to be password protected, giving this way restricted > acces to some users. I don't want to set a password for the > directory where the script lies on, I'd prefeer the > protection beeing inside the script.

RE: Password Question

2002-09-26 Thread Pablo Jejcic
Yep, it works with Solaris./ P/. -Original Message- From: peter grotz [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 08:02 To: Darren Wanner Cc: [EMAIL PROTECTED] Subject: RE: Password Question Look at CPAN, there´s the mod Authen:PAM. using this you can do almost everything

RE: Password Question

2002-09-26 Thread peter grotz
Look at CPAN, there´s the mod Authen:PAM. using this you can do almost everything belonging to Authentication. But I´m using Linux, don´t know if it works with Solaris.. peter peter grotz rehberger architekten schertlinstr 23 86 159 augsburg tel +049 821 25980-29 fax +049 821 25980-20

Re: password style text widget for perl/tk

2002-09-12 Thread zentara
On Wed, 11 Sep 2002 12:41:25 -0400, [EMAIL PROTECTED] (Jess Balint) wrote: >Hey all. Does anyone know how to create a password style text widget in tk? >I have tried a few things, but can't seem to figure it out. Thanks. I'm not an expert on Tk , but try this to get you going: ##

Re: password style text widget for perl/tk

2002-09-11 Thread Paul Johnson
On Wed, Sep 11, 2002 at 12:41:25PM -0400, Balint, Jess wrote: > Hey all. Does anyone know how to create a password style text widget in tk? > I have tried a few things, but can't seem to figure it out. Thanks. Take a look at the show option in Tk::Entry. -- Paul Johnson - [EMAIL PROTECTED] htt

Re: Password entry field.

2002-08-27 Thread Kevin Meltzer
As well as the pointer Craig gave, you can also look at the Term::ReadPassword module. Cheers, Kevin On Tue, Aug 27, 2002 at 02:55:41PM -0400, Ravindranath, Sujit ([EMAIL PROTECTED]) said something similar to: > Hi all, > I am using PERL to write a terminal(UNIX) program wherein it prompts the

Re: Password entry field.

2002-08-27 Thread Craig Moynes/Markham/IBM
perldoc -q password How do I ask the user for a password? (This question has nothing to do with the web. See a different FAQ for that.) There's an example of this in L). First, you put the terminal into "no echo" mode, then just read the password normally. You may do this with an old-style i

Re: Password Encryption for MySQL field

2002-04-14 Thread rory oconnor
OK, this is neat, but I can't seem to get it to wrok correctly. I can insert it just fine (i see the encrypted password in the field), but when I try to select it using the plain text password I can't. (using perl) for inserting: $insert_user = "insert into $table (email,password,date) VALUES (

Re: Password Encryption for MySQL field

2002-04-09 Thread Ron
Ooops! Correction: Incorrect -- connect("DBI:mysql:HOST", "DB", 'DB_PASSWORD'); Should be -- connect( "dbi:mysql:dbname", "username", 'DBpassword'); Ron === "Ron" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... This is my two-

Re: Password Encryption for MySQL field

2002-04-08 Thread Ron
This is my two-bits on your question. I hope this helps. Ex: ENCODE('str', 'password') str is the string of the chosen password and password is the mySQL encryption password for encoding/decoding the password string. ENCODES returns a binary string and may be decoded with DECODE(). You should

Re: Password Encryption for MySQL field

2002-04-08 Thread Luke Davison
Rory, I would recommend using MySQL's buit in password() function: INSERT INTO user ( username,password ) VALUES ( 'someuser', password( 'plaintextpasshere' ) ); SELECT ( username, password ) FROM user WHERE username='someuser' AND password=password( 'plaintextpass' ); Regards, Luke Davison --

Re: Password Generator

2002-02-10 Thread Elaine -HFB- Ashton
Mike [[EMAIL PROTECTED]] quoth: *>IS there a perl password generator out there? CPAN has a scripts section http://cpan.valueclick.com/scripts/admin/generate.random.passwords e. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Password Generator

2002-02-08 Thread Jason Purdy
MAIL PROTECTED]>; "'Mike'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, February 08, 2002 5:27 PM Subject: RE: Password Generator > I think he wants to use the crypt() function. > > -Original Message- > From: Hanson, Robert [mailto:

Re: Password Generator

2002-02-08 Thread Michael Pratt
-- > From: Hanson, Robert [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 08, 2002 5:22 PM > To: 'Mike'; [EMAIL PROTECTED] > Subject: RE: Password Generator > > > To do what? Just generate random passwords? > > How about this. > > my @c = (a..z,A..Z

RE: Password Generator

2002-02-08 Thread Nikola Janceski
I think he wants to use the crypt() function. -Original Message- From: Hanson, Robert [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 5:22 PM To: 'Mike'; [EMAIL PROTECTED] Subject: RE: Password Generator To do what? Just generate random passwords? How about th

RE: Password Generator

2002-02-08 Thread Hanson, Robert
To do what? Just generate random passwords? How about this. my @c = (a..z,A..Z,0..9,qw|! @ # $ % ^ & * ( ) [ ]|); for (1..8) { print $c[int(rand(@c) + 1)]; } Rob -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 4:47 PM To: [EMAIL PROTECTED] Subj

Re: Password ---- cgi-perl-html

2002-01-08 Thread Leon
- Original Message - From: "Peter Cornelius" <[EMAIL PROTECTED]> > The way that I have done this in the past is to set a cookie after the > initial authentication. On all pages that require authentication you check > for the cookie and validate that it hasn't been tampered with. Do you u

RE: Password ---- cgi-perl-html

2002-01-08 Thread Peter Cornelius
The way that I have done this in the past is to set a cookie after the initial authentication. On all pages that require authentication you check for the cookie and validate that it hasn't been tampered with. If this check fails you redirect the user to the login page. To prevent tampering you

Re: Password ---- cgi-perl-html

2002-01-07 Thread victor
actually, most likely you are looking not just password checking but also session management. The easiest way is to take advantage of mod_auth which come with apache by default (consult this part of the apache faq for more detail http://httpd.apache.org/docs/misc/FAQ.html#user-authentication) o

Re: Password ---- cgi-perl-html

2002-01-07 Thread Eric
if you're running Apache, look into .htaccess for password protecting certain parts of your site.. no reason to make something harder than it has to be. ~Eric On Monday, January 7, 2002, at 07:58 PM, Luinrandir Hernson wrote: > ect part of my website. > I have the password -- To unsubscri

Re: Password form

2001-12-13 Thread Andrea Holstein
Ryan Guy wrote: > > I guess I was a little harsh. I just had a very bad night and I guess I > took it out a little on you. Sorry. You werent any of the things that I > said. I understand your viewpoint. Just wanted to apologize. No hard > feelings? Of course not :-) Thanks to Etienne. He

Re: Password form

2001-12-13 Thread Etienne Marcotte
Actually, I'm not with you on this one.. there is the original message: = From: "Juan Manuel Espinoza" <[EMAIL PROTECTED]>Wed 12:04 PM Subject: Password form To: [EMAIL PROTECTED] Hi everybody! How can i do a file that process a password form. and if the pass is correct open a URL.

RE: Password form

2001-12-13 Thread Ryan Guy
Andrea, I guess I was a little harsh. I just had a very bad night and I guess I took it out a little on you. Sorry. You werent any of the things that I said. I understand your viewpoint. Just wanted to apologize. No hard feelings? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re: Password form

2001-12-13 Thread Andrea Holstein
Ryan Guy wrote: > > Actually, Andrea, if that is your real name, his question was more than > detailed enough. Although I may not currently possess the information that > he is looking for I can still spot a thoroughly precise question. > Apparently you can not. Maybe you should work on that be

RE: Password form

2001-12-13 Thread Ryan Guy
Actually, Andrea, if that is your real name, his question was more than detailed enough. Although I may not currently possess the information that he is looking for I can still spot a thoroughly precise question. Apparently you can not. Maybe you should work on that before you get your masters i

Re: Password form

2001-12-13 Thread Andrea Holstein
Juan Manuel Espinoza wrote: > > Hi everybody! > > How can i do a file that process a password form. > and if the pass is correct open a URL. > Sorry, but your description is not detailed enough. What kind of password form ? - shell - password window by tk - remote access like telnet - browser

RE: Password Generators

2001-09-17 Thread Dean Theophilou
From: Justin Rogers [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 11, 2001 2:23 PM To: 'Dean Theophilou'; 'Perl-Win32-Admin@ActiveState. com'; 'Perl_beginner (E-mail)'; 'Perl Users List' Subject: RE: Password Generators This was found using PPM Crypt-R

RE: Password Generators

2001-09-13 Thread Cornish, Merrill
At one time (I no longer work there) Texas Instruments, used a password generator. Their take on the unrememberable problem was to generate a dozen or more, then ask you to pick one. Merrill -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Password Generators

2001-09-11 Thread Thomas R Wyant_III
Dean, The following note is about the philosophy rather than the practice of password generation. Anyone not interested is invited to move on to the next message. Password generators aren't as popular as they once were, due to the difficulty of remembering and typing a truly random sequence of c

Re: Password decryption of User accounts From PDC registry

2001-09-06 Thread Nexus
OK, there are a number of steps you need to take. First off, you need to grab the hashes from the registry but the key has SYSYEM only perms on it - as an admin you need to give admin read perms on HKLM/Security. Then grab the hashes out of there (HKLM/Security/SAM/Domains/Account/Users or somet

RE: Password decryption of User accounts From PDC registry

2001-09-06 Thread John Edwards
Passwords are encrypted using a one way system. i.e, there is no way to unencrypt the password hash. You can use a brute force attack on the password (you encrypt your guesses at the password and then compare the encrypted hash you generated with the one in the SAM, if they match, then you've gues