Get Windows login password - Python
How would I get the user password for the current account on Windows 7 in
python?
My vision of how it might work:
...
passwd = someWindowsApi.GetUserPassword()
print("Your current password is: " + passwd)
...
Then running the script would output something like this:
>python whatsmypassword.py
Your password is "password"
Seriously? You might as well not have a password. This incident will be
reported to the security fanatics foundation!
I am assuming that this script would have to be run as administrator, and
that is fine.
No comments:
Post a Comment