#!/usr/bin/env python3 import argparse import datetime import yaml import onepif import kpwriter from os.path import splitext parser = argparse.ArgumentParser(description="Convert 1Password 1PIF exports into a KeePass KDBX file.") parser.add_argument("inpath", metavar="input.1pif", help="1Password export file/folder") parser.add_argument("outfile", metavar="output.kdbx", nargs="?", help="Desired filename for KeePass file. If omitted, defaults to .kdbx. Existing files WILL BE OVERWRITTEN!") args = parser.parse_args() # If no outfile given, use infile name if not args.outfile: fileparts = splitext(args.inpath) args.outfile = "{}.kdbx".format(fileparts[0]) # If given outfile doesn't have .kdbx extension, add it outparts = splitext(args.outfile) if outparts[1] != ".kdbx": args.outfile += ".kdbx" # Open input file print("Input file: {}".format(args.inpath)) opif = onepif.OnepifReader("{}/data.1pif".format(args.inpath)) # Open output file print("Output file: {}".format(args.outfile)) kp = kpwriter.KpWriter(args.outfile, "test") def getField(item, designation): secure = item["secureContents"] if "fields" in secure: for field in secure["fields"]: d = field.get("designation") if d == designation: return field["value"] return None # Load record mappings from Yaml file RECORD_MAP = yaml.load(open("mappings.yml", "rt")) for item in opif: # Determine group/folder item_type_name = item.type_name target_group_name = "{}s".format(item_type_name) # plural for group if item.is_trash(): target_group_name = "Recycle Bin" # Add entry to KeePass entry = kp.add_entry(target_group_name, item["title"]) # Icon kp_icon = RECORD_MAP[item.type]["icon"] kp.set_icon(kp_icon) # Tags kp.set_tags(item.get_tags()) # TOTPs totps = item.get_totps() if totps: for totp in totps: kp.add_totp(totp[0], title=totp[1]) secure = item["secureContents"] # URLs if "location" in item: kp.add_url(item["location"]) if "URLs" in secure: for u in secure["URLs"]: kp.add_url(u["url"]) # Username if "username" in secure: entry.username = secure["username"] else: username = getField(item, "username") if username: entry.username = username # Password if "password" in secure: entry.password = secure["password"] else: new_password = getField(item, "password") if new_password: entry.password = new_password # Other web fields if "fields" in secure: for field in secure["fields"]: d = field.get("designation") if d != "username" and d != "password": entry.set_custom_property("Web field: {}".format(field["name"]), field["value"]) # Password history if "passwordHistory" in secure: for p in secure["passwordHistory"]: d = datetime.datetime.fromtimestamp(p["time"]) entry.set_custom_property("Password history ({})".format(d), p["value"]) # Find URL in fields if not entry.url: if "htmlAction" in secure: entry.url = secure["htmlAction"] # Membership fields if "membership_no" in secure and not entry.username: entry.username = secure["membership_no"] # Passport fields if "number" in secure and not entry.username: entry.username = secure["number"] # Router fields if "network_name" in secure and not entry.username: entry.username = secure["network_name"] if "wireless_password" in secure and not entry.password: entry.password = secure["wireless_password"] # Bank account if "iban" in secure and not entry.username: entry.username = secure["iban"] if "swift" in secure and not entry.username: entry.username = secure["swift"] if "routingNo" in secure and not entry.username: entry.username = secure["routingNo"] if "accountNo" in secure and not entry.username: entry.username = secure["accountNo"] if "telephonePin" in secure and not entry.password: entry.password = secure["telephonePin"] # Credit card if "ccnum" in secure and not entry.username: entry.username = secure["ccnum"] if "pin" in secure and not entry.password: entry.password = secure["pin"] # Sections if "sections" in secure: for s in secure["sections"]: t = s["title"] if "fields" in s: for f in s["fields"]: v = f.get("v") if not v: continue k = f["k"] ft = "{} - {}".format(t, f["t"]) if t == "": ft = f["t"] if ft == "URL": # Reserved! ft = "URL_" if k in ["string", "concealed", "menu", "cctype", "monthYear", "email"]: entry.set_custom_property(ft, str(v)) elif k == "date": d = datetime.datetime.fromtimestamp(v) entry.set_custom_property(ft, str(d)) elif k == "address": # needs special handling! pass # for now else: raise Exception("Unknown k: {}".format(k)) # Notes if "notesPlain" in secure: entry.notes = secure["notesPlain"] # Dates entry.ctime = datetime.datetime.fromtimestamp(item["createdAt"]) entry.mtime = datetime.datetime.fromtimestamp(item["updatedAt"]) kp.save()