2 Unix SMB/Netbios implementation.
6 Copyright (C) Tim Potter 2000
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "rpcclient.h"
26 /* Look up domain related information on a remote host */
28 static NTSTATUS
cmd_lsa_query_info_policy(struct cli_state
*cli
,
29 TALLOC_CTX
*mem_ctx
, int argc
,
33 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
35 fstring sid_str
, domain_name
;
36 uint32 info_class
= 3;
39 printf("Usage: %s [info_class]\n", argv
[0]);
44 info_class
= atoi(argv
[1]);
46 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
47 SEC_RIGHTS_MAXIMUM_ALLOWED
,
50 if (!NT_STATUS_IS_OK(result
))
53 /* Lookup info policy */
55 result
= cli_lsa_query_info_policy(cli
, mem_ctx
, &pol
, info_class
,
56 domain_name
, &dom_sid
);
58 if (!NT_STATUS_IS_OK(result
))
61 sid_to_string(sid_str
, &dom_sid
);
64 printf("domain %s has sid %s\n", domain_name
, sid_str
);
66 printf("could not query info for level %d\n", info_class
);
72 /* Resolve a list of names to a list of sids */
74 static NTSTATUS
cmd_lsa_lookup_names(struct cli_state
*cli
,
75 TALLOC_CTX
*mem_ctx
, int argc
,
79 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
84 const char *name2
, *domain2
;
87 printf("Usage: %s [name1 [name2 [...]]]\n", argv
[0]);
91 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
92 SEC_RIGHTS_MAXIMUM_ALLOWED
,
95 if (!NT_STATUS_IS_OK(result
))
98 /* Lookup the names */
100 split_domain_name(argv
[1], domain
, name
);
102 name2
= talloc_strdup(mem_ctx
, name
);
103 domain2
= talloc_strdup(mem_ctx
, domain
);
105 result
= cli_lsa_lookup_names(cli
, mem_ctx
, &pol
, argc
- 1,
106 &domain2
, &name2
, &sids
,
109 if (!NT_STATUS_IS_OK(result
))
114 for (i
= 0; i
< num_names
; i
++) {
117 sid_to_string(sid_str
, &sids
[i
]);
118 printf("%s %s (%d)\n", argv
[i
+ 1], sid_str
,
126 /* Resolve a list of SIDs to a list of names */
128 static NTSTATUS
cmd_lsa_lookup_sids(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
129 int argc
, char **argv
)
132 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
140 printf("Usage: %s [sid1 [sid2 [...]]]\n", argv
[0]);
144 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
145 SEC_RIGHTS_MAXIMUM_ALLOWED
,
148 if (!NT_STATUS_IS_OK(result
))
151 /* Convert arguments to sids */
153 sids
= (DOM_SID
*)talloc(mem_ctx
, sizeof(DOM_SID
) * (argc
- 1));
156 printf("could not allocate memory for %d sids\n", argc
- 1);
160 for (i
= 0; i
< argc
- 1; i
++)
161 string_to_sid(&sids
[i
], argv
[i
+ 1]);
163 /* Lookup the SIDs */
165 result
= cli_lsa_lookup_sids(cli
, mem_ctx
, &pol
, argc
- 1, sids
,
166 &domains
, &names
, &types
, &num_names
);
168 if (!NT_STATUS_IS_OK(result
))
173 for (i
= 0; i
< num_names
; i
++) {
176 sid_to_string(sid_str
, &sids
[i
]);
177 printf("%s [%s]\\[%s] (%d)\n", sid_str
,
178 domains
[i
] ? domains
[i
] : "*unknown*",
179 names
[i
] ? names
[i
] : "*unknown*", types
[i
]);
186 /* Enumerate list of trusted domains */
188 static NTSTATUS
cmd_lsa_enum_trust_dom(struct cli_state
*cli
,
189 TALLOC_CTX
*mem_ctx
, int argc
,
193 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
194 DOM_SID
*domain_sids
;
201 printf("Usage: %s\n", argv
[0]);
205 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
206 SEC_RIGHTS_MAXIMUM_ALLOWED
,
209 if (!NT_STATUS_IS_OK(result
))
212 /* Lookup list of trusted domains */
214 result
= cli_lsa_enum_trust_dom(cli
, mem_ctx
, &pol
, &enum_ctx
,
215 &num_domains
, &domain_names
,
218 if (!NT_STATUS_IS_OK(result
))
223 for (i
= 0; i
< num_domains
; i
++) {
226 sid_to_string(sid_str
, &domain_sids
[i
]);
227 printf("%s %s\n", domain_names
[i
] ? domain_names
[i
] :
228 "*unknown*", sid_str
);
235 /* Enumerates privileges */
237 static NTSTATUS
cmd_lsa_enum_privilege(struct cli_state
*cli
,
238 TALLOC_CTX
*mem_ctx
, int argc
,
242 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
244 uint32 enum_context
=0;
245 uint32 pref_max_length
=0x1000;
253 printf("Usage: %s [enum context] [max length]\n", argv
[0]);
258 enum_context
=atoi(argv
[1]);
261 pref_max_length
=atoi(argv
[2]);
263 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
264 SEC_RIGHTS_MAXIMUM_ALLOWED
,
267 if (!NT_STATUS_IS_OK(result
))
270 result
= cli_lsa_enum_privilege(cli
, mem_ctx
, &pol
, &enum_context
, pref_max_length
,
271 &count
, &privs_name
, &privs_high
, &privs_low
);
273 if (!NT_STATUS_IS_OK(result
))
277 printf("found %d privileges\n\n", count
);
279 for (i
= 0; i
< count
; i
++) {
280 printf("%s \t\t%d:%d (0x%x:0x%x)\n", privs_name
[i
] ? privs_name
[i
] : "*unknown*",
281 privs_high
[i
], privs_low
[i
], privs_high
[i
], privs_low
[i
]);
288 /* Get privilege name */
290 static NTSTATUS
cmd_lsa_get_dispname(struct cli_state
*cli
,
291 TALLOC_CTX
*mem_ctx
, int argc
,
295 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
298 uint16 lang_id_sys
=0;
303 printf("Usage: %s privilege name\n", argv
[0]);
307 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
308 SEC_RIGHTS_MAXIMUM_ALLOWED
,
311 if (!NT_STATUS_IS_OK(result
))
314 result
= cli_lsa_get_dispname(cli
, mem_ctx
, &pol
, argv
[1], lang_id
, lang_id_sys
, description
, &lang_id_desc
);
316 if (!NT_STATUS_IS_OK(result
))
320 printf("%s -> %s (language: 0x%x)\n", argv
[1], description
, lang_id_desc
);
326 /* Enumerate the LSA SIDS */
328 static NTSTATUS
cmd_lsa_enum_sids(struct cli_state
*cli
,
329 TALLOC_CTX
*mem_ctx
, int argc
,
333 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
335 uint32 enum_context
=0;
336 uint32 pref_max_length
=0x1000;
342 printf("Usage: %s [enum context] [max length]\n", argv
[0]);
347 enum_context
=atoi(argv
[1]);
350 pref_max_length
=atoi(argv
[2]);
352 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
353 SEC_RIGHTS_MAXIMUM_ALLOWED
,
356 if (!NT_STATUS_IS_OK(result
))
359 result
= cli_lsa_enum_sids(cli
, mem_ctx
, &pol
, &enum_context
, pref_max_length
,
362 if (!NT_STATUS_IS_OK(result
))
366 printf("found %d SIDs\n\n", count
);
368 for (i
= 0; i
< count
; i
++) {
371 sid_to_string(sid_str
, &sids
[i
]);
372 printf("%s\n", sid_str
);
379 /* Enumerate the privileges of an SID */
381 static NTSTATUS
cmd_lsa_enum_privsaccounts(struct cli_state
*cli
,
382 TALLOC_CTX
*mem_ctx
, int argc
,
387 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
388 uint32 access_desired
= 0x000f000f;
396 printf("Usage: %s SID\n", argv
[0]);
400 string_to_sid(&sid
, argv
[1]);
402 result
= cli_lsa_open_policy2(cli
, mem_ctx
, True
,
403 SEC_RIGHTS_MAXIMUM_ALLOWED
,
406 if (!NT_STATUS_IS_OK(result
))
409 result
= cli_lsa_open_account(cli
, mem_ctx
, &dom_pol
, &sid
, access_desired
, &user_pol
);
411 if (!NT_STATUS_IS_OK(result
))
414 result
= cli_lsa_enum_privsaccount(cli
, mem_ctx
, &user_pol
, &count
, &set
);
416 if (!NT_STATUS_IS_OK(result
))
420 printf("found %d privileges for SID %s\n\n", count
, argv
[1]);
421 printf("high\tlow\tattribute\n");
423 for (i
= 0; i
< count
; i
++) {
424 printf("%u\t%u\t%u\n", set
[i
].luid
.high
, set
[i
].luid
.low
, set
[i
].attr
);
431 /* Get a privilege value given its name */
433 static NTSTATUS
cmd_lsa_lookupprivvalue(struct cli_state
*cli
,
434 TALLOC_CTX
*mem_ctx
, int argc
,
438 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
442 printf("Usage: %s name\n", argv
[0]);
446 result
= cli_lsa_open_policy2(cli
, mem_ctx
, True
,
447 SEC_RIGHTS_MAXIMUM_ALLOWED
,
450 if (!NT_STATUS_IS_OK(result
))
453 result
= cli_lsa_lookupprivvalue(cli
, mem_ctx
, &pol
, argv
[1], &luid
);
455 if (!NT_STATUS_IS_OK(result
))
459 printf("%u:%u (0x%x:0x%x)\n", luid
.high
, luid
.low
, luid
.high
, luid
.low
);
465 /* Query LSA security object */
467 static NTSTATUS
cmd_lsa_query_secobj(struct cli_state
*cli
,
468 TALLOC_CTX
*mem_ctx
, int argc
,
472 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
474 uint32 sec_info
= 0x00000004; /* ??? */
477 printf("Usage: %s\n", argv
[0]);
481 result
= cli_lsa_open_policy2(cli
, mem_ctx
, True
,
482 SEC_RIGHTS_MAXIMUM_ALLOWED
,
485 if (!NT_STATUS_IS_OK(result
))
488 result
= cli_lsa_query_secobj(cli
, mem_ctx
, &pol
, sec_info
, &sdb
);
490 if (!NT_STATUS_IS_OK(result
))
495 display_sec_desc(sdb
->sec
);
501 /* List of commands exported by this module */
503 struct cmd_set lsarpc_commands
[] = {
507 { "lsaquery", cmd_lsa_query_info_policy
, PIPE_LSARPC
, "Query info policy", "" },
508 { "lookupsids", cmd_lsa_lookup_sids
, PIPE_LSARPC
, "Convert SIDs to names", "" },
509 { "lookupnames", cmd_lsa_lookup_names
, PIPE_LSARPC
, "Convert names to SIDs", "" },
510 { "enumtrust", cmd_lsa_enum_trust_dom
, PIPE_LSARPC
, "Enumerate trusted domains", "" },
511 { "enumprivs", cmd_lsa_enum_privilege
, PIPE_LSARPC
, "Enumerate privileges", "" },
512 { "getdispname", cmd_lsa_get_dispname
, PIPE_LSARPC
, "Get the privilege name", "" },
513 { "lsaenumsid", cmd_lsa_enum_sids
, PIPE_LSARPC
, "Enumerate the LSA SIDS", "" },
514 { "lsaenumprivsaccount", cmd_lsa_enum_privsaccounts
, PIPE_LSARPC
, "Enumerate the privileges of an SID", "" },
515 { "lsalookupprivvalue", cmd_lsa_lookupprivvalue
, PIPE_LSARPC
, "Get a privilege value given its name", "" },
516 { "lsaquerysecobj", cmd_lsa_query_secobj
, PIPE_LSARPC
, "Query LSA security object", "" },