Page 1 of 1

Random String Generator

Posted: Wed Jan 31, 2007 5:31 pm
by Gamall
This small program generates random strings made up with the characters you choose. Useful to create passwords and such automatically.

Just edit the .ini file with any brute text editor, such as notepad or wordpad, to alter the behaviour of the program :

Here is the default config file :

Code: Select all

/////////////////////////////
// RANDOM STRING GENERATOR //
//        Gamall           //
/////////////////////////////

// Config file



// The random string will be generated using the following characters :

$ base = ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789

// Some other possible bases... Just comment (//) those which you do not need...

// $ base = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789&é#{([-|è_\ç^à@)]°=+}$£%ù*µ§!:/.,?
// $ base = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789éèàç
// $ base = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
// $ base = " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"

// The random string will have the following length :

% length = 30

// The random string will be written to the following file :

$ output = Randomly_Generated_String.txt

// The following string will be used to "seed" the pseudo-random generation. 
// It would be a good idea to change this string BEFORE you use the program 
// to generate important passwords...

$ seed = "I am the standard seed, PLEASE CHANGE ME !!!!"
The generated string is written on the screen if it's short enough, and always stored in the output file.

You can DOWNLOAD THE PROGRAM HERE (Win 32).

EDIT : Added the "seed" functionnality to make the program more useful from a cryptographical point of view.

Screenshots :
Image
Image

Posted: Thu Feb 01, 2007 12:13 pm
by Beldin
A Quoi qu'ça sert un générateur aléatoire de culottes légères?

Re: Random String Generator

Posted: Thu Feb 01, 2007 4:37 pm
by Gamall
/amslap beldin ;

Gamall wrote:Useful to create passwords and such automatically.
:archange

En fait, c'est très utile pour le fonctionnement interne d'un programme : windows, par exemple, génère en permanence des chaînes (non, rien à voir avec les culottes légères :P) aléatoires pour identifier les processus. PhpBB en génère aussi pour identifier les sessions, etc etc ...


Présenté dans un programme externe, comme c'est le cas ici, ça me sert surtout à générer de beaux mots de passe :fleur Ce programme est juste l'emballage d'une procédure qui tourne(ra) en interne dans un gros programme.

Posted: Thu Feb 01, 2007 9:41 pm
by Beldin
Ok, je me coucherais moins bête d'avoir un lut un truc intelligent.

Sans pour autant l'avoir compris....
C'est pas mon truc l'informatique... définitivement.

Posted: Fri Feb 02, 2007 12:34 am
by Gamall
Y pas grand-chose à comprendre, là :livre


Donc non, tu ne te coucheras pas moins bête :fleur :fleur :fleur :fleur :fleur


:demon

Re: Random String Generator

Posted: Fri Apr 11, 2008 9:46 pm
by Maikoru
Tu as une version de ce script pour linux ?

Re: Random String Generator

Posted: Mon Apr 14, 2008 4:16 pm
by Gamall
Non, mais je peux en faire une.

Mais sous Linux tu as déjà des outils comme APG qui font ça et plus si affinités: (pas testé)

Code: Select all

sudo apt-get install apg
PS: Tu peux aussi simplement faire tourner mon programme sous Wine: c'est comme ça que je fais tourner mon vieux GaTeX sous Linux, par exemple ;)

Re: Random String Generator

Posted: Mon Apr 14, 2008 4:52 pm
by Maikoru
Ah oui ça marche sous wine :D
J'aurais du tester ^^'