-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Masterkeys and prekeys and stuff #167
Comments
Hello,
|
(also in case you didn't saw it i added the software parameter to dpapi.get_prekeys_form_registry_files) Sadly no, still nothing. [({}, {})]
[({}, {})]
[({}, {})]
[({}, {})]
[({}, {})]
[({}, {})] |
But thanks for that hella fast response ! |
Lil update. I tried to only use pypykatz to fetch stuff HIVE = os.path.join(WINDOWS_LOCATION,"Windows","System32","config")
def find_file(dir,name):
for file in os.listdir(dir):
if re.match(name,file):
return os.path.join(dir,file)
reg:OffineRegistry = OffineRegistry.from_files(find_file(HIVE,"SYSTEM"),find_file(HIVE,"SAM"),find_file(HIVE,"SECURITY"),find_file(HIVE,"SOFTWARE"))
#print(dpapi.decrypt_all_chrome(dpapi.find_chrome_database_file_offline(USERS),throw=True))
masterkey_files = (dpapi.find_masterkey_files_offline(USERS,WINDOWS_LOCATION))
prekeys = dpapi.get_prekeys_form_registry_files(find_file(HIVE,"SYSTEM"),find_file(HIVE,"SECURITY"),find_file(HIVE,"SAM"),find_file(HIVE,"SOFTWARE"))
for i in masterkey_files.values():
for kind in prekeys:
for key in kind:
for hit in dpapi.decrypt_masterkey_file(i,key):
if hit:
print("WHOOOOOOOO:",hit) And still got nothing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So i have this code:
But everytime i run it, i never get any masterkey. Is that normal ?
Btw the ultimate goal is to decrypt the local state and get the encryption password for every autofill n stuff of a browser without being live on the computer.
The text was updated successfully, but these errors were encountered: