Random password generator: Difference between revisions

From Scriptwiki
Jump to navigation Jump to search
mNo edit summary
 
m removed white rules
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This script will allow you to generate a random password, of required length and using characters you want to.
This script will allow you to generate a random password of required length and using characters you want to.


; Written by Vliedel
; Contact at irc.quakenet.org -> #help.script
  ; Usage: $pwgen(length,used characters)
  ; Usage: $pwgen(length,used characters)
  ; Examples
  ; Examples
  ; $pwgen(10,a-z)
  ; $pwgen(10,a-z A-Z)
  ; $pwgen(20,a-z A-Z 0-9)
; $pwgen(30,0-5 ! . @)  
  ; $pwgen(17,0-9 $chr(36) $+ - $+ $chr(41))
  ; $pwgen(20,a-z 0-9 0-9)
 
  ; $pwgen(17,0-9 [[$chr]](36) $+ - $+ $chr(41))
  alias pwgen {
; **Note**
; first we check if this alias is used as identifier
; if a space (chr 32) is in the used characters, the returned password could be too short
   if (!$isid) { return }
; because mirc cuts of double spaces and spaces at the beginning and end of the returned password
; the next part will fill &chars with characters that can be picked to make the password
;
   
; we cycle the different sets of "used characters"
[[alias]] pwgen {
   var %i = $numtok($2,32)
  ; first we check if this alias is used as identifier
   while (%i > 0) {
   if (![[$isid]]) { [[return]] }
     var %set = $gettok($2,%i,32)
  ; also check if the length is not 0
; if the length of the current set is 3, we assume its the right syntax
  if ([[$int]]([[$1-|$1]]) == 0) { return }  
     if ($len(%set) == 3) {
  ; the next part will fill &chars with characters that can be picked to make the password
; get the ascii values of the two characters
  ;
      var %asc1 = $asc($left(%set,1)) , %asc2 = $asc($right(%set,1))
  ; we cycle the different sets of "used characters"
      var %j = $iif(%asc1 < %asc2,%asc1,%asc2) , %max = $iif(%asc1 < %asc2,%asc2,%asc1)
   [[var]] %i = [[$numtok]]($2,32)
; we will loop from the smallest ascii number to the largest
   [[while]] (%i > 0) {
      while (%j <= %max) {
     var %set = [[$gettok]]($2,%i,32)
; we add the ascii value to the &chars binvar
     ; get the ascii values of the two characters
        bset &chars $calc($bvar(&chars,0) + 1) %j
    var %asc1 = [[$asc]]([[$left]](%set,1)) , %asc2 = $asc([[$right]](%set,1))
        inc %j
    var %j = [[$iif]](%asc1 < %asc2,%asc1,%asc2) , %max = $iif(%asc1 < %asc2,%asc2,%asc1)
      }
    ; we will loop from the smallest ascii number to the largest
    while (%j <= %max) {
      ; we add the ascii value to the &chars binvar
      ; we use a binvar so we won't get troubles with the maximum length of a variable
      [[bset]] &chars [[$calc]]([[$bvar]](&chars,0) + 1) %j
      [[inc]] %j
     }
     }
     dec %i
     [[dec]] %i
   }
   }
;
  ; check if &chars is not empty
; now we filled &chars we randomly pick characters out of &chars to make the password
  if ($bvar(&chars,0) == 0) { return }
   var %i = $iif($abs($int($1)) > 900,900,$v1)
  ;
; we do this $1 times, as long as its not larger then 900
  ; now we filled &chars we randomly pick characters out of &chars to make the password
; (wich is approximate the limit of commands)
   var %i = $iif([[$abs]]($int($1)) > 900,900,[[$v1]])
  ; we do this $1 times, as long as its not larger then 900
  ; (wich is approximate the limit of commands)
   while (%i > 0) {
   while (%i > 0) {
     var %pw = %pw $+ $mid(%chars,$rand(1,$len(%chars)),1)
     ; again we use a binvar so we can add spaces
    [[bcopy]] &pw %i &chars $rand(1,$bvar(&chars,0)) 1
     dec %i
     dec %i
   }
   }
; and its done
  ; to avoid the "space bug" (see the note), you may want to use the binvar
   return %pw
  ; in that case we return the binvar name, uncomment the next line
   ; return &pw
  return $bvar(&pw,1,$bvar(&pw,0)).text
  }
  }
[[Category:Script Archive]]

Latest revision as of 13:15, 24 March 2007

This script will allow you to generate a random password of required length and using characters you want to.

; Written by Vliedel
; Contact at irc.quakenet.org -> #help.script
; Usage: $pwgen(length,used characters)
; Examples
; $pwgen(10,a-z A-Z)
; $pwgen(30,0-5 ! . @) 
; $pwgen(20,a-z 0-9 0-9)
; $pwgen(17,0-9 $chr(36) $+ - $+ $chr(41))
; **Note**
; if a space (chr 32) is in the used characters, the returned password could be too short
; because mirc cuts of double spaces and spaces at the beginning and end of the returned password 


alias pwgen {
  ; first we check if this alias is used as identifier
  if (!$isid) { return }
  ; also check if the length is not 0
  if ($int($1) == 0) { return }   
  ; the next part will fill &chars with characters that can be picked to make the password
  ;
  ; we cycle the different sets of "used characters"
  var %i = $numtok($2,32)
  while (%i > 0) {
    var %set = $gettok($2,%i,32)
    ; get the ascii values of the two characters
    var %asc1 = $asc($left(%set,1)) , %asc2 = $asc($right(%set,1))
    var %j = $iif(%asc1 < %asc2,%asc1,%asc2) , %max = $iif(%asc1 < %asc2,%asc2,%asc1)
    ; we will loop from the smallest ascii number to the largest
    while (%j <= %max) {
      ; we add the ascii value to the &chars binvar
      ; we use a binvar so we won't get troubles with the maximum length of a variable
      bset &chars $calc($bvar(&chars,0) + 1) %j
      inc %j
    }
    dec %i
  }
  ; check if &chars is not empty
  if ($bvar(&chars,0) == 0) { return }
  ;
  ; now we filled &chars we randomly pick characters out of &chars to make the password
  var %i = $iif($abs($int($1)) > 900,900,$v1)
  ; we do this $1 times, as long as its not larger then 900
  ; (wich is approximate the limit of commands)
  while (%i > 0) {
    ; again we use a binvar so we can add spaces
    bcopy &pw %i &chars $rand(1,$bvar(&chars,0)) 1
    dec %i
  }
  ; to avoid the "space bug" (see the note), you may want to use the binvar
  ; in that case we return the binvar name, uncomment the next line
  ; return &pw
  return $bvar(&pw,1,$bvar(&pw,0)).text
}