/src/usernotes/htdocs/tools/usernotes-mail-decrypt.py

https://bitbucket.org/guidod/trac-userscriptservernotes-plugin · Python · 51 lines · 42 code · 8 blank · 1 comment · 12 complexity · 71434900e153a9afc604a244452ff19a MD5 · raw file

  1. # -*- encoding: utf-8 -*-
  2. import sqlite3
  3. from Crypto.Cipher import Blowfish # pkg install "python-crypto"
  4. from binascii import hexlify, unhexlify
  5. from optparse import OptionParser
  6. help = "EXAMPLE:\n python usernotes-mail-decrypt.py usernotes-mail.sqlite -k 'Eine lange Passphrase'"
  7. _o = OptionParser(usage="%prog [options] [sqlite-Dateiname]..", description = help)
  8. _o.add_option("-k","--key", metavar="PHRASE", help="Die Passphrase zur Entschluesselung")
  9. _o.add_option("-u","--user", metavar="USERNAME", help="Nur fuer diesen Nutzer alles anzeigen.")
  10. _o.add_option("-v","--verbose", action="store_true")
  11. opts, args = _o.parse_args()
  12. def bsdsum(str):
  13. checksum = 0;
  14. for i in xrange(len(str)):
  15. checksum = (checksum >> 1) | ((checksum & 1) << 15);
  16. checksum = (checksum + ord(str[i])) & 65535; # // 0xFFFF
  17. return checksum;
  18. for filename in args:
  19. if opts.verbose:
  20. print "########", filename
  21. if opts.key: print "########", opts.key, "(%s)" % bsdsum(opts.key)
  22. print ""
  23. conn = sqlite3.connect(filename)
  24. conn.text_factory = str
  25. db = conn.cursor()
  26. sql = "SELECT mail_user, mail_date, mail_text, encrypted FROM mail"
  27. if opts.user: sql += " WHERE mail_user = '%s'" % opts.user
  28. sql += " ORDER BY mail_date DESC"
  29. db.execute(sql)
  30. for mail_user, mail_date, mail_text, encrypted in db:
  31. print "=======", mail_user, mail_date, "(%s)" % str(encrypted)
  32. if encrypted and opts.key:
  33. if True:
  34. try:
  35. crypt = Blowfish.new(opts.key, Blowfish.MODE_ECB) # default = CBC
  36. ciphertext = unhexlify(mail_text)
  37. plaintext = crypt.decrypt(ciphertext)
  38. print unicode(plaintext, "utf-8")
  39. except Exception, e:
  40. print "Blowfish OOPS", str(e)
  41. else:
  42. print mail_text
  43. print ""