forked from brettviren/python-keepass
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
45 lines (30 loc) · 878 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
keepassc
a command line interface for reading
KeePass files (used by KeePass and KeePassX v2.x).
* Notes of caution
Before using this code, understand its (known) security
and correctness limitations:
* Unlike the KeePass/KeePassX GUI applications this code makes no
attempt to secure its memory. Input files read in are stored in
memory fully decrypted.
* It is quite easy to display the stored passwords in plain text,
although the defaults try to avoid this.
* Key files are not currently supported
* Prerequisites
#+begin_src shell
sudo pip install libkeepass
#+end_src
* Command line
The command line interface is run like:
#+begin_src shell
keepassc <command> [command_options] ...
#+end_src
Examples:
#+begin_src shell
keepassc dump file.kdbx
keepassc search hello file.kdbx
#+end_src
Online help:
#+begin_src shell
keepassc --help
#+end_src