Skip to content

Instantly share code, notes, and snippets.

View ericswpark's full-sized avatar

Eric Park ericswpark

View GitHub Profile
@ericswpark
ericswpark / bitwarden-totp.py
Created September 12, 2021 16:12
Bitwarden TOTP finder in Python
import json
accounts = []
print("Reading exported JSON...")
with open("bitwarden-export.json", "r", encoding="utf8") as export_file:
vault = json.load(export_file)
vault = vault["items"]
for item in vault: