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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
(* ***** 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 ***** *)
open Ppx_yojson_conv_lib.Yojson_conv.Primitives
type login = {
hostname : string;
encryptedUsername : string;
encryptedPassword : string;
}
[@@deriving yojson] [@@yojson.allow_extra_fields]
type logins = { logins : login list }
[@@deriving yojson] [@@yojson.allow_extra_fields]
type output_login = { hostname : string; username : string; password : string }
[@@deriving yojson]
type output = output_login list [@@deriving yojson]
(** 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 json_output = ref false
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)" );
("-j", Arg.Set json_output, " output result in JSON");
]
let usage_msg =
"nss-passwords [-d <dir>] [-p <pinentry>] query [...]\n\
A query is either hostname:string, username:string, or string (which\n\
translates to hostname:string)."
exception Found of string
let chop_prefix ~prefix x =
let n = String.length x and nprefix = String.length prefix in
if n >= nprefix && String.sub x 0 nprefix = prefix then
Some (String.sub x nprefix (n - nprefix))
else None
let parse_query x =
match chop_prefix ~prefix:"hostname:" x with
| Some x -> `Hostname x
| None -> (
match chop_prefix ~prefix:"username:" x with
| Some x -> `Username x
| None -> `Hostname x)
let () =
Arg.parse spec (fun x -> queries := parse_query x :: !queries) usage_msg;
if !queries = [] then (
Arg.usage spec usage_msg;
exit 1);
if !dir = "" then
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
else if not (FileUtil.test FileUtil.Is_dir !dir) then (
Printf.eprintf "Invalid profile directory: %s\n" !dir;
exit 1);
nss_init !dir;
at_exit nss_cleanup
(** 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);
(match lc_ctype with
| Some x ->
Printf.fprintf stdout "OPTION lc-ctype=%s\n%!" x;
check (input_line stdin)
| None -> ());
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 exec_hostname db query =
let cb = 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
in
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 db (Buffer.contents buf) in
assert (r = Sqlite3.Rc.OK)
let exec_username db query =
let rex = Str.regexp (".*" ^ Str.quote query ^ ".*") in
let cb = function
| [| hostname; encryptedUsername; encryptedPassword |] ->
let username = do_decrypt ~callback ~data:encryptedUsername in
if Str.string_match rex username 0 then
let password = do_decrypt ~callback ~data:encryptedPassword in
results := { hostname; username; password } :: !results
| _ -> assert false
in
let sql =
"SELECT hostname, encryptedUsername, encryptedPassword FROM moz_logins;"
in
let r = Sqlite3.exec_not_null_no_headers ~cb db sql in
assert (r = Sqlite3.Rc.OK)
let exec db = function
| `Hostname x -> exec_hostname db x
| `Username x -> exec_username db x
let exec_sqlite () =
let db = Sqlite3.db_open (FilePath.concat !dir "signons.sqlite") in
List.iter (exec db) !queries;
let r = Sqlite3.db_close db in
assert (r = true)
let iter_try f l = List.iter (fun x -> try f x with _ -> ()) l
let json_process logins query =
let string_match =
match query with
| `Hostname x ->
let rex = Str.regexp (".*" ^ Str.quote x ^ ".*") in
fun hostname _ -> Str.string_match rex hostname 0
| `Username x ->
let rex = Str.regexp (".*" ^ Str.quote x ^ ".*") in
fun _ username -> Str.string_match rex (Lazy.force username) 0
in
iter_try
(fun (l : login) ->
let hostname = l.hostname in
let username = lazy (do_decrypt ~callback ~data:l.encryptedUsername) in
if string_match hostname username then
let username = Lazy.force username in
let password = do_decrypt ~callback ~data:l.encryptedPassword in
results := { hostname; username; password } :: !results)
logins
let exec_json () =
let ic = open_in (FilePath.concat !dir "logins.json") in
let ls = Yojson.init_lexer () in
let lb = Lexing.from_channel ic in
let logins = Yojson.Safe.read_json ls lb |> logins_of_yojson in
close_in ic;
List.iter (json_process logins.logins) !queries
let print_as_table results =
let a, b, c =
List.fold_left
(fun (a, b, c) o ->
let a = max a (String.length o.hostname) in
let b = max b (String.length o.username) in
let c = max c (String.length o.password) in
(a, b, c))
(0, 0, 0) results
in
List.iter
(fun o ->
Printf.printf "| %-*s | %-*s | %-*s |\n" a o.hostname b o.username c
o.password)
results
let print_as_json results =
print_endline (results |> yojson_of_output |> Yojson.Safe.to_string)
let () =
try
if Sys.file_exists (FilePath.concat !dir "logins.json") then exec_json ()
else exec_sqlite ();
let results = List.sort compare !results in
(if !json_output then print_as_json else print_as_table) results
with NSS_decrypt_failed (_, _, Some e) ->
Printf.eprintf "Error while decrypting: %s\n" (Printexc.to_string e);
exit 2
|