Jump to content
Enpass Discussion Forum

Leaderboard

Popular Content

Showing content with the highest reputation on 03/08/19 in all areas

  1. Hi! I have started using Enpass to store and sync all my passwords and works perfectly. It is great that I can use it on Android, too. However, at work, cloud storage sites are blocked by an internal proxy, and I have setup a socks proxy to bypass it. I would like to be able to specify this socks proxy to the Enpass desktop application, so that in can backup to the cloud. At the moment, only http proxy are supported (as I tried with my socks proxy but it did not work) Thanks in advance
    1 point
  2. Sorry but I'm done with your crappy software. I'm a developer myself and I know releasing a bug free software is impossible, but your update from 5 to 6 was just BS. You killed the sync functionality and the db conversion from 5 to 6 also wasn't bug free. OK bad thinks might happen... but all these problems were reported months ago and still there are no fixes. Even worse now sync is broken on all platforms! In my case (WebDAV) sync is broken because of a character conversion failure. So if minor bugs like these take you months to fix, how long would a security critical bug like a failure in your vault.db design take to fix? So I'm done with Enpass, not only did your support disappointed me also my trust in your Software is broken. If anybody else how wants to switch to Keepass: I quickly wrote an converter script from enpass json to keepass csv. Most of the informations are preserved. Everything that has no group in Keepass will be stored as Note. I wasn't sure how the attachments are serialized, so I didn't cared for them. Have fun: import json with open('enpass_export.json') as enpass_json_fid: vault_data = json.loads(enpass_json_fid.read()) keepass_csv_string = '' for item in vault_data['items']: title = item['title'] group = item['category'] last_modified = str(item['updated_at']) url = '' hostname = '' password = '' username = '' email = '' note = '' if item['note']: note += item['note'] + "\\n" for field in item['fields']: if field['value']: if field['label'] == 'Website': url = field['value'] elif field['label'] == 'Hostname': hostname = field['value'] elif field['label'] == 'Password': password = field['value'] elif field['label'] == 'Username': username = field['value'] elif field['label'] == 'E-mail': email = field['value'] else: note += field['label'] + ": " + field['value'] + "\\n" if hostname and url: note += "Hostname: " + hostname + "\\n" elif hostname and not url: url = hostname if username and email: note += "E-Mail: " + email + "\\n" elif email and not username: username = email if note: note = note[: -2] keepass_csv_string += '\"' + title + '\"' + ',' + '\"' + group + '\"' + ',' + '\"' + username + '\"' + ',' \ + '\"' + password + '\"' + ',' + '\"' + url + '\"' + ',' + '\"' + note + '\"' + ',' \ + last_modified + "\n" enpass_json_fid.close() with open('keepass_import.csv', 'w') as keepass_csv_fid: keepass_csv_fid.write(keepass_csv_string) keepass_csv_fid.close()
    1 point
  3. Sorry to say but currently we don't have any plans to sell Enpass other than Windows Store. However, I have forwarded your suggestion to the concerned desk for further consideration. Thanks!
    1 point
  4. enpass is a very good software , i have used other password managers and this is one of the best. I wanted to show appreciation for enpass and purchase premium features . but i have windows 8.1 . hence looks like i cant get the premium features until i have windows 10. concerns also is about Purchase outside of Microsoft Store , will there be a direct buy option soon ?
    1 point
×
×
  • Create New...