Skip to content
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

There have some bug #16

Open
ArrestX opened this issue Oct 9, 2023 · 2 comments
Open

There have some bug #16

ArrestX opened this issue Oct 9, 2023 · 2 comments

Comments

@ArrestX
Copy link

ArrestX commented Oct 9, 2023

Traceback (most recent call last):
File "C:\tools\tools\check_passwd\Browser-password-stealer-master\chromium_based_browsers.py", line 152, in
data = get_data(browser_path, "Default", master_key, data_type)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\tools\tools\check_passwd\Browser-password-stealer-master\chromium_based_browsers.py", line 109, in get_data
shutil.copy(db_file, 'temp_db')
File "C:\Program Files (x86)\Lib\shutil.py", line 419, in copy
copyfile(src, dst, follow_symlinks=follow_symlinks)
File "C:\Program Files (x86)\Lib\shutil.py", line 256, in copyfile
with open(src, 'rb') as fsrc:

@ArrestX ArrestX changed the title 有bug There have some bug Oct 9, 2023
@AboveAphid0
Copy link

AboveAphid0 commented Nov 14, 2023

Oh I had that problem too, it just means that the file couldn't be accessed without administrative access. You can just change:

data = get_data(browser_path, "Default", master_key, data_type)
save_results(browser, data_type_name, data)

To:

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')

And that should fix your problem, (I've found that chrome doesn't block this only microsoft edge, though I haven't tested other browsers)
Hope that helps!

@hahahahacker2009
Copy link
Contributor

#22 Fixed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants