How to decode #PWD_BROWSER from facebook password

一个人想着一个人 提交于 2020-12-27 07:11:27

问题


My password: L9RODT8MRn6sBJl2orzmxpE0rjg6ywayOFkddEdwO9rY8l This is example encoded: #PWD_BROWSER:5:1597232954:Ab5QAPPwe5HYw8co2LUVGmjR3OIIPleRDEFrlW+aB4QxUIQW3XAAdimZgReMmTV9FXQH+Nlir7uvj0ayfduu3eVS2Mz3z0DfS0t03QhlzMxIOvVPYEheo/7HLn3M49NSlJ0cQN2qFesaKsnrnbOL5P1SpY/kEtnlJaY31UNUMgC/y5TwyEXm7XT5dbqaSfn2XKk=


回答1:


From my personal experience that is how facebook posts data to its server for login verification (you can check it yourself when you login with the developper tools opn on network tab, look for a POST request to login/) To decode it we need to know how it is generated and from a first look it looks like linux password storage method So the :5: part means it is hashed with SHA256 :1597232954: is mostly the salt and the rest is the hash result encoded with base64

One final note you can't decode hashs you can just bruteforce them.



来源:https://stackoverflow.com/questions/63376637/how-to-decode-pwd-browser-from-facebook-password

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!