Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
Former Member
3 years agoConfused about Password History
I am trying to use Password History to assess the potential risk from a compromised password. I have done some experiments, and it seems that the specific entries in "Password History" sometimes show...
MrC
3 years agoSuper Contributor
@lucasd
One more method for you - if you enable Settings > Advanced > Show debugging tools, you can right click an item, and select Copy item JSON. That's the same JSON essentially that you see above, but even more readable for the createdAt and updatedAt timestamps:
{
"overview": {
"title": "Login",
"ainfo": "user",
"ps": 8
},
"details": {
"fields": [
{
"value": "user",
"id": "",
"name": "username",
"type": "T",
"designation": "username"
},
{
"value": "pass3",
"id": "",
"name": "password",
"type": "P",
"designation": "password"
}
],
"passwordHistory": [
{
"value": "pass1",
"time": 1677802370
},
{
"value": "pass2",
"time": 1677802641
}
]
},
"createdAt": "2023-03-03T00:10:02Z",
"updatedAt": "2023-03-03T00:17:21Z",
"faveIndex": 0,
"trashed": "N",
"templateUuid": "001",
"uuid": "aykopr47us6uw3gl4jhrfr6mte"
}