| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
A Python tool that extracts and optionally deletes saved passwords from popular browsers like Google Chrome, Microsoft Edge, and Mozilla Firefox. This tool is designed for penetration testers, security enthusiasts, and anyone interested in understanding browser security mechanisms.
Extract and View Passwords:
The passwords will be saved to a chrome_data.txt file.
Delete All Passwords (Optional):
Follow the on-screen instructions to delete passwords after extraction.
Below is a breakdown of the key parts of the code:
def main():
# Decrypt stored passwords
key = get_encryption_key()
...
password = decrypt_password(row[3], key)
...def delete_passwords():
# Deleting saved passwords from browsers
db_path = os.path.join(os.environ["USERPROFILE"], "AppData", "Local",
"Google", "Chrome", "User Data", "default", "Login Data")
...This tool is intended for educational purposes only. Unauthorized access to someone else’s data is illegal and unethical. Always obtain permission before attempting to access or manipulate any data that isn't your own.
| Back | FazBrowse Home | New Git URL |