SafeInCloud import
Please, is it possible to prepare import from APP SafeInCloud xml or csv to Proton Pass ?
-
Ü.S.
commented
The lack of import support for SafeinCloud is why I have not switched to Proton Pass. My SafeinCloud database is huge. Hence, I would like a secure automated import script developed by Proton AG.
-
Samu
commented
Ich wundere mich, dass diese Idee von Petr Svarc schon vor über 2 Jahren geteilt wurde und es immer noch keine Import Möglichkeit für Safeincloud gibt.
-
Grzegorz Warchałowski commented
Rozważcie możliwość importu danych z SafeInCloud (wszystkie dane również z załącznikami).
-
R
commented
Definitely a missing feature. I've created a small script to convert the SafeInCloud to the correct format. Keep in mind this will not move any attachments but I do not have any. At your own risk (also import to an empty test vault first):
__________import csv
safeincloud_file = r'sic_export.csv'
with open(safeincloud_file, "r", encoding='utf-8-sig') as f:
reader = csv.DictReader(f)
sic_passwords = list(reader)with open('sic_export_ready.csv', 'w', newline='') as csvfile:
fieldnames = ['name', 'url','email','username','password','note','totp','vault']
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
writer.writeheader()
for entry in sic_passwords:
converted_entry = {
'name': entry['Title'],
'url': entry['URL'],
'email': entry['Login'],
'username': entry['Login'],
'password': entry['Password'],
'note': entry['Notes'],
'totp': entry['OTP'],
'vault': ''
}
writer.writerow(converted_entry) -
Vinco Woo commented
please add support for safeincloud along with 2FAs...
-
DrACV
commented
Guten Tag. Ist der Import jetzt schon möglich? Ich würde gerne meine Sicheren Daten alle bei Proton lagern.
-
Rob Hoogerwaard commented
Guten Tag. Haben Sie jemals ein Antwort/Loesung bekommen bitte?
-
Cesar R P Maciel commented
I'd love it.
-
Rafal Wolanin commented
would be great to have this ASAP
-
Wolfram Esche commented
Siehe oben
-
JohnKarmas
commented
It would be great to import from safeincloud to protonpass.
Do it as fast as possible. -
Nibiru F-M commented
Potřebuji pro import hesel do Proton Pass
-
Ben
commented
I would like to migrate several SafeinCloud users to ProtonPass. The only thing stopping me is importing the 2FA and note fields. Please offer as soon as possible!
-
Roman Schlegel commented
note: safe-in-cloud also has image attachments (i find this useful e.g. for barcodes of membercards)
-
Guido Neumann commented
I now have 1500 broken entries from csv import. How to delete them all at once?
-
Lars “Elias” Elias commented
Please figure this out as a long time safe in cloud user i have seed phrases etc in note fields as well as images and other data. A direct import wouod be ideal.
If I get gpt to write the code will you impliment?
-
Frank Preston commented
Capability to import data from "Safe In Cloud" password app.
-
Paul Greet commented
Would like to be able to import passwords from Safeincloud. Thank you
-
Ken
commented
I too would be pleased to have safeincloud2 import options from xml file.
-
Galaktor
commented
@Haxortech Productions
THX - workaround works fine - recomended to use