Sponsored Content
Special Forums Cybersecurity swordfish --- a password generator Post 302081396 by ahmedwaseem2000 on Tuesday 25th of July 2006 04:21:03 AM
Old 07-25-2006
need help. when i tried running the sworfish from the same folder that it is residing i could get the passwords working perfectly fine. However, when i tried running it from a different path by giving the absolute path i get the below mentioned warning message. i also tried running it through the shell scripts i tried a cd to the folder and then launched using the command ./swordfish.txt some times this works and some times it fails can some one help me understand why is it failing some times?

Quote:
../utl/swordfish.txt
********************************
* *
* Warning: Entropy is zero! *
* *
********************************
generating weak entropy...
scribe[108]: linecount=linecount+1: bad number
Starts = 1
Period = 9,194,221,792,649,674,751
Total Calls = 0

Carry = 0
X0 = 1099
X1 = 8139
X2 = 26893
X3 = 23965
Entropy = BC928C58A6531E5E95BCB2ECE62EFD56F1D74717
>>}###@>----
 

7 More Discussions You Might Find Interesting

1. Cybersecurity

Password Generator

I need a great Password Generator program. I looked at a few of them, but none of them seemed to be what I wanted. So I have decided to write my own. (That's the cool thing about being a programmer....I always get what I want in software :) ) Do you have any password generators that you... (13 Replies)
Discussion started by: Perderabo
13 Replies

2. UNIX for Dummies Questions & Answers

date generator

Is there a command to generate the unix date that is in theshadow file?>? (2 Replies)
Discussion started by: BG_JrAdmin
2 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. Shell Programming and Scripting

Sequence generator

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

5. 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

6. 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

7. 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
Data::Entropy::RawSource::RandomOrg(3pm)		User Contributed Perl Documentation		  Data::Entropy::RawSource::RandomOrg(3pm)

NAME
Data::Entropy::RawSource::RandomOrg - download entropy from random.org SYNOPSIS
use Data::Entropy::RawSource::RandomOrg; my $rawsrc = Data::Entropy::RawSource::RandomOrg->new; $c = $rawsrc->getc; # and the rest of the I/O handle interface DESCRIPTION
This class provides an I/O handle connected to a stream of random octets being generated by an electromagnetic noise detector connected to the random.org server. This is a strong source of random bits, but is not suitable for security applications because the bits are passed over the Internet unencrypted. The handle implements a substantial subset of the interface described in IO::Handle. For use as a general entropy source, it is recommended to wrap an object of this class using "Data::Entropy::Source", which provides methods to extract entropy in more convenient forms than mere octets. The bits generated at random.org are, theoretically and as far as anyone can tell, totally unbiased and uncorrelated. However, they are sent over the Internet in the clear, and so are subject to interception and alteration by an adversary. This is therefore generally unsuitable for security applications. The capacity of the random bit server is also limited. This class will slow down requests if the server's entropy pool is less than half full, and (as requested by the server operators) pause entirely if the entropy pool is less than 20% full. Applications requiring secret entropy should generate it locally (see Data::Entropy::RawSource::Local). Applications requiring a large amount of entropy should generate it locally or download it from randomnumbers.info (see Data::Entropy::RawSource::RandomnumbersInfo). Applications requiring a large amount of apparently-random data, but not true entropy, might prefer to fake it cryptographically (see Data::Entropy::RawSource::CryptCounter). CONSTRUCTOR
Data::Entropy::RawSource::RandomOrg->new Creates and returns a handle object referring to a stream of random octets generated by random.org. METHODS
A subset of the interfaces described in IO::Handle and IO::Seekable are provided: $rawsrc->read(BUFFER, LENGTH[, OFFSET]) $rawsrc->getc $rawsrc->ungetc(ORD) $rawsrc->eof Buffered reading from the source, as in IO::Handle. $rawsrc->sysread(BUFFER, LENGTH[, OFFSET]) Unbuffered reading from the source, as in IO::Handle. $rawsrc->close Does nothing. $rawsrc->opened Retruns true to indicate that the source is available for I/O. $rawsrc->clearerr $rawsrc->error Error handling, as in IO::Handle. The buffered ("read" et al) and unbuffered ("sysread" et al) sets of methods are interchangeable, because no such distinction is made by this class. Methods to write to the file are unimplemented because the stream is fundamentally read-only. Methods to seek are unimplemented because the stream is non-rewindable; "ungetc" works, however. SEE ALSO
Data::Entropy::RawSource::CryptCounter, Data::Entropy::RawSource::Local, Data::Entropy::RawSource::RandomnumbersInfo, Data::Entropy::Source, <http://www.random.org> AUTHOR
Andrew Main (Zefram) <zefram@fysh.org> COPYRIGHT
Copyright (C) 2006, 2007, 2009, 2011 Andrew Main (Zefram) <zefram@fysh.org> LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2011-05-09 Data::Entropy::RawSource::RandomOrg(3pm)
All times are GMT -4. The time now is 01:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy