generate passwords
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3678
Unhide Passwords 1.1.3.1
Unhide Passwords shows the contents of password fields in cleartext (instead of the asterisks), to make that process a bit easie more>>
If you arent concerned about someone looking over your shoulder and stealing your passwords, why hassle with those obfuscated password fields, where you never know whether you typed your 30 character code correctly or not...
Unhide Passwords shows the contents of password fields in cleartext (instead of the asterisks), to make that process a bit easier.
<<lessUnhide Passwords shows the contents of password fields in cleartext (instead of the asterisks), to make that process a bit easier.
Download (0.010MB)
Added: 2007-07-24 License: MPL (Mozilla Public License) Price:
695 downloads
ChangePassword 0.9
ChangePassword changes passwd, Samba, and Squid passwords. more>>
ChangePassword modifies the passwords of passwd, Samba, and Squid through the Web. All passwords are syncronized and changed in real time through browsers like Mozilla, Netscape, IE, Opera, and others.
<<less Download (0.21MB)
Added: 2005-04-04 License: GPL (GNU General Public License) Price:
1668 downloads
B::Generate 1.06
B::Generate is a Perl module which you can create your own op trees. more>>
B::Generate is a Perl module which you can create your own op trees.
SYNOPSIS
use B::Generate;
# Do nothing, slowly.
CHECK {
my $null = new B::OP("null",0);
my $enter = new B::OP("enter",0);
my $cop = new B::COP(0, "hiya", 0);
my $leave = new B::LISTOP("leave", 0, $enter, $null);
$leave->children(3);
$enter->sibling($cop);
$enter->next($cop);
$cop->sibling($null);
$null->next($leave);
$cop->next($leave);
# Tell Perl where to find our tree.
B::main_root($leave);
B::main_start($enter);
}
WARNING
This module will create segmentation faults if you dont know how to use it properly. Further warning: sometimes I dont know how to use it properly.
There are lots of other methods and utility functions, but they are not documented here. This is deliberate, rather than just through laziness. You are expected to have read the Perl and XS sources to this module before attempting to do anything with it.
Patches welcome.
Malcolm Beatties B module allows you to examine the Perl op tree at runtime, in Perl space; its the basis of the Perl compiler. But what it doesnt let you do is manipulate that op tree: it wont let you create new ops, or modify old ones. Now you can.
Well, if youre intimately familiar with Perls internals, you can.
B::Generate turns Bs accessor methods into get-set methods. Hence, instead of merely saying
$op2 = $op->next;
you can now say
$op->next($op2);
to set the next op in the chain. It also adds constructor methods to create new ops. This is where it gets really hairy.
new B::OP ( type, flags )
new B::UNOP ( type, flags, first )
new B::BINOP ( type, flags, first, last )
new B::LOGOP ( type, flags, first, other )
new B::LISTOP ( type, flags, first, last )
new B::COP ( flags, name, first )
In all of the above constructors, type is either a numeric value representing the op type (62 is the addition operator, for instance) or the name of the op. ("add")
(Incidentally, if you know about custom ops and have registed them properly with the interpreter, you can create custom ops by name: new B::OP("mycustomop",0), or whatever.)
first, last and other are ops to be attached to the current op; these should be B::OP objects. If you havent created the ops yet, dont worry; give a false value, and fill them in later:
$x = new B::UNOP("negate", 0, undef);
# ... create some more ops ...
$x->first($y);
In addition, one may create a new nextstate operator with
newstate B::op ( flags, label, op)
in the same manner as B::COP::new - this will also, however, add the lineseq op.
Finally, you can set the main root and the starting op by passing ops to the B::main_root and B::main_start functions.
This module can obviously be used for all sorts of fun purposes. The best one will be in conjuction with source filters; have your source filter parse an input file in a foreign language, create an op tree for it and get Perl to execute it. Then email me and tell me how you did it. And why.
<<lessSYNOPSIS
use B::Generate;
# Do nothing, slowly.
CHECK {
my $null = new B::OP("null",0);
my $enter = new B::OP("enter",0);
my $cop = new B::COP(0, "hiya", 0);
my $leave = new B::LISTOP("leave", 0, $enter, $null);
$leave->children(3);
$enter->sibling($cop);
$enter->next($cop);
$cop->sibling($null);
$null->next($leave);
$cop->next($leave);
# Tell Perl where to find our tree.
B::main_root($leave);
B::main_start($enter);
}
WARNING
This module will create segmentation faults if you dont know how to use it properly. Further warning: sometimes I dont know how to use it properly.
There are lots of other methods and utility functions, but they are not documented here. This is deliberate, rather than just through laziness. You are expected to have read the Perl and XS sources to this module before attempting to do anything with it.
Patches welcome.
Malcolm Beatties B module allows you to examine the Perl op tree at runtime, in Perl space; its the basis of the Perl compiler. But what it doesnt let you do is manipulate that op tree: it wont let you create new ops, or modify old ones. Now you can.
Well, if youre intimately familiar with Perls internals, you can.
B::Generate turns Bs accessor methods into get-set methods. Hence, instead of merely saying
$op2 = $op->next;
you can now say
$op->next($op2);
to set the next op in the chain. It also adds constructor methods to create new ops. This is where it gets really hairy.
new B::OP ( type, flags )
new B::UNOP ( type, flags, first )
new B::BINOP ( type, flags, first, last )
new B::LOGOP ( type, flags, first, other )
new B::LISTOP ( type, flags, first, last )
new B::COP ( flags, name, first )
In all of the above constructors, type is either a numeric value representing the op type (62 is the addition operator, for instance) or the name of the op. ("add")
(Incidentally, if you know about custom ops and have registed them properly with the interpreter, you can create custom ops by name: new B::OP("mycustomop",0), or whatever.)
first, last and other are ops to be attached to the current op; these should be B::OP objects. If you havent created the ops yet, dont worry; give a false value, and fill them in later:
$x = new B::UNOP("negate", 0, undef);
# ... create some more ops ...
$x->first($y);
In addition, one may create a new nextstate operator with
newstate B::op ( flags, label, op)
in the same manner as B::COP::new - this will also, however, add the lineseq op.
Finally, you can set the main root and the starting op by passing ops to the B::main_root and B::main_start functions.
This module can obviously be used for all sorts of fun purposes. The best one will be in conjuction with source filters; have your source filter parse an input file in a foreign language, create an op tree for it and get Perl to execute it. Then email me and tell me how you did it. And why.
Download (0.012MB)
Added: 2006-07-04 License: Perl Artistic License Price:
1207 downloads
Gnome Password Generator 1.5
Gnome Password Generator is a GUI based secure password generator. more>>
Gnome Password Generator is a GUI based secure password generator. The project allows the user to generate a specified number of random passwords of a specified length. The program requires Python version 2.4 or greater, PyGTK version 2.4 or greater, and Gnome-Python for Gnome 2.
<<less Download (0.022MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
812 downloads
Password Save 0.5
Password Save extension brings up a plain text listing of your passwords in a browser window. more>>
Password Save extension brings up a plain text listing of your passwords in a browser window that can be easily copy-pasted or saved to the hard-drive.
Some javascript warning fixes and a bit of debugging code for helping people that the extension doesnt work for (Email me if you get a blank screen and have some free time to help me debug and well solve this problem once and for all)
In Preferences, go to Privacy => Passwords. When you click View Saved Passwords, there will be an added "Dump Passwords" button. Clicking this will pop up a new browser window with the saved passwords which can easily be saved, printed, or copy-pasted into another location.
This extension will only work (as is) on the released 1.5beta1 - 1.5beta2. The intall.rdf can be tweaked to get it to install fine on any recent nightly or the Deer Park Alphas. It -=can not=- be tweaked to work on 1.0. Sorry!
<<lessSome javascript warning fixes and a bit of debugging code for helping people that the extension doesnt work for (Email me if you get a blank screen and have some free time to help me debug and well solve this problem once and for all)
In Preferences, go to Privacy => Passwords. When you click View Saved Passwords, there will be an added "Dump Passwords" button. Clicking this will pop up a new browser window with the saved passwords which can easily be saved, printed, or copy-pasted into another location.
This extension will only work (as is) on the released 1.5beta1 - 1.5beta2. The intall.rdf can be tweaked to get it to install fine on any recent nightly or the Deer Park Alphas. It -=can not=- be tweaked to work on 1.0. Sorry!
Download (0.005MB)
Added: 2006-04-09 License: GPL (GNU General Public License) Price:
738 downloads
Ruby/Password 0.5.3
Ruby/Password is a suite of password handling methods for Ruby. more>>
Ruby/Password is a suite of password handling methods for Ruby.
It supports the manual entry of passwords from the keyboard in both buffered and unbuffered modes, random password generation, password strength checking, phonemic password generation (for easy memorisation by human-beings) and the encryption of passwords.
CrackLib makes literally hundreds of tests to determine whether youve chosen a bad password.
- It tries to generate words from your username and GECOS entry and tries to match them against the password youve chosen.
- It checks for simplistic patterns.
- It then tries to reverse-engineer your password into a dictionary word, and searches for it in your dictionary.
- after all that, its PROBABLY a safe(-ish) password. 8-)
The target audience for this library is system administrators who need to write Ruby programs that prompt for, generate, verify and encrypt passwords.
<<lessIt supports the manual entry of passwords from the keyboard in both buffered and unbuffered modes, random password generation, password strength checking, phonemic password generation (for easy memorisation by human-beings) and the encryption of passwords.
CrackLib makes literally hundreds of tests to determine whether youve chosen a bad password.
- It tries to generate words from your username and GECOS entry and tries to match them against the password youve chosen.
- It checks for simplistic patterns.
- It then tries to reverse-engineer your password into a dictionary word, and searches for it in your dictionary.
- after all that, its PROBABLY a safe(-ish) password. 8-)
The target audience for this library is system administrators who need to write Ruby programs that prompt for, generate, verify and encrypt passwords.
Download (0.031MB)
Added: 2006-03-03 License: GPL (GNU General Public License) Price:
1333 downloads
Data::Generate 0.01
Data::Generate allows you to create various types of synthetic data by parsing regex-like data creation rules. more>>
Data::Generate allows you to create various types of synthetic data by parsing "regex-like" data creation rules.
This module generates data by parsing given text statements (data creation rules). These statements are flexible and powerful regex-like way to control the production of synthetic data. Think about a program that instead of selecting data which matches a regex filter expression, produces it. For example, from the rule [a-c], the generator would produce the array a,b,c. The module works as following:
Specify data creation rules.
my $generator= Data::Generate::parse(VC(24) [0-9][2-3]);
At this step first you define one kind of output datatype (for ex. VC(24)= "output is a string with max length 24") and then with the rest of the expression define what it should look like. If parsing is successful a Data Generator object is instantiated.
Get data
my $Data= $generator->get_unique_data(10);
To really get the data, users must call the get_unique_data method by indicating the desired number of output values. The generator returns the values contained in an array reference. Please remark that output format is fixed according to the data type.
<<lessThis module generates data by parsing given text statements (data creation rules). These statements are flexible and powerful regex-like way to control the production of synthetic data. Think about a program that instead of selecting data which matches a regex filter expression, produces it. For example, from the rule [a-c], the generator would produce the array a,b,c. The module works as following:
Specify data creation rules.
my $generator= Data::Generate::parse(VC(24) [0-9][2-3]);
At this step first you define one kind of output datatype (for ex. VC(24)= "output is a string with max length 24") and then with the rest of the expression define what it should look like. If parsing is successful a Data Generator object is instantiated.
Get data
my $Data= $generator->get_unique_data(10);
To really get the data, users must call the get_unique_data method by indicating the desired number of output values. The generator returns the values contained in an array reference. Please remark that output format is fixed according to the data type.
Download (0.025MB)
Added: 2007-03-31 License: Perl Artistic License Price:
937 downloads
Generate Numly Copyright 1.3
Generate Numly Copyright is a Firefox extension that registers documents and blogs for Numly copyright. more>>
Generate Numly Copyright is a Firefox extension that registers documents and blogs for Numly copyright. Numly Numbers are unique identifiers of electronic media and recognized worldwide by electronic publishing companies and electronic content providers. Numly Numbers are simple and quick to generate and serve as branded identifier for individuals or companies authoring or distributing electronic content and media.
<<less Download (0.006MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
878 downloads
Kmail password decrypter
Kmail password decrypter can recover you Kmail password if you lost it. more>>
Kmail password decrypter can recover you Kmail password if you lost it.
Lost your KMail password? Use this tool that I whipped up in a jiffy.
<<lessLost your KMail password? Use this tool that I whipped up in a jiffy.
Download (0.003MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1215 downloads
Class::Generate 1.09
Class::Generate is a Perl module that can generate Perl class hierarchies. more>>
Class::Generate is a Perl module that can generate Perl class hierarchies.
SYNOPSIS
use Class::Generate qw(class subclass delete_class);
# Declare class Class_Name, with the following types of members:
class
Class_Name => [
s => $, # scalar
a => @, # array
h => %, # hash
c => Class, # Class
c_a => @Class, # array of Class
c_h => %Class, # hash of Class
&m => body, # method
];
# Allocate an instance of class_name, with members initialized to the
# given values (pass arrays and hashes using references).
$obj = Class_Name->new ( s => scalar,
a => [ values ],
h => { key1 => v1, ... },
c => Class->new,
c_a => [ Class->new, ... ],
c_h => [ key1 => Class->new, ... ] );
# Scalar type accessor:
$obj->s($value); # Assign $value to member s.
$member_value = $obj->s; # Access members value.
# (Class) Array type accessor:
$obj->a([value1, value2, ...]); # Assign whole array to member.
$obj->a(2, $value); # Assign $value to array member 2.
$obj->add_a($value); # Append $value to end of array.
@a = $obj->a; # Access whole array.
$ary_member_value = $obj->a(2); # Access array member 2.
$s = $obj->a_size; # Return size of array.
$value = $obj->last_a; # Return last element of array.
# (Class) Hash type accessor:
$obj->h({ k_1=>v1, ..., k_n=>v_n }) # Assign whole hash to member.
$obj->h($key, $value); # Assign $value to hash member $key.
%hash = $obj->h; # Access whole hash.
$hash_member_value = $obj->h($key); # Access hash member value $key.
$obj->delete_h($key); # Delete slot occupied by $key.
@keys = $obj->h_keys; # Access keys of member h.
@values = $obj->h_values; # Access values of member h.
$another = $obj->copy; # Copy an object.
if ( $obj->equals($another) ) { ... } # Test equality.
subclass s => [ ], -parent => class_name;
The Class::Generate package exports functions that take as arguments a class specification and create from these specifications a Perl 5 class. The specification language allows many object-oriented constructs: typed members, inheritance, private members, required members, default values, object methods, class methods, class variables, and more.
CPAN contains similar packages. Why another? Because object-oriented programming, especially in a dynamic language like Perl, is a complicated endeavor. I wanted a package that would work very hard to catch the errors you (well, I anyway) commonly make. I wanted a package that could help me enforce the contract of object-oriented programming. I also wanted it to get out of my way when I asked.
<<lessSYNOPSIS
use Class::Generate qw(class subclass delete_class);
# Declare class Class_Name, with the following types of members:
class
Class_Name => [
s => $, # scalar
a => @, # array
h => %, # hash
c => Class, # Class
c_a => @Class, # array of Class
c_h => %Class, # hash of Class
&m => body, # method
];
# Allocate an instance of class_name, with members initialized to the
# given values (pass arrays and hashes using references).
$obj = Class_Name->new ( s => scalar,
a => [ values ],
h => { key1 => v1, ... },
c => Class->new,
c_a => [ Class->new, ... ],
c_h => [ key1 => Class->new, ... ] );
# Scalar type accessor:
$obj->s($value); # Assign $value to member s.
$member_value = $obj->s; # Access members value.
# (Class) Array type accessor:
$obj->a([value1, value2, ...]); # Assign whole array to member.
$obj->a(2, $value); # Assign $value to array member 2.
$obj->add_a($value); # Append $value to end of array.
@a = $obj->a; # Access whole array.
$ary_member_value = $obj->a(2); # Access array member 2.
$s = $obj->a_size; # Return size of array.
$value = $obj->last_a; # Return last element of array.
# (Class) Hash type accessor:
$obj->h({ k_1=>v1, ..., k_n=>v_n }) # Assign whole hash to member.
$obj->h($key, $value); # Assign $value to hash member $key.
%hash = $obj->h; # Access whole hash.
$hash_member_value = $obj->h($key); # Access hash member value $key.
$obj->delete_h($key); # Delete slot occupied by $key.
@keys = $obj->h_keys; # Access keys of member h.
@values = $obj->h_values; # Access values of member h.
$another = $obj->copy; # Copy an object.
if ( $obj->equals($another) ) { ... } # Test equality.
subclass s => [ ], -parent => class_name;
The Class::Generate package exports functions that take as arguments a class specification and create from these specifications a Perl 5 class. The specification language allows many object-oriented constructs: typed members, inheritance, private members, required members, default values, object methods, class methods, class variables, and more.
CPAN contains similar packages. Why another? Because object-oriented programming, especially in a dynamic language like Perl, is a complicated endeavor. I wanted a package that would work very hard to catch the errors you (well, I anyway) commonly make. I wanted a package that could help me enforce the contract of object-oriented programming. I also wanted it to get out of my way when I asked.
Download (0.052MB)
Added: 2007-07-31 License: Perl Artistic License Price:
815 downloads
Oracle Password Repository 1.1.9 Beta
Oracle Password Repository is a Unix-based secure tool for storage & retrieval of Oracle database passwords. more>>
Oracle Password Repository is a Unix-based secure tool for storage & retrieval of Oracle database passwords.
By replacing hardcoded passwords in scripts with a call to OPR, it helps to keep your Oracle environment secure and easier to maintain.
Enhancements:
- The INSTALL file informed that you need to be able to see the oracle oci libraries, but it fact you need these only at runtime. You do need access to the OCI headers files during runtime though. But these rights are enabled by default oracle installations.
- opr now uses libltdl, a dynamic loading abstraction, to tackle compiling issues on (for example) hp-ux.
- added file locking on the repository file.
- fixed 2 strncat invocation bugs.
<<lessBy replacing hardcoded passwords in scripts with a call to OPR, it helps to keep your Oracle environment secure and easier to maintain.
Enhancements:
- The INSTALL file informed that you need to be able to see the oracle oci libraries, but it fact you need these only at runtime. You do need access to the OCI headers files during runtime though. But these rights are enabled by default oracle installations.
- opr now uses libltdl, a dynamic loading abstraction, to tackle compiling issues on (for example) hp-ux.
- added file locking on the repository file.
- fixed 2 strncat invocation bugs.
Download (0.63MB)
Added: 2006-01-06 License: GPL (GNU General Public License) Price:
1388 downloads
Password Hasher 1.0.4
Password Hasher enables a good security practice. more>>
Password Hasher enables a good security practice.
What good security practice demands:
- Strong passwords that are hard to guess.
- Different passwords at each site.
- Periodically changing existing passwords.
Why you probably arent practicing good security:
- Strong passwords are difficult to remember.
- Juggling a multitude of passwords is a pain.
- Updating passwords compounds the memorization problem.
Main features:
- Automatically generates strong passwords.
- One master key produces different passwords at many sites.
- Quickly upgrade passwords by "bumping" the site tag.
- Upgrade a master key without updating all sites at once.
- Supports different length passwords.
- Supports special requirements, such as digits and punctuation.
- Supports restricting a hash word to not use special characters. (New!)
- Saves all data to the browsers secure password database.
- Generates a portable HTML page with your site tags and option settings that allows you to generate your hash words in any browser on any machine without the extension installed. (New!)
- Can add marker buttons to unmask passwords on any web site. (New!)
- Extremely simple to use!
<<lessWhat good security practice demands:
- Strong passwords that are hard to guess.
- Different passwords at each site.
- Periodically changing existing passwords.
Why you probably arent practicing good security:
- Strong passwords are difficult to remember.
- Juggling a multitude of passwords is a pain.
- Updating passwords compounds the memorization problem.
Main features:
- Automatically generates strong passwords.
- One master key produces different passwords at many sites.
- Quickly upgrade passwords by "bumping" the site tag.
- Upgrade a master key without updating all sites at once.
- Supports different length passwords.
- Supports special requirements, such as digits and punctuation.
- Supports restricting a hash word to not use special characters. (New!)
- Saves all data to the browsers secure password database.
- Generates a portable HTML page with your site tags and option settings that allows you to generate your hash words in any browser on any machine without the extension installed. (New!)
- Can add marker buttons to unmask passwords on any web site. (New!)
- Extremely simple to use!
Download (0.058MB)
Added: 2007-04-07 License: MPL (Mozilla Public License) Price:
1028 downloads
Data::Password::Manager 0.02
Data::Password::Manager is a Perl module to generate, check, manage crypt - des passwords. more>>
Data::Password::Manager is a Perl module to generate, check, manage crypt - des passwords.
SYNOPSIS
use Data::Password::Manager qw(
pw_gen
pw_valid
pw_obscure
pw_clean
pw_get
);
$password = pw_gen($cleartext);
$ok = pw_valid($cleartxt,$password);
$clean_text = pw_clean($dirty_text);
($code,$text) = $pw_obscure($newpass,$oldpass,$min_len);
$passwd = pw_get($user,$passwd_file,$error);
$password = pw_gen($cleartext);
Generate a 13 character DES password string from clear text
input: string<<less
SYNOPSIS
use Data::Password::Manager qw(
pw_gen
pw_valid
pw_obscure
pw_clean
pw_get
);
$password = pw_gen($cleartext);
$ok = pw_valid($cleartxt,$password);
$clean_text = pw_clean($dirty_text);
($code,$text) = $pw_obscure($newpass,$oldpass,$min_len);
$passwd = pw_get($user,$passwd_file,$error);
$password = pw_gen($cleartext);
Generate a 13 character DES password string from clear text
input: string<<less
Download (0.013MB)
Added: 2007-02-20 License: Perl Artistic License Price:
978 downloads
MyPasswordSafe 20061216
MyPasswordSafe is a straight-forward, easy-to-use password manager that maintains compatibility with Password Safe files. more>>
MyPasswordSafe is a straight-forward, easy-to-use password manager. MyPasswordSafe maintains compatibility with Password Safe files.
Main features:
- Safes are encrypted when they are stored to disk.
- Passwords never have to be seen, because they are copied to the clipboard
- Random passwords can be generated.
- Window size, position, and column widths are remembered.
- Passwords remain encrypted until they need to be decrypted at the dialog and file levels.
- A safe can be made active so it will always be opened when MyPasswordSafe starts.
- Supports Unicode in the safes
- Languages supported: English and French
Enhancements:
- A place where MyPasswordSafe wasnt 64-bit clean because it used a "long" where it should have used an "int" was fixed.
<<lessMain features:
- Safes are encrypted when they are stored to disk.
- Passwords never have to be seen, because they are copied to the clipboard
- Random passwords can be generated.
- Window size, position, and column widths are remembered.
- Passwords remain encrypted until they need to be decrypted at the dialog and file levels.
- A safe can be made active so it will always be opened when MyPasswordSafe starts.
- Supports Unicode in the safes
- Languages supported: English and French
Enhancements:
- A place where MyPasswordSafe wasnt 64-bit clean because it used a "long" where it should have used an "int" was fixed.
Download (0.65MB)
Added: 2006-12-17 License: GPL (GNU General Public License) Price:
1042 downloads
Magic Password Generator 1.4
Magic Password Generator is an extension which magically makes custom passwords for each website. more>>
Magic Password Generator is an extension which magically makes custom passwords for each website.
Right click the toolbar, and click customize, to get the button to activate the extension!
<<lessRight click the toolbar, and click customize, to get the button to activate the extension!
Download (0.026MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
853 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above generate passwords search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed