Java plugin is v7+ only, right? What about the Perl?

Thanks,


Gary Opela, Jr

Sr. Remedy Developer

Leader Communications, Inc.

405 736 3211


-----Original Message-----
From: Action Request System discussion list(ARSList)
[mailto:[EMAIL PROTECTED] On Behalf Of Grooms, Frederick W
Sent: Tuesday, November 13, 2007 11:29 AM
To: arslist@ARSLIST.ORG
Subject: Re: Looking for a password generator

You could also use the Perl plugin filter as well 

-----Original Message-----
From: Action Request System discussion list(ARSList)
[mailto:[EMAIL PROTECTED] On Behalf Of Roys, Eric
Sent: Tuesday, November 13, 2007 11:15 AM
To: arslist@ARSLIST.ORG
Subject: Re: Looking for a password generator

Gary, 

You could always use the java filter plugin which will allow you to use
the random function via native java for this if you are so inclined.

-Eric
        
-----Original Message-----
From: Action Request System discussion list(ARSList)
[mailto:[EMAIL PROTECTED] On Behalf Of Opela, Gary L Contr
OC-ALC/ITMA
Sent: Tuesday, November 13, 2007 11:08 AM
To: arslist@ARSLIST.ORG
Subject: Re: Looking for a password generator

It sure would be nice to have a Random function in Remedy, such as in a
set fields action, set field1 = RANDOM([A-Z],[0-9]) would set field1 to
some random character A-Z or 0 - 9. This would be great because then you
could specify [0-3] or whatever, then randomly pull an A-Z if the field1
was 0, a-z if it were 1, [0-9] if it were 2, [<special character>] if it
were 3. This would allow you to build complex passwords with rules such
as:

MUST include at least 1 A-Z, 1 a-z, 1 0-9, 1 special character, length
8, and you could enforce this by changing how you generate the variable
field1 listed above, for instance, after you generate a A-Z, if a value
of 0 in field1 told you to do an A-Z, you could next set field1 =
RANDOM([1-3]) to ensure that you captured all of the different types of
characters on the keyboards.

This would be an awesome feature to have.

I'm thinking something like:

Set field2 = ""

Begin guide

Set field1 = RANDOM([0-3])
IF field1 = 0
        {
        set field2 = field2 + RANDOM([A-Z])
        set field3 = "1,2,3"
        }
ELSE
IF field1 = 1
        {
        set field2 = field2 + RANDOM([a-z])
        set field3 = "1,2,3"
        }
ELSE
IF field1 = 2
        {
        set field2 = field2 + RANDOM([0-9])
        set field3 = "0,1,3"
        }
ELSE
IF field1 = 3
        {
        SET field2 = field2 + RANDOM([EMAIL PROTECTED]&*()_-+={}|\?/>.<,])
        Set field3 = "0,1,2"
        }
Set field1 = RANDOM([EXTERNAL($field3$)) Loop guide until LENGTH(field2)
> whatever

Thanks,


Gary Opela, Jr

Sr. Remedy Developer

Leader Communications, Inc.

405 736 3211


-----Original Message-----
From: Action Request System discussion list(ARSList)
[mailto:[EMAIL PROTECTED] On Behalf Of Joe D'Souza
Sent: Tuesday, November 13, 2007 10:56 AM
To: arslist@ARSLIST.ORG
Subject: Re: Looking for a password generator

**
I did use what Dave described once in the past in fact and it works
pretty good.
 
Just a suggestion, for security purposes just so that the value is not
stored, create the guid in a display only field and use that field to
notify the user of the password. So when the password is set it is set
and stored as an encrypted value but the clear value is emailed to the
user.
 
Also its usually the end few characters of the guid that changes, so do
not use the left side of that string but rather the right side of it to
make sure that the same password is not generated for 2 consecutive
users.



Joe D'Souza


        -----Original Message-----
        From: Action Request System discussion list(ARSList)
[mailto:[EMAIL PROTECTED] Behalf Of Susan Palmer
        Sent: Tuesday, November 13, 2007 11:36 AM
        To: arslist@ARSLIST.ORG
        Subject: Re: Looking for a password generator
        
        
        ** 
        Hi Dave,
         
        Interesting concept.  Ugly is good.  I didn't know we could tap
into the guid generator.  I see how it works on Email templates but will
have to figure out how it could work for me.
         
        Thanks for the suggestion.
         
        Susan
        
        
        On Nov 12, 2007 6:38 PM, Shellman, David
<[EMAIL PROTECTED]> wrote:
        

                Susan,
                
                It makes a real ugly password but would the guid
generator work.  You could trim it to a set length that would be shorter
than the original length of the guid.
                
                Dave
                -------------------------- 
                [EMAIL PROTECTED] (Wireless) 


                ----- Original Message -----
                From: Action Request System discussion list(ARSList)
<arslist@ARSLIST.ORG>
                To: arslist@ARSLIST.ORG <arslist@ARSLIST.ORG>
                Sent: Mon Nov 12 18:28:36 2007
                Subject: Looking for a password generator
                
                **
                Hi Everyone,
                
                I'm looking for a password generator.  I need to create
password values to set into two fields via an active link button.  These
are not used for Remedy logins.  I downloaded the password generator on
Gidd's site but it only does alpha/numeric with no special characters.
It has to be something I can use with the User Tool, not the web tool.
I'd really like to automate it.  Click the button and the field has the
password ... whaalaa.  
                
                Any suggestions would be welcome!  Thanks for your help
...
                
                Susan Palmer
                ShopperTrak
                ARS v7.0.1P3
                Oracle 10g
                Windows2003

__20060125_______________________This posting was submitted with HTML in
it___ 

________________________________________________________________________
_______
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org Platinum
Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are"

________________________________________________________________________
_______
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org Platinum
Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are"

________________________________________________________________________
_______
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Platinum Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are"

_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Platinum Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are"

Reply via email to