Sponsored Content
Full Discussion: Password Generator
Special Forums Cybersecurity Password Generator Post 56156 by Neo on Tuesday 28th of September 2004 06:06:30 PM
Old 09-28-2004
Quote:
Originally posted by Perderabo
Whatta mess...

Maybe this will get it...

sed -n '/\~ST\^/s/.*\~ST\^//p' < inputfile | awk -v FS=^ '$1=855 { print $5 }'

Impressive.

Makes we want to generate a file of plain gibberish and give Perderabo the task to extract some useful information. (just kidding ...)

"The Perderabo Challenge" LOL Smilie

Neo

Note: This originally appeared in this thread.

Last edited by Perderabo; 10-01-2004 at 08:58 AM..
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Range generator

Dear All, I have a sorted file like 1 2 3 8 9 10 45 46 47 78 The output will be range like 1 3 8 10 45 47 78 78 (9 Replies)
Discussion started by: saifurshaon
9 Replies

2. What is on Your Mind?

Barcode Generator

QR Code Generator (0 Replies)
Discussion started by: Neo
0 Replies

3. Shell Programming and Scripting

time generator

Hi experts, I'd like to generate the table/file containing: number of milliseconds elapsed since midnight till midnight. It should contain 5 columns (hours minutes seconds milliseconds): Table will have theoretically 86 400 000 rows. My question is , is there somewhere the file or source... (7 Replies)
Discussion started by: hernand
7 Replies

4. Cybersecurity

swordfish --- a password generator

Here is my new password generation script. The attachment, swordfish.txt, is in dos format. Remember that you need to use dos2unix or flip or something to get it into unix format. The script is self documenting. It has an extensive help system built-in. And you can run: swordfish "set... (8 Replies)
Discussion started by: Perderabo
8 Replies

5. Shell Programming and Scripting

Sequence generator

Thanks Guys This really helped (5 Replies)
Discussion started by: robert89
5 Replies

6. UNIX for Beginners Questions & Answers

Password generator with user inputs

Hi, I am new to bash scripting and i wanted to make a bash script that will generate a password for a user. The user must enter his/her name and the url of the site the password is used for. And the script will generate a password with those two elements in the password. So if the url is... (0 Replies)
Discussion started by: Kvr123
0 Replies

7. Shell Programming and Scripting

Random Password generator with 2 digits and 6 characters

I am using the below to random generate a password but I need to have 2 numeric characters and 6 alphabetic chars head /dev/urandom | tr -dc A-Za-z0-9 | head -c 8 ; echo '' 6USUvqRB ------ Post updated at 04:43 PM ------ Any Help folks - Can the output be passed onto a sed command to... (9 Replies)
Discussion started by: infernalhell
9 Replies

8. Shell Programming and Scripting

Hostsfile generator

Hello I use a bash script to creating the hosts file /etc/hosts But there is a bug inside my output and I want to fix this. My Array looks like this: 205,IP 111.122.133.20 205,HOST2 unas 205,HOST1 unas15533 205,COMMENT # UNAS 775,IP ... (9 Replies)
Discussion started by: Marti95
9 Replies

9. Forum Support Area for Unregistered Users & Account Problems

Password sent via reset password email is 'weak' and won't allow me to change my password

I was unable to login and so used the "Forgotten Password' process. I was sent a NEWLY-PROVIDED password and a link through which my password could be changed. The NEWLY-PROVIDED password allowed me to login. Following the provided link I attempted to update my password to one of my own... (1 Reply)
Discussion started by: Rich Marton
1 Replies
Authen::Simple::Password(3pm)				User Contributed Perl Documentation			     Authen::Simple::Password(3pm)

NAME
Authen::Simple::Password - Simple password checking SYNOPSIS
if ( Authen::Simple::Password->check( $password, $encrypted ) ) { # OK } DESCRIPTION
Provides a simple way to verify passwords. METHODS
o check( $password, $encrypted ) Returns true on success and false on failure. SUPPORTED PASSWORD FORMATS
o Plain Plaintext o Crypt crypt(3) o Crypt Modular o $1$ MD5-based password algorithm o $apr$ MD5-based password algorithm, Apache variant o LDAP o {CLEARTEXT} Plaintext. o {CRYPT} Uses crypt(3) o {MD5} MD5 algorithm o {SMD5} Seeded MD5 algorithm o {SHA} SHA-1 algorithm o {SSHA} Seeded SHA-1 algorithm o MD5 algorithm Encoded as binary, Base64 or hexadecimal. o SHA-1 algorithm Encoded as binary, Base64 or hexadecimal. o SHA-2 256 algorithm Encoded as binary, Base64 or hexadecimal. SEE ALSO
Authen::Simple crypt(3). AUTHOR
Christian Hansen "chansen@cpan.org" COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-04-19 Authen::Simple::Password(3pm)
All times are GMT -4. The time now is 05:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy