Data from password vault to linux
kp0854hge9vd
Posts: 1 New Member
I changed my operating system from Windows 10 to Debian. I understand that F-Secure products do not support Linux.
My biggest problem is getting the Password Vault data to another password manager in a controlled manner.
Can I use F-Secure's Password Vault on Linux? Is there some kind of trick?
How can I get the password vault data to myself in a controlled manner in a format (e.g. .kdb) that Keepass can understand it?
Tagged:
Accepted Answer
Answers
-
-
Ok. I have found a solution:
Converting F-Secure .fsk Files to CSV
To convert F-Secure .fsk files to CSV format, follow these steps:
Requirements
jq: A command-line JSON processor. Ensure it is installed on your system. It is available for Windows, macOS, and Linux.
Steps to Convert
Prepare Your Environment:- Create a temporary folder for the conversion.
- Copy your .fsk file into this folder and rename it to
export.json.
Run the Conversion Command:- Open your command line interface (Terminal for macOS/Linux or Command Prompt for Windows).
- Navigate to the folder containing your
export.jsonfile. (in Terminal) - Paste below code:
- jq -r '.data[] | [.service, .url, .username, .password, .notes] | @csv' export .json > import.csv
- Open in any other password manager to which you want to migrate and import the import.csv
Edit the CSV File:- Open
import.csvin a spreadsheet application (like Excel or Google Sheets) to add headers or make any necessary adjustments.
- Open
Important Notes
- The .fsk file is essentially a JSON file, so it can be read as plain text, but it may not be formatted for easy reading.
- Ensure that you handle your passwords securely during this process, especially when transferring or storing the CSV file.
By following these steps, you can successfully convert your F-Secure passwords from .fsk format to a more manageable CSV format.