Log os used passwords


Author
Message
Marcelo Blank
Marcelo Blank
StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)
Group: StrataFrame Users
Posts: 0, Visits: 414
Hi All,

One again, for compliance´s propouses, I need to have a log of the last ten used passwords of each user.

Is it native of the tool ? How can I get it ?

Regards
Replies
Marcelo Blank
Marcelo Blank
StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)
Group: StrataFrame Users
Posts: 0, Visits: 414
Great.

That´s what I tought.

Thanks



Marcelo Blank
Marcelo Blank
StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)StrataFrame User (174 reputation)
Group: StrataFrame Users
Posts: 0, Visits: 414
That´s it.:

1 - Turn the class EncryptedData public 

''' <summary>
        ''' Data processing of Users.us_Data field
        ''' </summary>
        ''' <remarks></remarks>
        Public Class EncryptedData

2 - Compile the SFSUsersBO dll

3 - replace the SFSUsersBO dll in your project

4 - Add this code ...

SFSPreferencesBO s = new SFSPreferencesBO();

s.FillAll(ProjectPK); 

SFSUsersBO u = new SFSUsersBO();

u.FillByPrimaryKey(UserPK); 

            for (int i = 0; i <= u.us_PasswordHistory.Count-1; i++)
            { 
                MessageBox.Show(u.us_PasswordHistory[i].ToString());

            }

5 - Well done.

Thanks a lot
StrataFrame Team
S
StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)StrataFrame Developer (6.5K reputation)
Group: StrataFrame Developers
Posts: 3K, Visits: 2.5K
Glad that worked for you Marcelo Smile
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...





Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search