Password Generator
Please Register to submit score.
| Average Score | 4.3 |
| Scores Submitted | 4 |
| Date Added | Jan 03, 2007 |
| Last Updated | Jan 03, 2007 |
| Tags | bot channel editor form generator nick nickname password |
Introduction
For the txt file 'alt' you can add any alt characters that you think would be useful in a password and for the txt file 'numa' add all of the shift number characters.
Once the mIRC script is in your remotes, type /gen.pw
It'll open a custom window and generate a random, uncrackable password. This is my first window script so please don't be harsh ;)
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 4:20 am
Posted on Jan 3, 2007 4:20 am
Very cool, and a great idea! Maybe also saving the generated password in a password-locked file,(but for the file the person chooses a password they can remember, of course) But still, great job!
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 5:45 am
Posted on Jan 3, 2007 5:45 am
ZabuzaMomochi, thanks, but placing it in a compressed password file would need expertise in computer scripting, not mIRC.
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 7:09 am
Posted on Jan 3, 2007 7:09 am
"expertise" in computers? its not hard to add a Zipped password file, just make one tools and add password.
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 8:05 am
Posted on Jan 3, 2007 8:05 am
Yeah, but how could you do that with mIRC?
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 8:59 am
Posted on Jan 3, 2007 8:59 am
Badboys2222, This is not the place to ask, Try the forums.
SyntraxIRC, your right.
SyntraxIRC, your right.
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 10:10 am
Posted on Jan 3, 2007 10:10 am
you would probably need a .dll
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 3:32 pm
Posted on Jan 3, 2007 3:32 pm
QUOTE "uncrackable password" nothing that i know of is uncrackable!Nothing!
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 3:36 pm
Posted on Jan 3, 2007 3:36 pm
Syntaxirc not bad works pretty good.I did how ever notice the timer events in the status window you could use .timer to make them silent so it wont fill up the status window and also on your first @window, It is a @window nothiong fancy needs to be done with it.Other then that not bad.
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 3:45 pm
Posted on Jan 3, 2007 3:45 pm
What's with the timers, you dont have to add that?
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 5:28 pm
Posted on Jan 3, 2007 5:28 pm
I actually like the timer, Caseidon; it gives it a nice feel.
Love the window, and enjoy the script in general. Nice job, SyntaxIRC.
Love the window, and enjoy the script in general. Nice job, SyntaxIRC.
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 5:57 pm
Posted on Jan 3, 2007 5:57 pm
Thanks, and RoninWarrior, mixed number/alpha with alt codes ARE uncrackable unless you use some sort of super password catcher o_O
mIRC Snippet:
Password Generator
Posted on Jan 3, 2007 6:19 pm
Posted on Jan 3, 2007 6:19 pm
I will have to still disagree syntaxirc nothing is safe when it consists of a computer or its programs.
mIRC Snippet:
Password Generator
Posted on Jan 4, 2007 2:37 pm
Posted on Jan 4, 2007 2:37 pm
//say $md5(uncrack me)
mIRC Snippet:
Password Generator
Posted on Jan 5, 2007 11:54 am
Posted on Jan 5, 2007 11:54 am
Hmm, if you want those timers make the command /.timer so you won't see the
'Timer [num] activated.'
'Timer [num] activated.'
mIRC Snippet:
Password Generator
Posted on Jan 13, 2007 9:17 am
Posted on Jan 13, 2007 9:17 am
heh, I'd say thats rediculous, because now the pattern is pretty much known,
$regex(%pass,/[a-z]d.+dD.+d[g-z].+d[a-g]d.+/Si) :x
But other then the never changing pattern dats a cool script :D
You could actually pass through a random number a random amount of times the amount of times would be the length of the outcome string, while each random number will represent either numeric or alphabetic, which would ouput a COMPLETELY random password thus being much more hard to steal
$regex(%pass,/[a-z]d.+dD.+d[g-z].+d[a-g]d.+/Si) :x
But other then the never changing pattern dats a cool script :D
You could actually pass through a random number a random amount of times the amount of times would be the length of the outcome string, while each random number will represent either numeric or alphabetic, which would ouput a COMPLETELY random password thus being much more hard to steal
mIRC Snippet:
Password Generator
Posted on Apr 9, 2008 2:12 pm
Posted on Apr 9, 2008 2:12 pm
"uncrackable password"?? it isnt any information hidden by it. so how can u say its uncrackable. As for the script, this aint very good, like russelreal said the pattern of the script is known. You cannot specify how many chars the pw should be, nor can you use it in a script since there's no return.
Usage: $pass_(A-Z|a-z|0-9,len)
len is option. one thing to notice, the lenght of $1- must be longer then len.
Usage: $pass_(A-Z|a-z|0-9,len)
len is option. one thing to notice, the lenght of $1- must be longer then len.
| Code: |
alias pass_ { if (!$2) { tokenize 32 $1 10 } var %b = 0,%a if (A-Z isincs $1) { %b = $regsubex($str(1,26),/(1)/g,$chr($calc(64 + n))) } if (a-z isincs $1) { %b = %b $+ $regsubex($str(1,26),/(1)/g,$chr($calc(96 + n))) } if (0-9 isin $1) { %b = %b $+ $regsubex($str(1,10),/(1)/g,$chr($calc(47 + n))) } if (%b = 0) { %b = $$1 } %a = $regsubex(%b,/(.)/g,$regml($r(1,$regml(0)))) noop $regex(%a,/(?=(.{ $+ $2 $+ }))/g) return $regml($r(1,$regml(0))) } |
mIRC Snippet:
Password Generator
Posted on Apr 9, 2008 2:13 pm
Posted on Apr 9, 2008 2:13 pm
lol. it removed my escape's..
This should solve it.
[code]
alias pass_ {
if (!$2) { tokenize 32 $1 10 }
var %b = 0,%a
if (A-Z isincs $1) { %b = $regsubex($str(1,26),/(1)/g,$chr($calc(64 + \n))) }
if (a-z isincs $1) { %b = %b $+ $regsubex($str(1,26),/(1)/g,$chr($calc(96 + \n))) }
if (0-9 isin $1) { %b = %b $+ $regsubex($str(1,10),/(1)/g,$chr($calc(47 + \n))) }
if (%b = 0) { %b = $1 }
%a = $regsubex(%b,/(.)/g,$regml($r(1,$regml(0))))
noop $regex(%a,/(?=(.{ $+ $2 $+ }))/g)
return $regml($r(1,$regml(0)))
}
This should solve it.
[code]
alias pass_ {
if (!$2) { tokenize 32 $1 10 }
var %b = 0,%a
if (A-Z isincs $1) { %b = $regsubex($str(1,26),/(1)/g,$chr($calc(64 + \n))) }
if (a-z isincs $1) { %b = %b $+ $regsubex($str(1,26),/(1)/g,$chr($calc(96 + \n))) }
if (0-9 isin $1) { %b = %b $+ $regsubex($str(1,10),/(1)/g,$chr($calc(47 + \n))) }
if (%b = 0) { %b = $1 }
%a = $regsubex(%b,/(.)/g,$regml($r(1,$regml(0))))
noop $regex(%a,/(?=(.{ $+ $2 $+ }))/g)
return $regml($r(1,$regml(0)))
}
mIRC Snippet:
Password Generator
Posted on Apr 9, 2008 3:00 pm
Posted on Apr 9, 2008 3:00 pm
cud use this ..
| Code: |
| alias newpass { var %len = $rand(10,20), %c = 1, %g.pass = $null while (%c <= %len) { var %ln = $rand(1,2) if (%ln = 1) { var %g.pass = %g.pass $+ $rand(a,z) } else { var %g.pass = %g.pass $+ $rand(0,9) } inc %c 1 } echo -a New pass ( $+ %len $+ ) : %g.pass } |
mIRC Snippet:
Password Generator
Posted on Apr 9, 2008 3:42 pm
Posted on Apr 9, 2008 3:42 pm
Or you could just grab some digits of $ticks for an all-number password ;)
mIRC Snippet:
Password Generator
Posted on Apr 9, 2008 9:20 pm
Posted on Apr 9, 2008 9:20 pm
I modified Jonesy44's for my own use, if you do not mind =)
| Code: |
alias genpass { var %c = 1, %rpass while (%c <= 8) { if ($rand(1,2) = 1) { %rpass = %rpass $+ $rand(a,f) } else { %rpass = %rpass $+ $rand(0,9) } inc %c 1 } return %rpass } |







