Results 1 to 3 of 3

Thread: password

  1. #1
    Join Date
    May 2005
    Posts
    141
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default password

    is there a simple way to make the password script shown here

    http://www.dynamicdrive.com/dynamicindex9/password.htm

    to have multiple usernames and passwords.

    thank you

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Define 'simple'. The simplest way I can think of is to configure multiple username/password combos, using the username/password generator. Then modify the script's code to do multiple tests:
    Code:
    //CHANGE THE NUMBERS BELOW TO REFLECT YOUR USERNAMES/PASSWORDS PAIRS
    if((usercode==134603040&&passcode==126906300)||(usercode==134603040&&passcode==126906300)||(usercode==134603040&&passcode==126906300)||(usercode==134603040&&passcode==126906300))
    //CHANGE THE NUMBERS ABOVE TO REFLECT YOUR USERNAMES/PASSWORDS PAIRS
    Syntax is important. The entire test is enclosed in parenthesis and each individual pair is enclosed in its own set of parenthesis as well. Use a different set of numbers for each test as generated.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    May 2005
    Posts
    141
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks you, that is all i needed.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •