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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Initial Developer of the Original Code is
* Stéphane Glondu <steph@glondu.net>
* Portions created by the Initial Developer are Copyright (C) 2010-2011
* the Initial Developer. All Rights Reserved.
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** *)
(** C interface *)
exception NSS_init_failed
exception NSS_cleanup_failed
exception NSS_base64_decode_failed of string * int
exception NSS_decrypt_failed of string * int * exn option
let () = Callback.register_exception "NSS_init_failed"
NSS_init_failed
let () = Callback.register_exception "NSS_cleanup_failed"
NSS_cleanup_failed
let () = Callback.register_exception "NSS_base64_decode_failed"
(NSS_base64_decode_failed ("", 0))
let () = Callback.register_exception "NSS_decrypt_failed"
(NSS_decrypt_failed ("", 0, None))
external nss_cleanup : unit -> unit = "caml_nss_cleanup"
external nss_init : string -> unit = "caml_nss_init"
external do_decrypt : callback:(bool -> string) -> data:string -> string = "caml_do_decrypt"
external ttyname : Unix.file_descr -> string = "caml_ttyname"
(** Command-line arguments parsing and initialization *)
let dir = ref ""
let pinentry = ref "pinentry"
let queries = ref []
let spec = Arg.align [
"-d", Arg.Set_string dir, "profile directory (default: Firefox default profile)";
"-p", Arg.Set_string pinentry, "pinentry program to use (default: pinentry)";
]
let usage_msg = "nss-passwords [-d <dir>] [-p <pinentry>] query [...]"
exception Found of string
let () =
Arg.parse spec (fun x -> queries := x :: !queries) usage_msg;
if !queries = [] then begin
Arg.usage spec usage_msg;
exit 1
end;
if !dir = "" then begin
try
let () = FileUtil.find
~follow:FileUtil.Follow
~match_compile:FileUtilStr.match_compile
(FileUtil.And (FileUtil.Is_dir, FileUtil.Match ".*\\.default$"))
(FilePath.concat (Sys.getenv "HOME") ".mozilla/firefox")
(fun _ x -> raise (Found x))
()
in
Printf.eprintf "No default profile directory found\n";
exit 1
with Found x -> dir := x
end else if not (FileUtil.test FileUtil.Is_dir !dir) then begin
Printf.eprintf "Invalid profile directory: %s\n" !dir;
exit 1
end;
nss_init !dir;
at_exit nss_cleanup
let db = Sqlite3.db_open (FilePath.concat !dir "signons.sqlite")
let () = at_exit (fun () -> let r = Sqlite3.db_close db in assert (r = true))
(** Decrypt passwords *)
let check line =
assert (String.length line >= 2 && String.sub line 0 2 = "OK");
()
let lc_ctype =
try
Some (Sys.getenv "LC_ALL")
with Not_found ->
try
Some (Sys.getenv "LANG")
with Not_found ->
None
let callback retry =
if retry then
failwith "invalid password"
else
let (stdin, stdout) as child = Unix.open_process !pinentry in
check (input_line stdin);
let ttyname =
try ttyname Unix.stdin
with Unix.Unix_error(_, _, _) -> failwith "stdin is not a tty"
in
Printf.fprintf stdout "OPTION ttyname=%s\n%!" ttyname;
check (input_line stdin);
begin match lc_ctype with
| Some x ->
Printf.fprintf stdout "OPTION lc-ctype=%s\n%!" x;
check (input_line stdin)
| None -> ()
end;
Printf.fprintf stdout "GETPIN\n%!";
let line = input_line stdin in
let _ = Unix.close_process child in
let n = String.length line in
if n > 2 then
String.sub line 2 (n-2)
else
failwith "missing password"
let quote_query buf x =
Buffer.add_string buf "'%";
String.iter
(function
| '\'' -> Buffer.add_string buf "''"
| '%' -> Buffer.add_string buf "x%"
| '_' -> Buffer.add_string buf "x_"
| 'x' -> Buffer.add_string buf "xx"
| c -> Buffer.add_char buf c)
x;
Buffer.add_string buf "%'"
let results = ref []
let process_row = function
| [| hostname; encryptedUsername; encryptedPassword |] ->
let username = do_decrypt ~callback ~data:encryptedUsername in
let password = do_decrypt ~callback ~data:encryptedPassword in
results := (hostname, username, password) :: !results
| _ -> assert false
let exec query =
let buf = Buffer.create (2 * String.length query + 128) in
Printf.bprintf buf
"SELECT hostname, encryptedUsername, encryptedPassword FROM moz_logins WHERE hostname LIKE %a ESCAPE 'x';"
quote_query query;
let r = Sqlite3.exec_not_null_no_headers ~cb:process_row db (Buffer.contents buf) in
assert (r = Sqlite3.Rc.OK)
let () =
try
List.iter exec !queries;
let results = List.sort compare !results in
let (a, b, c) = List.fold_left
(fun (a, b, c) (x, y, z) ->
let a = max a (String.length x) in
let b = max b (String.length y) in
let c = max c (String.length z) in
(a, b, c))
(0, 0, 0)
results
in
let fmt = Printf.ksprintf
(fun fmt -> Scanf.format_from_string fmt "%s %s %s")
"| %%-%ds | %%-%ds | %%-%ds |\n" a b c
in
List.iter (fun (x, y, z) -> Printf.printf fmt x y z) results
with
| NSS_decrypt_failed(_, _, Some e) ->
Printf.eprintf "Error while decrypting: %s\n" (Printexc.to_string e);
exit 2
|