Random Password Generator [PHP]

  • Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

ZionHD

Leader
Retired Staff
Nov 8, 2014
184
215
53
This is a PHP Version of a Random Password Generator. This will generate random passwords for you. You can change the length, to allow special chars, caps, no caps, and numbers. This has more chars for it to choose from which I forgot to add to the C++ version of it, but oh well.

Code:
<?php
/*
* General purpose of this program is to generate a password for you.
* PHP Version
* Created by ZionHD
* Copyright (c) 2015 Console-Forums
*/

function genChar($numbers, $specials, $caps, $chars) // This will randomly select a character from array
{
    $number = array ( "0", "1", "2", "3", "4", "5", "6", "7", "8", "9");
    $special = array( "!", "@", "#", "$", "%", "^", "&", "*", "\"", ">", "<", "(", ")", "-", "_",  "+", "=", "{", "}", "[", "]", "\\", "|", ":", ";", "'", ",", ".", "?", "/", "~", "`");
    $capsChar = array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z");
    $char = array("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z");
   
    // If any of the variables are false it will  add it to an
    // array
    if (!$numbers) $ignore[] = 0;
    if (!$specials) $ignore[] = 1;
    if (!$caps) $ignore[] = 2;
    if (!$chars) $ignore[] = 3;
   
    $ch = NULL; // Character to return
   
    // Keep trying to select a char, capChar, special, or number until one which has not been ignored this will stop.
    while (1)
    {
        $type = rand(0, 3); // Randomly select 0 - 3
       
        if (!in_array($type, $ignore))
        {
            if ($type == 0)
            {
                $len = count($number) - 1;
                $ran = rand(0, $len);
                $ch = $number[$ran];
                break;
            }
            else if ($type == 1)
            {
                $len = count($special) - 1;
                $ran = rand(0, $len);
                $ch = $special[$ran];
                break;
            }
            else if ($type == 2)
            {
                $len = count($capsChar) - 1;
                $ran = rand(0, $len);
                $ch = $capsChar[$ran];
                break;
            }
            else if ($type == 3)
            {
                $len = count($char) - 1;
                $ran = rand(0, $len);
                $ch = $char[$ran];
                break;
            }
        }
    }
   
    return $ch;
}

$allowNumbers = TRUE;
$allowSpecials = TRUE;
$allowCaps = TRUE;
$allowChars = TRUE;

$passLength = 15; // I recommend having a 15+ character password since it is harder to guess

$inc = 0;

$pass = "";

while ($inc != $passLength)
{
    $ch = genChar($allowNumbers, $allowSpecials, $allowCaps, $allowChars);
    if ($ch !== NULL)
    {
        $pass .= "{$ch}";
        $inc++;
    }
}

$pass = htmlspecialchars($pass); // Sanitize before displaying

printf("Password Generated: <br />%s", $pass);
?>
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ LoveModz:
    Been a very long time.
  • @ QM|T_JinX:
    sup
  • Chat Bot:
    go88club4comm is our newest member. Welcome!
  • Chat Bot:
    QM|T_JinX has joined the room.
  • @ lurch6661:
    zap zap
  • @ QM|T_JinX:
    zap
  • @ lurch6661:
    hey bro hows it going
  • @ QM|T_JinX:
    im good you
  • @ lurch6661:
    good bro just waking up
  • @ QM|T_JinX:
    haha cool
  • @ lurch6661:
    listening to old school lol
  • @ QM|T_JinX:
    nice
  • @ lurch6661:
    old school is best
  • @ QM|T_JinX:
    it is
  • Chat Bot:
    Christo has joined the room.
  • Chat Bot:
    heaven99 is our newest member. Welcome!
  • Chat Bot:
    Glenda is our newest member. Welcome!
  • Chat Bot:
    zandergum015 is our newest member. Welcome!
  • Chat Bot:
    RobertoNoc95 is our newest member. Welcome!
  • @ ⇜HUDSON⇝:
    not been on in years, sad seeing it like this man, was the place to be back in the day, fun times. :weed:hope all old members if they see this are good:peace: now who’s got a console
    +1
  • @ ⇜HUDSON⇝:
    Now who’s got a console ID for me :problemo:
    +1
  • Chat Bot:
    QM|T_JinX has joined the room.
  • @ QM|T_JinX:
    ⇜HUDSON⇝ said:
    Now who’s got a console ID for me :problemo:
    haha
      @ QM|T_JinX: Now who’s got a console ID for me :problemo:haha