Welchen Passwort Manager könnt ihr empfehlen?
Ich nutze seit mehreren Jahren den gleichen und bin absolut genervt von der Reaktionsgeschwindigkeit und dem UI. Habt ihr Empfehlungen? Muss nicht zwingend freeware sein, Hauptsache vernünftig verschlüsselt, auf mehreren Geräten nutzbar und gern auch mit Familien-Vault.
18 Replies
national-gold•4w ago
Bin mit 1Password seit mehreren Jahren sehr zufrieden und nutze das im geteilten Abo mit mehreren Familienmitgliedern
foreign-sapphireOP•4w ago
Zu 1Password hatte ich neulich ne Werbung gesehen. Kommt mit auf die Liste, danke!
flat-fuchsia•4w ago
bitwarden
exotic-emerald•4w ago
Nutze auch Bitwarden.
Mit den OTP einfach viel zu geil
Wenn du die Möglichkeit hast und daheim ein eigener Server läuft, kannst du Bitwarden auch selber in Docker laufen lassen: https://github.com/dani-garcia/vaultwarden
GitHub
GitHub - dani-garcia/vaultwarden: Unofficial Bitwarden compatible s...
Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs - dani-garcia/vaultwarden
Wenn primär im Apple Ökosystem dann deren Schlüsselbund. Gibt auch eine Windows-App dafür.
Wenn man eh iCloud und co nutzt, hast es dabei und es ist meiner Meinung nach sehr komfortabel durch FaceID/TouchID. Gibt auch die Option bestimmte Passwörter in Gruppen zu packen und zu teilen etc.
Sonst wohl 1Password oder Bitwarden
foreign-sapphireOP•4w ago
Danke euch! Ich bin gerade dabei, Bitwarden zu testen. Leider kann ich keine Norton-CSV-Dateien importieren. Seufz.
metropolitan-bronze•4w ago
Bitwarden kann aber csv Import darüber bin ich da auch hin gewechselt.
foreign-sapphireOP•4w ago
Ja, kann CSV-Import, aber leider nicht das Norton-Format.
metropolitan-bronze•4w ago
Dann schnell umparsen. :pepeOK:
foreign-sapphireOP•4w ago
Ist am Ende auch egal. Dann nutze ich es als Gelegenheit, mal den Datenmüll rauszukehren.
Ich glaub bis ich das vernünftig und fehlerfrei hinbekomme, hab ichs auch manuell rüberkopiert
metropolitan-bronze•4w ago
ChatGPT schreibt dir den parser in drei Minuten.
foreign-sapphireOP•4w ago
Das kann ich mir vorstellen, aber ich möcht jetzt ungern alle meine Zugangsdaten in GPT reinkippen
danke für eure Tipps!
national-gold•4w ago
CSV in Excel importieren, Spalten verschieben und wieder exportieren?
benutze einfach den von chrome ... (bis jetzt?!) außer jemand sagt dass das eine grauenvolle idee ist 😂
metropolitan-bronze•4w ago
Brauchst nur einen Beispieldatensatz.
Prompt:
Write a parser in python which converts a Norton csv list into a format that’s compatible with Bitwarden inputfile is called Norton.csv, Output Bitwarden.csv
Here is a Python script that reads a CSV file named Norton.csv containing exported data from Norton, parses the data, and writes it to a new file named Bitwarden.csv in a format compatible with Bitwarden.
import csv
def parse_norton_to_bitwarden(input_file, output_file):
# Define the headers for Bitwarden CSV format
bitwarden_headers = [
"folder",
"favorite",
"type",
"name",
"notes",
"fields",
"login_uri",
"login_username",
"login_password",
"login_totp"
]
# Read the Norton CSV and process it with open(input_file, mode="r", encoding="utf-8") as infile: reader = csv.DictReader(infile) norton_data = list(reader)
# Create a list to store Bitwarden formatted data bitwarden_data = []
for entry in norton_data: # Map Norton data to Bitwarden fields name = entry.get("Name", "") username = entry.get("Username", "") password = entry.get("Password", "") url = entry.get("URL", "") notes = entry.get("Notes", "")
# Append data in Bitwarden format bitwarden_data.append({ "folder": "", # Leave empty for no folder "favorite": "false", # Default to not a favorite "type": "login", # Default to login type "name": name, "notes": notes, "fields": "", "login_uri": url, "login_username": username, "login_password": password, "login_totp": "" # Leave empty for no TOTP })
# Write the data to Bitwarden CSV with open(output_file, mode="w", encoding="utf-8", newline="") as outfile: writer = csv.DictWriter(outfile, fieldnames=bitwarden_headers) writer.writeheader() writer.writerows(bitwarden_data)
print(f"Conversion complete. Output saved to {output_file}") Specify input and output file names input_file = "Norton.csv" output_file = "Bitwarden.csv" Run the parser parse_norton_to_bitwarden(input_file, output_file) Steps to Use the Script: 1. Prepare the Input File: Make sure the Norton.csv file exists in the same directory as the script. The file should have columns like Name, Username, Password, URL, and Notes. 2. Run the Script: Save the script to a .py file and execute it in a Python environment. 3. Output File: The script generates Bitwarden.csv with the data formatted for import into Bitwarden. Notes: • Ensure the column names in the Norton CSV file match the ones used in the script (Name, Username, Password, URL, Notes). If they differ, adjust the script accordingly. • The script assumes that all entries are of type “login.” Adjust the type field if needed for different entry types. • Use UTF-8 encoding to handle special characters in the data. Da nochmal in schön. Hoffe das hilft. Script sieht lauffähig aus.
# Read the Norton CSV and process it with open(input_file, mode="r", encoding="utf-8") as infile: reader = csv.DictReader(infile) norton_data = list(reader)
# Create a list to store Bitwarden formatted data bitwarden_data = []
for entry in norton_data: # Map Norton data to Bitwarden fields name = entry.get("Name", "") username = entry.get("Username", "") password = entry.get("Password", "") url = entry.get("URL", "") notes = entry.get("Notes", "")
# Append data in Bitwarden format bitwarden_data.append({ "folder": "", # Leave empty for no folder "favorite": "false", # Default to not a favorite "type": "login", # Default to login type "name": name, "notes": notes, "fields": "", "login_uri": url, "login_username": username, "login_password": password, "login_totp": "" # Leave empty for no TOTP })
# Write the data to Bitwarden CSV with open(output_file, mode="w", encoding="utf-8", newline="") as outfile: writer = csv.DictWriter(outfile, fieldnames=bitwarden_headers) writer.writeheader() writer.writerows(bitwarden_data)
print(f"Conversion complete. Output saved to {output_file}") Specify input and output file names input_file = "Norton.csv" output_file = "Bitwarden.csv" Run the parser parse_norton_to_bitwarden(input_file, output_file) Steps to Use the Script: 1. Prepare the Input File: Make sure the Norton.csv file exists in the same directory as the script. The file should have columns like Name, Username, Password, URL, and Notes. 2. Run the Script: Save the script to a .py file and execute it in a Python environment. 3. Output File: The script generates Bitwarden.csv with the data formatted for import into Bitwarden. Notes: • Ensure the column names in the Norton CSV file match the ones used in the script (Name, Username, Password, URL, Notes). If they differ, adjust the script accordingly. • The script assumes that all entries are of type “login.” Adjust the type field if needed for different entry types. • Use UTF-8 encoding to handle special characters in the data. Da nochmal in schön. Hoffe das hilft. Script sieht lauffähig aus.
foreign-sapphireOP•4w ago
Ich danke dir für deine Mühen und küsse deine Augen
metropolitan-bronze•4w ago
Größte Mühe war den das so formatieren zu lassen dass ich es einfach in discord kopieren konnte.