You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(I don't use github btw so I'm not sure if this is the right way of doing this)
I noticed that your script when taking passwords used "action_urls" to recieve the password's login website. However I also noticed that this can sometimes return "" which ain't what you want to see 😅. So I just modified it to use origin urls (and action urls) because I noticed it returns the URL more often.
Here's the updated code: (idk how to attach files so this is gonna be messy sorry. )
Changed to: (this just fixes the bug of not have admin to access the file)
for data_type_name, data_type in data_queries.items():
print(f"\t [$] Getting {data_type_name.replace('_', ' ').capitalize()}")
try:
data = get_data(browser_path, "Default", master_key, data_type)
save_results(browser, data_type_name, data)
except:
print('\t [!] Failed to receive data')
print("\t------\n")`
Changed to: (this is the updated query, ik it was a surprisingly simple fix, you made your code very well/easy to change 👍)
(I don't use github btw so I'm not sure if this is the right way of doing this)
I noticed that your script when taking passwords used "action_urls" to recieve the password's login website. However I also noticed that this can sometimes return "" which ain't what you want to see 😅. So I just modified it to use origin urls (and action urls) because I noticed it returns the URL more often.
Here's the updated code: (idk how to attach files so this is gonna be messy sorry. )
Changed to: (this just fixes the bug of not have admin to access the file)
Changed to: (this is the updated query, ik it was a surprisingly simple fix, you made your code very well/easy to change 👍)
Hope that helps! And sorry if this is a messy way of trying to help your project 😅
The text was updated successfully, but these errors were encountered: