Questions tagged [lastpasswordset]
5 questions
2
votes
1 answer
Facebook API Trigger Password Change
I was wondering if anyone knows if the Facebook API is capable of Triggering a flag, to have the user change the password.
Reasoning: PCI Compliance. I'd like to integrate facebooks API through OAuth 2.0, however, the application I'm working on is…

DR9885
- 161
- 1
- 4
1
vote
0 answers
LastPass-python integration
Trying to grab a list of my passwords from my corporate LastPass account. Using the simple:
import lastpass
vault = lastpass.Vault.open_remote(username, password)
for i in vault.accounts:
print(i.id, i.username, i.password, i.url)
Got this…

Misha AM
- 137
- 3
- 13
1
vote
2 answers
Setting the LastPasswordSet date for a user in Active Directory
I want to set the LastPasswordSet attribute of a user in Microsoft Active Directory.
The .NET UserPrincipal API exposes the LastPasswordSet property as readonly.
Is there a way around this, to set the value (perhaps using ADSI)?
Edit:
MSDN provides…

Ben Aston
- 53,718
- 65
- 205
- 331
1
vote
0 answers
LastPasswordSet always returns NULL
I am trying to check and see if a user needs to reset their password based on their AD pwdLastSet attribute. My problem is no matter what value I set for pwdLastSet (either "never" or has a date) it always returns null in…

Red_Phoenix
- 482
- 6
- 22
0
votes
1 answer
Determine the maximum password age in Active Directory
I want to expire users' passwords on an individual basis in Microsoft Active directory at different times.
I understand that each user within AD does not have it's own password expry time. Instead there is a Maximum Password Age associated with the…

Ben Aston
- 53,718
- 65
- 205
- 331