Created
March 18, 2026 21:56
-
-
Save savchenko/87a982c4e24954ca1176ea9be392a8a3 to your computer and use it in GitHub Desktop.
Recover KeePassXC settings as plaintext
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PyQt5.QtCore import QSettings | |
| for k in QSettings("keepassxc.ini", QSettings.IniFormat).allKeys(): | |
| print(k, settings.value(k)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment