Post: Password Generator [Open Source]
12-07-2014, 09:57 PM #1
Dacoco
I void warranties.
(adsbygoogle = window.adsbygoogle || []).push({}); Hi, people are becoming more and more vulnerable as black hats are becoming more and more knowledgeable, so i figured a password generator would help the community out, i am making it open source because people could think im trying to steal their passwords which im not, and for people to learn how to generate strings :p

Picture: You must login or register to view this content.

Download: You must login or register to view this content.

Virus Scan: None needed, open source

Enjoy Happy

The following 9 users say thank you to Dacoco for this useful post:

One, Cain532, flynhigh09, Im Not Boobdidas, Krypton, MymyMODDING, RTE, Smooth, Winter
12-07-2014, 09:58 PM #2
Smooth
< ^ > < ^ >
negged ya hoe
12-08-2014, 12:24 AM #3
Winter
Purple God
    
string getPasswordStrength(string Password = "password") {
string Return = "Password not strong enough";
int Upper = 0;
int Lower = 0;
int Numbers = 0;
int Symbols = 0;

foreach (char cUppwer in Password)
if (Char.IsUpper(cUppwer))
Upper++;
foreach (char cLower in Password)
if (Char.IsLower(cLower))
Lower++;
foreach (char cNumber in Password)
if (Char.IsNumber(cNumber))
Numbers++;
foreach (char cSymbol in Password)
if (Char.IsSymbol(cSymbol))
Symbols++;

if (Upper >= 2 && Password.Length >= 6) {
Return = "Password is okay";
if (Upper >= 2 && Numbers >= 2 && Password.Length >= 6) {
Return = "Password is moderate";
if (Upper >= 2 && Numbers >= 2 && Symbols >= 1 && Password.Length >= 6)
Return = "Password is good";
}
}
else
Return = "Password is not Strong Enough";

return Return;
}


Now quit complaining and add it in. tears

The following user thanked Winter for this useful post:

One
12-08-2014, 01:42 AM #4
photoshopped.

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo