0
I have a lot of entries in my kdbx database where the title is the domain the password belongs to. In most but not all of them, the URL field is empty:
| Title | Username | Password | URL | ... |
|-----------------+----------+----------+---------------------------+-----|
| example.com | | *** | | ... |
| foo.example.net | foo | *** | | ... |
| bar.example.net | bar | *** | | ... |
| example.org | bla | *** | https://example.org/login | ... |
| ... | ... | ... | ... | ... |
How to fill the URL field based on the title field so the DB looks like the one below?
| Title | Username | Password | URL | ... |
|-----------------+----------+----------+---------------------------+-----|
| example.com | | *** | https://example.com/ | ... |
| foo.example.net | foo | *** | https://foo.example.net | ... |
| bar.example.net | bar | *** | https://bar.example.net | ... |
| example.org | bla | *** | https://example.org/login | ... |
| ... | ... | ... | ... | ... |
2
Should be possible via KeePass scripting: https://keepass.info/help/v2_dev/scr_index.html
– Robert – 2019-10-28T14:25:17.277