README 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # PWMAN3
  2. A nice command line password manager, which is smart enough to use different SQL Databases (MySQL, SQLite, BerkelyDB).
  3. Pwman3 can also copy passwords to the clipboard (on Mac and Linux) without exposing them, so you save
  4. some typing.
  5. Besides managing and storing passwords, Pwman3 can also generate passwords using different algorithms.
  6. ## Installing
  7. Pwman3 requires the following debian packages:
  8. when using python 2.4
  9. python-pysqlite2
  10. python-celementtree
  11. python-crypto
  12. when using python >= 2.5
  13. python-crypto
  14. for nicer functionality:
  15. xsel - to copy password to clipboard on Linux
  16. To install:
  17. $ python setup.py install
  18. ## ikegam's function
  19. * making a password from the numeric character and the alphabet character ([A-Za-z0-9]).
  20. You can add a parametor for making the password to the config(~/.pwman/config).
  21. For Example)
  22. [Generator]
  23. numerics = true
  24. * Passwords can be l33tified similarly using the following.
  25. [Generator]
  26. leetify = true
  27. * Copying password to X11 or Mac clipbord:
  28. - On Mac OSX systems copying utilizes `pbcopy`
  29. - On X11 Systems Specify the path to `xsel` if you already have `~/.pwman/config`
  30. [Global]
  31. xsel = yes
  32. xselpath = /usr/bin/xsel
  33. When launching `pwman` for the first time, it will try and look for
  34. `xsel` and write the configuration properly.
  35. ## Password leetifying
  36. If you choose to leetify your passwords when generating passwords,
  37. e.g. `leetify = true` in `~/.pwman/config`, password lengths may exceed the length chosen.
  38. This is because certain letters will be replaced with 2 or more characters.
  39. That is, if an initial random password was generated as : `Murkahm1` it will eventually be
  40. set to: `|\/|ur|<ham1`. To see to full leet list checkout line 79 in `pwman/util/generator.py`
  41. or issue in your terminal:
  42. python -c'from pwman.util import generator; print generator.leetlist'