2 Unix SMB/CIFS implementation.
5 Copyright (C) Tim Potter 2000
6 Copyright (C) Rafal Szczesniak 2002
7 Copyright (C) Guenther Deschner 2008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "rpcclient.h"
25 #include "../libcli/auth/libcli_auth.h"
26 #include "../librpc/gen_ndr/ndr_lsa.h"
27 #include "../librpc/gen_ndr/ndr_lsa_c.h"
28 #include "rpc_client/cli_lsarpc.h"
29 #include "rpc_client/init_lsa.h"
30 #include "../libcli/security/security.h"
32 /* useful function to allow entering a name instead of a SID and
33 * looking it up automatically */
34 static NTSTATUS
name_to_sid(struct rpc_pipe_client
*cli
,
36 struct dom_sid
*sid
, const char *name
)
38 struct policy_handle pol
;
39 enum lsa_SidType
*sid_types
;
40 NTSTATUS status
, result
;
42 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
44 /* maybe its a raw SID */
45 if (strncmp(name
, "S-", 2) == 0 &&
46 string_to_sid(sid
, name
)) {
50 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
51 SEC_FLAG_MAXIMUM_ALLOWED
,
53 if (!NT_STATUS_IS_OK(status
))
56 status
= rpccli_lsa_lookup_names(cli
, mem_ctx
, &pol
, 1, &name
, NULL
, 1, &sids
, &sid_types
);
57 if (!NT_STATUS_IS_OK(status
))
60 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
68 static void display_query_info_1(struct lsa_AuditLogInfo
*r
)
70 d_printf("percent_full:\t%d\n", r
->percent_full
);
71 d_printf("maximum_log_size:\t%d\n", r
->maximum_log_size
);
72 d_printf("retention_time:\t%lld\n", (long long)r
->retention_time
);
73 d_printf("shutdown_in_progress:\t%d\n", r
->shutdown_in_progress
);
74 d_printf("time_to_shutdown:\t%lld\n", (long long)r
->time_to_shutdown
);
75 d_printf("next_audit_record:\t%d\n", r
->next_audit_record
);
78 static void display_query_info_2(struct lsa_AuditEventsInfo
*r
)
81 d_printf("Auditing enabled:\t%d\n", r
->auditing_mode
);
82 d_printf("Auditing categories:\t%d\n", r
->count
);
83 d_printf("Auditsettings:\n");
84 for (i
=0; i
<r
->count
; i
++) {
85 const char *val
= audit_policy_str(talloc_tos(), r
->settings
[i
]);
86 const char *policy
= audit_description_str(i
);
87 d_printf("%s:\t%s\n", policy
, val
);
91 static void display_query_info_3(struct lsa_DomainInfo
*r
)
93 d_printf("Domain Name: %s\n", r
->name
.string
);
94 d_printf("Domain Sid: %s\n", sid_string_tos(r
->sid
));
97 static void display_query_info_5(struct lsa_DomainInfo
*r
)
99 d_printf("Domain Name: %s\n", r
->name
.string
);
100 d_printf("Domain Sid: %s\n", sid_string_tos(r
->sid
));
103 static void display_query_info_10(struct lsa_AuditFullSetInfo
*r
)
105 d_printf("Shutdown on full: %d\n", r
->shutdown_on_full
);
108 static void display_query_info_11(struct lsa_AuditFullQueryInfo
*r
)
110 d_printf("Shutdown on full: %d\n", r
->shutdown_on_full
);
111 d_printf("Log is full: %d\n", r
->log_is_full
);
114 static void display_query_info_12(struct lsa_DnsDomainInfo
*r
)
116 d_printf("Domain NetBios Name: %s\n", r
->name
.string
);
117 d_printf("Domain DNS Name: %s\n", r
->dns_domain
.string
);
118 d_printf("Domain Forest Name: %s\n", r
->dns_forest
.string
);
119 d_printf("Domain Sid: %s\n", sid_string_tos(r
->sid
));
120 d_printf("Domain GUID: %s\n", GUID_string(talloc_tos(),
124 static void display_lsa_query_info(union lsa_PolicyInformation
*info
,
125 enum lsa_PolicyInfo level
)
129 display_query_info_1(&info
->audit_log
);
132 display_query_info_2(&info
->audit_events
);
135 display_query_info_3(&info
->domain
);
138 display_query_info_5(&info
->account_domain
);
141 display_query_info_10(&info
->auditfullset
);
144 display_query_info_11(&info
->auditfullquery
);
147 display_query_info_12(&info
->dns
);
150 printf("can't display info level: %d\n", level
);
155 static NTSTATUS
cmd_lsa_query_info_policy(struct rpc_pipe_client
*cli
,
156 TALLOC_CTX
*mem_ctx
, int argc
,
159 struct policy_handle pol
;
160 NTSTATUS status
, result
;
161 union lsa_PolicyInformation
*info
= NULL
;
162 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
164 uint32 info_class
= 3;
167 printf("Usage: %s [info_class]\n", argv
[0]);
172 info_class
= atoi(argv
[1]);
174 switch (info_class
) {
176 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
177 SEC_FLAG_MAXIMUM_ALLOWED
,
180 if (!NT_STATUS_IS_OK(status
))
183 status
= dcerpc_lsa_QueryInfoPolicy2(b
, mem_ctx
,
190 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
191 SEC_FLAG_MAXIMUM_ALLOWED
,
194 if (!NT_STATUS_IS_OK(status
))
197 status
= dcerpc_lsa_QueryInfoPolicy(b
, mem_ctx
,
204 if (!NT_STATUS_IS_OK(status
)) {
208 if (NT_STATUS_IS_OK(result
)) {
209 display_lsa_query_info(info
, info_class
);
212 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
218 /* Resolve a list of names to a list of sids */
220 static NTSTATUS
cmd_lsa_lookup_names(struct rpc_pipe_client
*cli
,
221 TALLOC_CTX
*mem_ctx
, int argc
,
224 struct policy_handle pol
;
225 NTSTATUS status
, result
;
226 struct dom_sid
*sids
;
227 enum lsa_SidType
*types
;
229 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
232 printf("Usage: %s [name1 [name2 [...]]]\n", argv
[0]);
236 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
237 SEC_FLAG_MAXIMUM_ALLOWED
,
240 if (!NT_STATUS_IS_OK(status
))
243 status
= rpccli_lsa_lookup_names(cli
, mem_ctx
, &pol
, argc
- 1,
244 (const char**)(argv
+ 1), NULL
, 1, &sids
, &types
);
246 if (!NT_STATUS_IS_OK(status
) && NT_STATUS_V(status
) !=
247 NT_STATUS_V(STATUS_SOME_UNMAPPED
))
250 status
= NT_STATUS_OK
;
254 for (i
= 0; i
< (argc
- 1); i
++) {
256 sid_to_fstring(sid_str
, &sids
[i
]);
257 printf("%s %s (%s: %d)\n", argv
[i
+ 1], sid_str
,
258 sid_type_lookup(types
[i
]), types
[i
]);
261 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
267 /* Resolve a list of names to a list of sids */
269 static NTSTATUS
cmd_lsa_lookup_names_level(struct rpc_pipe_client
*cli
,
270 TALLOC_CTX
*mem_ctx
, int argc
,
273 struct policy_handle pol
;
274 NTSTATUS status
, result
;
275 struct dom_sid
*sids
;
276 enum lsa_SidType
*types
;
278 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
281 printf("Usage: %s [level] [name1 [name2 [...]]]\n", argv
[0]);
285 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
286 SEC_FLAG_MAXIMUM_ALLOWED
,
289 if (!NT_STATUS_IS_OK(status
))
292 level
= atoi(argv
[1]);
294 status
= rpccli_lsa_lookup_names(cli
, mem_ctx
, &pol
, argc
- 2,
295 (const char**)(argv
+ 2), NULL
, level
, &sids
, &types
);
297 if (!NT_STATUS_IS_OK(status
) && NT_STATUS_V(status
) !=
298 NT_STATUS_V(STATUS_SOME_UNMAPPED
))
301 status
= NT_STATUS_OK
;
305 for (i
= 0; i
< (argc
- 2); i
++) {
307 sid_to_fstring(sid_str
, &sids
[i
]);
308 printf("%s %s (%s: %d)\n", argv
[i
+ 2], sid_str
,
309 sid_type_lookup(types
[i
]), types
[i
]);
312 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
318 static NTSTATUS
cmd_lsa_lookup_names4(struct rpc_pipe_client
*cli
,
319 TALLOC_CTX
*mem_ctx
, int argc
,
322 NTSTATUS status
, result
;
325 struct lsa_String
*names
;
326 struct lsa_RefDomainList
*domains
;
327 struct lsa_TransSidArray3 sids
;
330 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
333 printf("Usage: %s [name1 [name2 [...]]]\n", argv
[0]);
340 names
= talloc_array(mem_ctx
, struct lsa_String
, num_names
);
341 NT_STATUS_HAVE_NO_MEMORY(names
);
343 for (i
=0; i
< num_names
; i
++) {
344 init_lsa_String(&names
[i
], argv
[i
+1]);
347 status
= dcerpc_lsa_LookupNames4(b
, mem_ctx
,
357 if (!NT_STATUS_IS_OK(status
)) {
360 if (!NT_STATUS_IS_OK(result
)) {
364 for (i
= 0; i
< sids
.count
; i
++) {
366 sid_to_fstring(sid_str
, sids
.sids
[i
].sid
);
367 printf("%s %s (%s: %d)\n", argv
[i
+1], sid_str
,
368 sid_type_lookup(sids
.sids
[i
].sid_type
),
369 sids
.sids
[i
].sid_type
);
375 /* Resolve a list of SIDs to a list of names */
377 static NTSTATUS
cmd_lsa_lookup_sids(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
378 int argc
, const char **argv
)
380 struct policy_handle pol
;
381 NTSTATUS status
, result
;
382 struct dom_sid
*sids
;
385 enum lsa_SidType
*types
;
387 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
390 printf("Usage: %s [sid1 [sid2 [...]]]\n", argv
[0]);
394 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
395 SEC_FLAG_MAXIMUM_ALLOWED
,
398 if (!NT_STATUS_IS_OK(status
))
401 /* Convert arguments to sids */
403 sids
= TALLOC_ARRAY(mem_ctx
, struct dom_sid
, argc
- 1);
406 printf("could not allocate memory for %d sids\n", argc
- 1);
410 for (i
= 0; i
< argc
- 1; i
++)
411 if (!string_to_sid(&sids
[i
], argv
[i
+ 1])) {
412 status
= NT_STATUS_INVALID_SID
;
416 /* Lookup the SIDs */
418 status
= rpccli_lsa_lookup_sids(cli
, mem_ctx
, &pol
, argc
- 1, sids
,
419 &domains
, &names
, &types
);
421 if (!NT_STATUS_IS_OK(status
) && NT_STATUS_V(status
) !=
422 NT_STATUS_V(STATUS_SOME_UNMAPPED
))
425 status
= NT_STATUS_OK
;
429 for (i
= 0; i
< (argc
- 1); i
++) {
432 sid_to_fstring(sid_str
, &sids
[i
]);
433 printf("%s %s\\%s (%d)\n", sid_str
,
434 domains
[i
] ? domains
[i
] : "*unknown*",
435 names
[i
] ? names
[i
] : "*unknown*", types
[i
]);
438 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
444 /* Resolve a list of SIDs to a list of names */
446 static NTSTATUS
cmd_lsa_lookup_sids3(struct rpc_pipe_client
*cli
,
448 int argc
, const char **argv
)
450 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
, result
;
452 struct lsa_SidArray sids
;
453 struct lsa_RefDomainList
*domains
;
454 struct lsa_TransNameArray2 names
;
456 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
459 printf("Usage: %s [sid1 [sid2 [...]]]\n", argv
[0]);
465 /* Convert arguments to sids */
467 sids
.num_sids
= argc
-1;
468 sids
.sids
= talloc_array(mem_ctx
, struct lsa_SidPtr
, sids
.num_sids
);
470 printf("could not allocate memory for %d sids\n", sids
.num_sids
);
474 for (i
= 0; i
< sids
.num_sids
; i
++) {
475 sids
.sids
[i
].sid
= talloc(sids
.sids
, struct dom_sid
);
476 if (sids
.sids
[i
].sid
== NULL
) {
477 status
= NT_STATUS_NO_MEMORY
;
480 if (!string_to_sid(sids
.sids
[i
].sid
, argv
[i
+1])) {
481 status
= NT_STATUS_INVALID_SID
;
486 /* Lookup the SIDs */
487 status
= dcerpc_lsa_LookupSids3(b
, mem_ctx
,
496 if (!NT_STATUS_IS_OK(status
)) {
499 if (!NT_STATUS_IS_OK(result
) && NT_STATUS_V(result
) !=
500 NT_STATUS_V(STATUS_SOME_UNMAPPED
)) {
505 status
= NT_STATUS_OK
;
509 for (i
= 0; i
< count
; i
++) {
512 sid_to_fstring(sid_str
, sids
.sids
[i
].sid
);
513 printf("%s %s (%d)\n", sid_str
,
514 names
.names
[i
].name
.string
,
515 names
.names
[i
].sid_type
);
523 /* Enumerate list of trusted domains */
525 static NTSTATUS
cmd_lsa_enum_trust_dom(struct rpc_pipe_client
*cli
,
526 TALLOC_CTX
*mem_ctx
, int argc
,
529 struct policy_handle pol
;
530 NTSTATUS status
, result
;
531 struct lsa_DomainList domain_list
;
532 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
534 /* defaults, but may be changed using params */
537 uint32_t max_size
= (uint32_t)-1;
540 printf("Usage: %s [enum context (0)]\n", argv
[0]);
544 if (argc
== 2 && argv
[1]) {
545 enum_ctx
= atoi(argv
[2]);
548 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
549 LSA_POLICY_VIEW_LOCAL_INFORMATION
,
552 if (!NT_STATUS_IS_OK(status
))
555 status
= STATUS_MORE_ENTRIES
;
557 while (NT_STATUS_EQUAL(status
, STATUS_MORE_ENTRIES
)) {
559 /* Lookup list of trusted domains */
561 status
= dcerpc_lsa_EnumTrustDom(b
, mem_ctx
,
567 if (!NT_STATUS_IS_OK(status
)) {
570 if (!NT_STATUS_IS_OK(result
) &&
571 !NT_STATUS_EQUAL(result
, NT_STATUS_NO_MORE_ENTRIES
) &&
572 !NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
)) {
577 /* Print results: list of names and sids returned in this
579 for (i
= 0; i
< domain_list
.count
; i
++) {
582 sid_to_fstring(sid_str
, domain_list
.domains
[i
].sid
);
584 domain_list
.domains
[i
].name
.string
?
585 domain_list
.domains
[i
].name
.string
: "*unknown*",
590 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
595 /* Enumerates privileges */
597 static NTSTATUS
cmd_lsa_enum_privilege(struct rpc_pipe_client
*cli
,
598 TALLOC_CTX
*mem_ctx
, int argc
,
601 struct policy_handle pol
;
602 NTSTATUS status
, result
;
603 struct lsa_PrivArray priv_array
;
604 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
606 uint32 enum_context
=0;
607 uint32 pref_max_length
=0x1000;
611 printf("Usage: %s [enum context] [max length]\n", argv
[0]);
616 enum_context
=atoi(argv
[1]);
619 pref_max_length
=atoi(argv
[2]);
621 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
622 SEC_FLAG_MAXIMUM_ALLOWED
,
625 if (!NT_STATUS_IS_OK(status
))
628 status
= dcerpc_lsa_EnumPrivs(b
, mem_ctx
,
634 if (!NT_STATUS_IS_OK(status
))
636 if (!NT_STATUS_IS_OK(result
)) {
642 printf("found %d privileges\n\n", priv_array
.count
);
644 for (i
= 0; i
< priv_array
.count
; i
++) {
645 printf("%s \t\t%d:%d (0x%x:0x%x)\n",
646 priv_array
.privs
[i
].name
.string
? priv_array
.privs
[i
].name
.string
: "*unknown*",
647 priv_array
.privs
[i
].luid
.high
,
648 priv_array
.privs
[i
].luid
.low
,
649 priv_array
.privs
[i
].luid
.high
,
650 priv_array
.privs
[i
].luid
.low
);
653 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
658 /* Get privilege name */
660 static NTSTATUS
cmd_lsa_get_dispname(struct rpc_pipe_client
*cli
,
661 TALLOC_CTX
*mem_ctx
, int argc
,
664 struct policy_handle pol
;
665 NTSTATUS status
, result
;
666 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
669 uint16 lang_id_sys
=0;
671 struct lsa_String lsa_name
;
672 struct lsa_StringLarge
*description
= NULL
;
675 printf("Usage: %s privilege name\n", argv
[0]);
679 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
680 SEC_FLAG_MAXIMUM_ALLOWED
,
683 if (!NT_STATUS_IS_OK(status
))
686 init_lsa_String(&lsa_name
, argv
[1]);
688 status
= dcerpc_lsa_LookupPrivDisplayName(b
, mem_ctx
,
696 if (!NT_STATUS_IS_OK(status
))
698 if (!NT_STATUS_IS_OK(result
)) {
704 printf("%s -> %s (language: 0x%x)\n", argv
[1], description
->string
, lang_id_desc
);
706 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
711 /* Enumerate the LSA SIDS */
713 static NTSTATUS
cmd_lsa_enum_sids(struct rpc_pipe_client
*cli
,
714 TALLOC_CTX
*mem_ctx
, int argc
,
717 struct policy_handle pol
;
718 NTSTATUS status
, result
;
719 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
721 uint32 enum_context
=0;
722 uint32 pref_max_length
=0x1000;
723 struct lsa_SidArray sid_array
;
727 printf("Usage: %s [enum context] [max length]\n", argv
[0]);
732 enum_context
=atoi(argv
[1]);
735 pref_max_length
=atoi(argv
[2]);
737 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
738 SEC_FLAG_MAXIMUM_ALLOWED
,
741 if (!NT_STATUS_IS_OK(status
))
744 status
= dcerpc_lsa_EnumAccounts(b
, mem_ctx
,
750 if (!NT_STATUS_IS_OK(status
))
752 if (!NT_STATUS_IS_OK(result
)) {
758 printf("found %d SIDs\n\n", sid_array
.num_sids
);
760 for (i
= 0; i
< sid_array
.num_sids
; i
++) {
763 sid_to_fstring(sid_str
, sid_array
.sids
[i
].sid
);
764 printf("%s\n", sid_str
);
767 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
772 /* Create a new account */
774 static NTSTATUS
cmd_lsa_create_account(struct rpc_pipe_client
*cli
,
775 TALLOC_CTX
*mem_ctx
, int argc
,
778 struct policy_handle dom_pol
;
779 struct policy_handle user_pol
;
780 NTSTATUS status
, result
;
781 uint32 des_access
= 0x000f000f;
782 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
787 printf("Usage: %s SID\n", argv
[0]);
791 status
= name_to_sid(cli
, mem_ctx
, &sid
, argv
[1]);
792 if (!NT_STATUS_IS_OK(status
))
795 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
796 SEC_FLAG_MAXIMUM_ALLOWED
,
799 if (!NT_STATUS_IS_OK(status
))
802 status
= dcerpc_lsa_CreateAccount(b
, mem_ctx
,
808 if (!NT_STATUS_IS_OK(status
))
810 if (!NT_STATUS_IS_OK(result
)) {
815 printf("Account for SID %s successfully created\n\n", argv
[1]);
816 status
= NT_STATUS_OK
;
818 dcerpc_lsa_Close(b
, mem_ctx
, &dom_pol
, &result
);
824 /* Enumerate the privileges of an SID */
826 static NTSTATUS
cmd_lsa_enum_privsaccounts(struct rpc_pipe_client
*cli
,
827 TALLOC_CTX
*mem_ctx
, int argc
,
830 struct policy_handle dom_pol
;
831 struct policy_handle user_pol
;
832 NTSTATUS status
, result
;
833 uint32 access_desired
= 0x000f000f;
835 struct lsa_PrivilegeSet
*privs
= NULL
;
837 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
840 printf("Usage: %s SID\n", argv
[0]);
844 status
= name_to_sid(cli
, mem_ctx
, &sid
, argv
[1]);
845 if (!NT_STATUS_IS_OK(status
))
848 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
849 SEC_FLAG_MAXIMUM_ALLOWED
,
852 if (!NT_STATUS_IS_OK(status
))
855 status
= dcerpc_lsa_OpenAccount(b
, mem_ctx
,
861 if (!NT_STATUS_IS_OK(status
))
863 if (!NT_STATUS_IS_OK(result
)) {
868 status
= dcerpc_lsa_EnumPrivsAccount(b
, mem_ctx
,
872 if (!NT_STATUS_IS_OK(status
))
874 if (!NT_STATUS_IS_OK(result
)) {
880 printf("found %d privileges for SID %s\n\n", privs
->count
, argv
[1]);
881 printf("high\tlow\tattribute\n");
883 for (i
= 0; i
< privs
->count
; i
++) {
884 printf("%u\t%u\t%u\n",
885 privs
->set
[i
].luid
.high
,
886 privs
->set
[i
].luid
.low
,
887 privs
->set
[i
].attribute
);
890 dcerpc_lsa_Close(b
, mem_ctx
, &dom_pol
, &result
);
896 /* Enumerate the privileges of an SID via LsaEnumerateAccountRights */
898 static NTSTATUS
cmd_lsa_enum_acct_rights(struct rpc_pipe_client
*cli
,
899 TALLOC_CTX
*mem_ctx
, int argc
,
902 struct policy_handle dom_pol
;
903 NTSTATUS status
, result
;
905 struct lsa_RightSet rights
;
906 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
911 printf("Usage: %s SID\n", argv
[0]);
915 status
= name_to_sid(cli
, mem_ctx
, &sid
, argv
[1]);
916 if (!NT_STATUS_IS_OK(status
))
919 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
920 SEC_FLAG_MAXIMUM_ALLOWED
,
923 if (!NT_STATUS_IS_OK(status
))
926 status
= dcerpc_lsa_EnumAccountRights(b
, mem_ctx
,
931 if (!NT_STATUS_IS_OK(status
))
933 if (!NT_STATUS_IS_OK(result
)) {
938 printf("found %d privileges for SID %s\n", rights
.count
,
939 sid_string_tos(&sid
));
941 for (i
= 0; i
< rights
.count
; i
++) {
942 printf("\t%s\n", rights
.names
[i
].string
);
945 dcerpc_lsa_Close(b
, mem_ctx
, &dom_pol
, &result
);
951 /* add some privileges to a SID via LsaAddAccountRights */
953 static NTSTATUS
cmd_lsa_add_acct_rights(struct rpc_pipe_client
*cli
,
954 TALLOC_CTX
*mem_ctx
, int argc
,
957 struct policy_handle dom_pol
;
958 NTSTATUS status
, result
;
959 struct lsa_RightSet rights
;
962 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
965 printf("Usage: %s SID [rights...]\n", argv
[0]);
969 status
= name_to_sid(cli
, mem_ctx
, &sid
, argv
[1]);
970 if (!NT_STATUS_IS_OK(status
))
973 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
974 SEC_FLAG_MAXIMUM_ALLOWED
,
977 if (!NT_STATUS_IS_OK(status
))
980 rights
.count
= argc
-2;
981 rights
.names
= TALLOC_ARRAY(mem_ctx
, struct lsa_StringLarge
,
984 return NT_STATUS_NO_MEMORY
;
987 for (i
=0; i
<argc
-2; i
++) {
988 init_lsa_StringLarge(&rights
.names
[i
], argv
[i
+2]);
991 status
= dcerpc_lsa_AddAccountRights(b
, mem_ctx
,
996 if (!NT_STATUS_IS_OK(status
))
998 if (!NT_STATUS_IS_OK(result
)) {
1003 dcerpc_lsa_Close(b
, mem_ctx
, &dom_pol
, &result
);
1009 /* remove some privileges to a SID via LsaRemoveAccountRights */
1011 static NTSTATUS
cmd_lsa_remove_acct_rights(struct rpc_pipe_client
*cli
,
1012 TALLOC_CTX
*mem_ctx
, int argc
,
1015 struct policy_handle dom_pol
;
1016 NTSTATUS status
, result
;
1017 struct lsa_RightSet rights
;
1020 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1023 printf("Usage: %s SID [rights...]\n", argv
[0]);
1024 return NT_STATUS_OK
;
1027 status
= name_to_sid(cli
, mem_ctx
, &sid
, argv
[1]);
1028 if (!NT_STATUS_IS_OK(status
))
1031 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
1032 SEC_FLAG_MAXIMUM_ALLOWED
,
1035 if (!NT_STATUS_IS_OK(status
))
1038 rights
.count
= argc
-2;
1039 rights
.names
= TALLOC_ARRAY(mem_ctx
, struct lsa_StringLarge
,
1041 if (!rights
.names
) {
1042 return NT_STATUS_NO_MEMORY
;
1045 for (i
=0; i
<argc
-2; i
++) {
1046 init_lsa_StringLarge(&rights
.names
[i
], argv
[i
+2]);
1049 status
= dcerpc_lsa_RemoveAccountRights(b
, mem_ctx
,
1055 if (!NT_STATUS_IS_OK(status
))
1057 if (!NT_STATUS_IS_OK(result
)) {
1062 dcerpc_lsa_Close(b
, mem_ctx
, &dom_pol
, &result
);
1069 /* Get a privilege value given its name */
1071 static NTSTATUS
cmd_lsa_lookup_priv_value(struct rpc_pipe_client
*cli
,
1072 TALLOC_CTX
*mem_ctx
, int argc
,
1075 struct policy_handle pol
;
1076 NTSTATUS status
, result
;
1077 struct lsa_LUID luid
;
1078 struct lsa_String name
;
1079 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1082 printf("Usage: %s name\n", argv
[0]);
1083 return NT_STATUS_OK
;
1086 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
1087 SEC_FLAG_MAXIMUM_ALLOWED
,
1090 if (!NT_STATUS_IS_OK(status
))
1093 init_lsa_String(&name
, argv
[1]);
1095 status
= dcerpc_lsa_LookupPrivValue(b
, mem_ctx
,
1100 if (!NT_STATUS_IS_OK(status
))
1102 if (!NT_STATUS_IS_OK(result
)) {
1109 printf("%u:%u (0x%x:0x%x)\n", luid
.high
, luid
.low
, luid
.high
, luid
.low
);
1111 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
1116 /* Query LSA security object */
1118 static NTSTATUS
cmd_lsa_query_secobj(struct rpc_pipe_client
*cli
,
1119 TALLOC_CTX
*mem_ctx
, int argc
,
1122 struct policy_handle pol
;
1123 NTSTATUS status
, result
;
1124 struct sec_desc_buf
*sdb
;
1125 uint32 sec_info
= SECINFO_DACL
;
1126 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1128 if (argc
< 1 || argc
> 2) {
1129 printf("Usage: %s [sec_info]\n", argv
[0]);
1130 return NT_STATUS_OK
;
1133 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
1134 SEC_FLAG_MAXIMUM_ALLOWED
,
1138 sscanf(argv
[1], "%x", &sec_info
);
1140 if (!NT_STATUS_IS_OK(status
))
1143 status
= dcerpc_lsa_QuerySecurity(b
, mem_ctx
,
1148 if (!NT_STATUS_IS_OK(status
))
1150 if (!NT_STATUS_IS_OK(result
)) {
1157 display_sec_desc(sdb
->sd
);
1159 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
1164 static void display_trust_dom_info_4(struct lsa_TrustDomainInfoPassword
*p
,
1165 uint8_t session_key
[16])
1167 char *pwd
, *pwd_old
;
1169 DATA_BLOB data
= data_blob_const(p
->password
->data
, p
->password
->length
);
1170 DATA_BLOB data_old
= data_blob_const(p
->old_password
->data
, p
->old_password
->length
);
1171 DATA_BLOB session_key_blob
= data_blob_const(session_key
, sizeof(session_key
));
1173 pwd
= sess_decrypt_string(talloc_tos(), &data
, &session_key_blob
);
1174 pwd_old
= sess_decrypt_string(talloc_tos(), &data_old
, &session_key_blob
);
1176 d_printf("Password:\t%s\n", pwd
);
1177 d_printf("Old Password:\t%s\n", pwd_old
);
1180 talloc_free(pwd_old
);
1183 static void display_trust_dom_info(TALLOC_CTX
*mem_ctx
,
1184 union lsa_TrustedDomainInfo
*info
,
1185 enum lsa_TrustDomInfoEnum info_class
,
1186 uint8_t nt_hash
[16])
1188 switch (info_class
) {
1189 case LSA_TRUSTED_DOMAIN_INFO_PASSWORD
:
1190 display_trust_dom_info_4(&info
->password
, nt_hash
);
1193 const char *str
= NULL
;
1194 str
= NDR_PRINT_UNION_STRING(mem_ctx
,
1195 lsa_TrustedDomainInfo
,
1198 d_printf("%s\n", str
);
1205 static NTSTATUS
cmd_lsa_query_trustdominfobysid(struct rpc_pipe_client
*cli
,
1206 TALLOC_CTX
*mem_ctx
, int argc
,
1209 struct policy_handle pol
;
1210 NTSTATUS status
, result
;
1211 struct dom_sid dom_sid
;
1212 uint32 access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
1213 union lsa_TrustedDomainInfo
*info
= NULL
;
1214 enum lsa_TrustDomInfoEnum info_class
= 1;
1215 uint8_t nt_hash
[16];
1216 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1218 if (argc
> 3 || argc
< 2) {
1219 printf("Usage: %s [sid] [info_class]\n", argv
[0]);
1220 return NT_STATUS_OK
;
1223 if (!string_to_sid(&dom_sid
, argv
[1]))
1224 return NT_STATUS_NO_MEMORY
;
1227 info_class
= atoi(argv
[2]);
1229 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
, access_mask
, &pol
);
1231 if (!NT_STATUS_IS_OK(status
))
1234 status
= dcerpc_lsa_QueryTrustedDomainInfoBySid(b
, mem_ctx
,
1240 if (!NT_STATUS_IS_OK(status
))
1242 if (!NT_STATUS_IS_OK(result
)) {
1247 if (!rpccli_get_pwd_hash(cli
, nt_hash
)) {
1248 d_fprintf(stderr
, "Could not get pwd hash\n");
1252 display_trust_dom_info(mem_ctx
, info
, info_class
, nt_hash
);
1255 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
1260 static NTSTATUS
cmd_lsa_query_trustdominfobyname(struct rpc_pipe_client
*cli
,
1261 TALLOC_CTX
*mem_ctx
, int argc
,
1264 struct policy_handle pol
;
1265 NTSTATUS status
, result
;
1266 uint32 access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
1267 union lsa_TrustedDomainInfo
*info
= NULL
;
1268 enum lsa_TrustDomInfoEnum info_class
= 1;
1269 struct lsa_String trusted_domain
;
1270 uint8_t nt_hash
[16];
1271 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1273 if (argc
> 3 || argc
< 2) {
1274 printf("Usage: %s [name] [info_class]\n", argv
[0]);
1275 return NT_STATUS_OK
;
1279 info_class
= atoi(argv
[2]);
1281 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
, access_mask
, &pol
);
1283 if (!NT_STATUS_IS_OK(status
))
1286 init_lsa_String(&trusted_domain
, argv
[1]);
1288 status
= dcerpc_lsa_QueryTrustedDomainInfoByName(b
, mem_ctx
,
1294 if (!NT_STATUS_IS_OK(status
))
1296 if (!NT_STATUS_IS_OK(result
)) {
1301 if (!rpccli_get_pwd_hash(cli
, nt_hash
)) {
1302 d_fprintf(stderr
, "Could not get pwd hash\n");
1306 display_trust_dom_info(mem_ctx
, info
, info_class
, nt_hash
);
1309 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
1314 static NTSTATUS
cmd_lsa_query_trustdominfo(struct rpc_pipe_client
*cli
,
1315 TALLOC_CTX
*mem_ctx
, int argc
,
1318 struct policy_handle pol
, trustdom_pol
;
1319 NTSTATUS status
, result
;
1320 uint32 access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
1321 union lsa_TrustedDomainInfo
*info
= NULL
;
1322 struct dom_sid dom_sid
;
1323 enum lsa_TrustDomInfoEnum info_class
= 1;
1324 uint8_t nt_hash
[16];
1325 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1327 if (argc
> 3 || argc
< 2) {
1328 printf("Usage: %s [sid] [info_class]\n", argv
[0]);
1329 return NT_STATUS_OK
;
1332 if (!string_to_sid(&dom_sid
, argv
[1]))
1333 return NT_STATUS_NO_MEMORY
;
1337 info_class
= atoi(argv
[2]);
1339 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
, access_mask
, &pol
);
1341 if (!NT_STATUS_IS_OK(status
))
1344 status
= dcerpc_lsa_OpenTrustedDomain(b
, mem_ctx
,
1350 if (!NT_STATUS_IS_OK(status
))
1352 if (!NT_STATUS_IS_OK(result
)) {
1357 status
= dcerpc_lsa_QueryTrustedDomainInfo(b
, mem_ctx
,
1362 if (!NT_STATUS_IS_OK(status
))
1364 if (!NT_STATUS_IS_OK(result
)) {
1369 if (!rpccli_get_pwd_hash(cli
, nt_hash
)) {
1370 d_fprintf(stderr
, "Could not get pwd hash\n");
1374 display_trust_dom_info(mem_ctx
, info
, info_class
, nt_hash
);
1377 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
1382 static NTSTATUS
cmd_lsa_get_username(struct rpc_pipe_client
*cli
,
1383 TALLOC_CTX
*mem_ctx
, int argc
,
1386 struct policy_handle pol
;
1387 NTSTATUS status
, result
;
1388 const char *servername
= cli
->desthost
;
1389 struct lsa_String
*account_name
= NULL
;
1390 struct lsa_String
*authority_name
= NULL
;
1391 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1394 printf("Usage: %s servername\n", argv
[0]);
1395 return NT_STATUS_OK
;
1398 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, true,
1399 SEC_FLAG_MAXIMUM_ALLOWED
,
1402 if (!NT_STATUS_IS_OK(status
)) {
1406 status
= dcerpc_lsa_GetUserName(b
, mem_ctx
,
1411 if (!NT_STATUS_IS_OK(status
)) {
1414 if (!NT_STATUS_IS_OK(result
)) {
1421 printf("Account Name: %s, Authority Name: %s\n",
1422 account_name
->string
, authority_name
? authority_name
->string
:
1425 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
1430 static NTSTATUS
cmd_lsa_add_priv(struct rpc_pipe_client
*cli
,
1431 TALLOC_CTX
*mem_ctx
, int argc
,
1434 struct policy_handle dom_pol
, user_pol
;
1435 NTSTATUS status
, result
;
1436 struct lsa_PrivilegeSet privs
;
1437 struct lsa_LUIDAttribute
*set
= NULL
;
1440 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1445 printf("Usage: %s SID [rights...]\n", argv
[0]);
1446 return NT_STATUS_OK
;
1449 status
= name_to_sid(cli
, mem_ctx
, &sid
, argv
[1]);
1450 if (!NT_STATUS_IS_OK(status
)) {
1454 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
1455 SEC_FLAG_MAXIMUM_ALLOWED
,
1458 if (!NT_STATUS_IS_OK(status
)) {
1462 status
= dcerpc_lsa_OpenAccount(b
, mem_ctx
,
1465 SEC_FLAG_MAXIMUM_ALLOWED
,
1468 if (!NT_STATUS_IS_OK(status
)) {
1471 if (!NT_STATUS_IS_OK(result
)) {
1476 for (i
=2; i
<argc
; i
++) {
1478 struct lsa_String priv_name
;
1479 struct lsa_LUID luid
;
1481 init_lsa_String(&priv_name
, argv
[i
]);
1483 status
= dcerpc_lsa_LookupPrivValue(b
, mem_ctx
,
1488 if (!NT_STATUS_IS_OK(status
)) {
1491 if (!NT_STATUS_IS_OK(result
)) {
1497 set
= TALLOC_REALLOC_ARRAY(mem_ctx
, set
,
1498 struct lsa_LUIDAttribute
,
1501 return NT_STATUS_NO_MEMORY
;
1504 set
[privs
.count
-1].luid
= luid
;
1505 set
[privs
.count
-1].attribute
= 0;
1510 status
= dcerpc_lsa_AddPrivilegesToAccount(b
, mem_ctx
,
1514 if (!NT_STATUS_IS_OK(status
)) {
1517 if (!NT_STATUS_IS_OK(result
)) {
1522 dcerpc_lsa_Close(b
, mem_ctx
, &user_pol
, &result
);
1523 dcerpc_lsa_Close(b
, mem_ctx
, &dom_pol
, &result
);
1528 static NTSTATUS
cmd_lsa_del_priv(struct rpc_pipe_client
*cli
,
1529 TALLOC_CTX
*mem_ctx
, int argc
,
1532 struct policy_handle dom_pol
, user_pol
;
1533 NTSTATUS status
, result
;
1534 struct lsa_PrivilegeSet privs
;
1535 struct lsa_LUIDAttribute
*set
= NULL
;
1538 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1543 printf("Usage: %s SID [rights...]\n", argv
[0]);
1544 return NT_STATUS_OK
;
1547 status
= name_to_sid(cli
, mem_ctx
, &sid
, argv
[1]);
1548 if (!NT_STATUS_IS_OK(status
)) {
1552 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
1553 SEC_FLAG_MAXIMUM_ALLOWED
,
1556 if (!NT_STATUS_IS_OK(status
)) {
1560 status
= dcerpc_lsa_OpenAccount(b
, mem_ctx
,
1563 SEC_FLAG_MAXIMUM_ALLOWED
,
1566 if (!NT_STATUS_IS_OK(status
)) {
1569 if (!NT_STATUS_IS_OK(result
)) {
1574 for (i
=2; i
<argc
; i
++) {
1576 struct lsa_String priv_name
;
1577 struct lsa_LUID luid
;
1579 init_lsa_String(&priv_name
, argv
[i
]);
1581 status
= dcerpc_lsa_LookupPrivValue(b
, mem_ctx
,
1586 if (!NT_STATUS_IS_OK(status
)) {
1589 if (!NT_STATUS_IS_OK(result
)) {
1595 set
= TALLOC_REALLOC_ARRAY(mem_ctx
, set
,
1596 struct lsa_LUIDAttribute
,
1599 return NT_STATUS_NO_MEMORY
;
1602 set
[privs
.count
-1].luid
= luid
;
1603 set
[privs
.count
-1].attribute
= 0;
1609 status
= dcerpc_lsa_RemovePrivilegesFromAccount(b
, mem_ctx
,
1614 if (!NT_STATUS_IS_OK(status
)) {
1617 if (!NT_STATUS_IS_OK(result
)) {
1622 dcerpc_lsa_Close(b
, mem_ctx
, &user_pol
, &result
);
1623 dcerpc_lsa_Close(b
, mem_ctx
, &dom_pol
, &result
);
1628 static NTSTATUS
cmd_lsa_create_secret(struct rpc_pipe_client
*cli
,
1629 TALLOC_CTX
*mem_ctx
, int argc
,
1632 NTSTATUS status
, result
;
1633 struct policy_handle handle
, sec_handle
;
1634 struct lsa_String name
;
1635 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1638 printf("Usage: %s name\n", argv
[0]);
1639 return NT_STATUS_OK
;
1642 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
1644 SEC_FLAG_MAXIMUM_ALLOWED
,
1646 if (!NT_STATUS_IS_OK(status
)) {
1650 init_lsa_String(&name
, argv
[1]);
1652 status
= dcerpc_lsa_CreateSecret(b
, mem_ctx
,
1655 SEC_FLAG_MAXIMUM_ALLOWED
,
1658 if (!NT_STATUS_IS_OK(status
)) {
1661 if (!NT_STATUS_IS_OK(result
)) {
1667 if (is_valid_policy_hnd(&sec_handle
)) {
1668 dcerpc_lsa_Close(b
, mem_ctx
, &sec_handle
, &result
);
1670 if (is_valid_policy_hnd(&handle
)) {
1671 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
1677 static NTSTATUS
cmd_lsa_delete_secret(struct rpc_pipe_client
*cli
,
1678 TALLOC_CTX
*mem_ctx
, int argc
,
1681 NTSTATUS status
, result
;
1682 struct policy_handle handle
, sec_handle
;
1683 struct lsa_String name
;
1684 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1687 printf("Usage: %s name\n", argv
[0]);
1688 return NT_STATUS_OK
;
1691 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
1693 SEC_FLAG_MAXIMUM_ALLOWED
,
1695 if (!NT_STATUS_IS_OK(status
)) {
1699 init_lsa_String(&name
, argv
[1]);
1701 status
= dcerpc_lsa_OpenSecret(b
, mem_ctx
,
1704 SEC_FLAG_MAXIMUM_ALLOWED
,
1707 if (!NT_STATUS_IS_OK(status
)) {
1710 if (!NT_STATUS_IS_OK(result
)) {
1715 status
= dcerpc_lsa_DeleteObject(b
, mem_ctx
,
1718 if (!NT_STATUS_IS_OK(status
)) {
1721 if (!NT_STATUS_IS_OK(result
)) {
1727 if (is_valid_policy_hnd(&sec_handle
)) {
1728 dcerpc_lsa_Close(b
, mem_ctx
, &sec_handle
, &result
);
1730 if (is_valid_policy_hnd(&handle
)) {
1731 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
1737 static NTSTATUS
cmd_lsa_query_secret(struct rpc_pipe_client
*cli
,
1738 TALLOC_CTX
*mem_ctx
, int argc
,
1741 NTSTATUS status
, result
;
1742 struct policy_handle handle
, sec_handle
;
1743 struct lsa_String name
;
1744 struct lsa_DATA_BUF_PTR new_val
;
1745 NTTIME new_mtime
= 0;
1746 struct lsa_DATA_BUF_PTR old_val
;
1747 NTTIME old_mtime
= 0;
1748 DATA_BLOB session_key
;
1749 DATA_BLOB new_blob
= data_blob_null
;
1750 DATA_BLOB old_blob
= data_blob_null
;
1751 char *new_secret
, *old_secret
;
1752 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1755 printf("Usage: %s name\n", argv
[0]);
1756 return NT_STATUS_OK
;
1759 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
1761 SEC_FLAG_MAXIMUM_ALLOWED
,
1763 if (!NT_STATUS_IS_OK(status
)) {
1767 init_lsa_String(&name
, argv
[1]);
1769 status
= dcerpc_lsa_OpenSecret(b
, mem_ctx
,
1772 SEC_FLAG_MAXIMUM_ALLOWED
,
1775 if (!NT_STATUS_IS_OK(status
)) {
1778 if (!NT_STATUS_IS_OK(result
)) {
1783 ZERO_STRUCT(new_val
);
1784 ZERO_STRUCT(old_val
);
1786 status
= dcerpc_lsa_QuerySecret(b
, mem_ctx
,
1793 if (!NT_STATUS_IS_OK(status
)) {
1796 if (!NT_STATUS_IS_OK(result
)) {
1801 status
= cli_get_session_key(mem_ctx
, cli
, &session_key
);
1802 if (!NT_STATUS_IS_OK(status
)) {
1807 new_blob
= data_blob_const(new_val
.buf
->data
, new_val
.buf
->length
);
1810 old_blob
= data_blob_const(old_val
.buf
->data
, old_val
.buf
->length
);
1813 new_secret
= sess_decrypt_string(mem_ctx
, &new_blob
, &session_key
);
1814 old_secret
= sess_decrypt_string(mem_ctx
, &old_blob
, &session_key
);
1816 d_printf("new secret: %s\n", new_secret
);
1819 d_printf("old secret: %s\n", old_secret
);
1823 if (is_valid_policy_hnd(&sec_handle
)) {
1824 dcerpc_lsa_Close(b
, mem_ctx
, &sec_handle
, &result
);
1826 if (is_valid_policy_hnd(&handle
)) {
1827 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
1833 static NTSTATUS
cmd_lsa_set_secret(struct rpc_pipe_client
*cli
,
1834 TALLOC_CTX
*mem_ctx
, int argc
,
1837 NTSTATUS status
, result
;
1838 struct policy_handle handle
, sec_handle
;
1839 struct lsa_String name
;
1840 struct lsa_DATA_BUF new_val
;
1841 struct lsa_DATA_BUF old_val
;
1843 DATA_BLOB session_key
;
1844 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1847 printf("Usage: %s name secret\n", argv
[0]);
1848 return NT_STATUS_OK
;
1851 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
1853 SEC_FLAG_MAXIMUM_ALLOWED
,
1855 if (!NT_STATUS_IS_OK(status
)) {
1859 init_lsa_String(&name
, argv
[1]);
1861 status
= dcerpc_lsa_OpenSecret(b
, mem_ctx
,
1864 SEC_FLAG_MAXIMUM_ALLOWED
,
1867 if (!NT_STATUS_IS_OK(status
)) {
1870 if (!NT_STATUS_IS_OK(result
)) {
1875 ZERO_STRUCT(new_val
);
1876 ZERO_STRUCT(old_val
);
1878 status
= cli_get_session_key(mem_ctx
, cli
, &session_key
);
1879 if (!NT_STATUS_IS_OK(status
)) {
1883 enc_key
= sess_encrypt_string(argv
[2], &session_key
);
1885 new_val
.length
= enc_key
.length
;
1886 new_val
.size
= enc_key
.length
;
1887 new_val
.data
= enc_key
.data
;
1889 status
= dcerpc_lsa_SetSecret(b
, mem_ctx
,
1894 if (!NT_STATUS_IS_OK(status
)) {
1897 if (!NT_STATUS_IS_OK(result
)) {
1903 if (is_valid_policy_hnd(&sec_handle
)) {
1904 dcerpc_lsa_Close(b
, mem_ctx
, &sec_handle
, &result
);
1906 if (is_valid_policy_hnd(&handle
)) {
1907 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
1913 static NTSTATUS
cmd_lsa_retrieve_private_data(struct rpc_pipe_client
*cli
,
1914 TALLOC_CTX
*mem_ctx
, int argc
,
1917 NTSTATUS status
, result
;
1918 struct policy_handle handle
;
1919 struct lsa_String name
;
1920 struct lsa_DATA_BUF
*val
;
1921 DATA_BLOB session_key
;
1922 DATA_BLOB blob
= data_blob_null
;
1924 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1927 printf("Usage: %s name\n", argv
[0]);
1928 return NT_STATUS_OK
;
1931 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
1933 SEC_FLAG_MAXIMUM_ALLOWED
,
1935 if (!NT_STATUS_IS_OK(status
)) {
1939 init_lsa_String(&name
, argv
[1]);
1943 status
= dcerpc_lsa_RetrievePrivateData(b
, mem_ctx
,
1948 if (!NT_STATUS_IS_OK(status
)) {
1951 if (!NT_STATUS_IS_OK(result
)) {
1956 status
= cli_get_session_key(mem_ctx
, cli
, &session_key
);
1957 if (!NT_STATUS_IS_OK(status
)) {
1962 blob
= data_blob_const(val
->data
, val
->length
);
1965 secret
= sess_decrypt_string(mem_ctx
, &blob
, &session_key
);
1967 d_printf("secret: %s\n", secret
);
1971 if (is_valid_policy_hnd(&handle
)) {
1972 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
1978 static NTSTATUS
cmd_lsa_store_private_data(struct rpc_pipe_client
*cli
,
1979 TALLOC_CTX
*mem_ctx
, int argc
,
1982 NTSTATUS status
, result
;
1983 struct policy_handle handle
;
1984 struct lsa_String name
;
1985 struct lsa_DATA_BUF val
;
1986 DATA_BLOB session_key
;
1988 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
1991 printf("Usage: %s name secret\n", argv
[0]);
1992 return NT_STATUS_OK
;
1995 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
1997 SEC_FLAG_MAXIMUM_ALLOWED
,
1999 if (!NT_STATUS_IS_OK(status
)) {
2003 init_lsa_String(&name
, argv
[1]);
2007 status
= cli_get_session_key(mem_ctx
, cli
, &session_key
);
2008 if (!NT_STATUS_IS_OK(status
)) {
2012 enc_key
= sess_encrypt_string(argv
[2], &session_key
);
2014 val
.length
= enc_key
.length
;
2015 val
.size
= enc_key
.length
;
2016 val
.data
= enc_key
.data
;
2018 status
= dcerpc_lsa_StorePrivateData(b
, mem_ctx
,
2023 if (!NT_STATUS_IS_OK(status
)) {
2026 if (!NT_STATUS_IS_OK(result
)) {
2032 if (is_valid_policy_hnd(&handle
)) {
2033 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
2039 static NTSTATUS
cmd_lsa_create_trusted_domain(struct rpc_pipe_client
*cli
,
2040 TALLOC_CTX
*mem_ctx
, int argc
,
2043 NTSTATUS status
, result
;
2044 struct policy_handle handle
, trustdom_handle
;
2046 struct lsa_DomainInfo info
;
2047 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
2050 printf("Usage: %s name sid\n", argv
[0]);
2051 return NT_STATUS_OK
;
2054 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
2056 SEC_FLAG_MAXIMUM_ALLOWED
,
2058 if (!NT_STATUS_IS_OK(status
)) {
2062 init_lsa_StringLarge(&info
.name
, argv
[1]);
2064 string_to_sid(&sid
, argv
[2]);
2066 status
= dcerpc_lsa_CreateTrustedDomain(b
, mem_ctx
,
2069 SEC_FLAG_MAXIMUM_ALLOWED
,
2072 if (!NT_STATUS_IS_OK(status
)) {
2075 if (!NT_STATUS_IS_OK(result
)) {
2081 if (is_valid_policy_hnd(&trustdom_handle
)) {
2082 dcerpc_lsa_Close(b
, mem_ctx
, &trustdom_handle
, &result
);
2085 if (is_valid_policy_hnd(&handle
)) {
2086 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
2092 static NTSTATUS
cmd_lsa_delete_trusted_domain(struct rpc_pipe_client
*cli
,
2093 TALLOC_CTX
*mem_ctx
, int argc
,
2096 NTSTATUS status
, result
;
2097 struct policy_handle handle
, trustdom_handle
;
2098 struct lsa_String name
;
2099 struct dom_sid
*sid
= NULL
;
2100 struct dcerpc_binding_handle
*b
= cli
->binding_handle
;
2103 printf("Usage: %s name\n", argv
[0]);
2104 return NT_STATUS_OK
;
2107 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
,
2109 SEC_FLAG_MAXIMUM_ALLOWED
,
2111 if (!NT_STATUS_IS_OK(status
)) {
2115 init_lsa_String(&name
, argv
[1]);
2117 status
= dcerpc_lsa_OpenTrustedDomainByName(b
, mem_ctx
,
2120 SEC_FLAG_MAXIMUM_ALLOWED
,
2123 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2128 uint32_t resume_handle
= 0;
2129 struct lsa_DomainList domains
;
2132 status
= dcerpc_lsa_EnumTrustDom(b
, mem_ctx
,
2138 if (!NT_STATUS_IS_OK(status
)) {
2141 if (!NT_STATUS_IS_OK(result
)) {
2146 for (i
=0; i
< domains
.count
; i
++) {
2147 if (strequal(domains
.domains
[i
].name
.string
, argv
[1])) {
2148 sid
= domains
.domains
[i
].sid
;
2154 return NT_STATUS_INVALID_SID
;
2158 status
= dcerpc_lsa_OpenTrustedDomain(b
, mem_ctx
,
2161 SEC_FLAG_MAXIMUM_ALLOWED
,
2164 if (!NT_STATUS_IS_OK(status
)) {
2167 if (!NT_STATUS_IS_OK(result
)) {
2173 status
= dcerpc_lsa_DeleteObject(b
, mem_ctx
,
2176 if (!NT_STATUS_IS_OK(status
)) {
2179 if (!NT_STATUS_IS_OK(result
)) {
2185 if (is_valid_policy_hnd(&trustdom_handle
)) {
2186 dcerpc_lsa_Close(b
, mem_ctx
, &trustdom_handle
, &result
);
2189 if (is_valid_policy_hnd(&handle
)) {
2190 dcerpc_lsa_Close(b
, mem_ctx
, &handle
, &result
);
2197 /* List of commands exported by this module */
2199 struct cmd_set lsarpc_commands
[] = {
2203 { "lsaquery", RPC_RTYPE_NTSTATUS
, cmd_lsa_query_info_policy
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Query info policy", "" },
2204 { "lookupsids", RPC_RTYPE_NTSTATUS
, cmd_lsa_lookup_sids
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Convert SIDs to names", "" },
2205 { "lookupsids3", RPC_RTYPE_NTSTATUS
, cmd_lsa_lookup_sids3
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Convert SIDs to names", "" },
2206 { "lookupnames", RPC_RTYPE_NTSTATUS
, cmd_lsa_lookup_names
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Convert names to SIDs", "" },
2207 { "lookupnames4", RPC_RTYPE_NTSTATUS
, cmd_lsa_lookup_names4
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Convert names to SIDs", "" },
2208 { "lookupnames_level", RPC_RTYPE_NTSTATUS
, cmd_lsa_lookup_names_level
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Convert names to SIDs", "" },
2209 { "enumtrust", RPC_RTYPE_NTSTATUS
, cmd_lsa_enum_trust_dom
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Enumerate trusted domains", "Usage: [preferred max number] [enum context (0)]" },
2210 { "enumprivs", RPC_RTYPE_NTSTATUS
, cmd_lsa_enum_privilege
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Enumerate privileges", "" },
2211 { "getdispname", RPC_RTYPE_NTSTATUS
, cmd_lsa_get_dispname
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Get the privilege name", "" },
2212 { "lsaenumsid", RPC_RTYPE_NTSTATUS
, cmd_lsa_enum_sids
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Enumerate the LSA SIDS", "" },
2213 { "lsacreateaccount", RPC_RTYPE_NTSTATUS
, cmd_lsa_create_account
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Create a new lsa account", "" },
2214 { "lsaenumprivsaccount", RPC_RTYPE_NTSTATUS
, cmd_lsa_enum_privsaccounts
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Enumerate the privileges of an SID", "" },
2215 { "lsaenumacctrights", RPC_RTYPE_NTSTATUS
, cmd_lsa_enum_acct_rights
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Enumerate the rights of an SID", "" },
2216 { "lsaaddpriv", RPC_RTYPE_NTSTATUS
, cmd_lsa_add_priv
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Assign a privilege to a SID", "" },
2217 { "lsadelpriv", RPC_RTYPE_NTSTATUS
, cmd_lsa_del_priv
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Revoke a privilege from a SID", "" },
2218 { "lsaaddacctrights", RPC_RTYPE_NTSTATUS
, cmd_lsa_add_acct_rights
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Add rights to an account", "" },
2219 { "lsaremoveacctrights", RPC_RTYPE_NTSTATUS
, cmd_lsa_remove_acct_rights
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Remove rights from an account", "" },
2220 { "lsalookupprivvalue", RPC_RTYPE_NTSTATUS
, cmd_lsa_lookup_priv_value
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Get a privilege value given its name", "" },
2221 { "lsaquerysecobj", RPC_RTYPE_NTSTATUS
, cmd_lsa_query_secobj
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Query LSA security object", "" },
2222 { "lsaquerytrustdominfo",RPC_RTYPE_NTSTATUS
, cmd_lsa_query_trustdominfo
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Query LSA trusted domains info (given a SID)", "" },
2223 { "lsaquerytrustdominfobyname",RPC_RTYPE_NTSTATUS
, cmd_lsa_query_trustdominfobyname
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Query LSA trusted domains info (given a name), only works for Windows > 2k", "" },
2224 { "lsaquerytrustdominfobysid",RPC_RTYPE_NTSTATUS
, cmd_lsa_query_trustdominfobysid
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Query LSA trusted domains info (given a SID)", "" },
2225 { "getusername", RPC_RTYPE_NTSTATUS
, cmd_lsa_get_username
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Get username", "" },
2226 { "createsecret", RPC_RTYPE_NTSTATUS
, cmd_lsa_create_secret
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Create Secret", "" },
2227 { "deletesecret", RPC_RTYPE_NTSTATUS
, cmd_lsa_delete_secret
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Delete Secret", "" },
2228 { "querysecret", RPC_RTYPE_NTSTATUS
, cmd_lsa_query_secret
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Query Secret", "" },
2229 { "setsecret", RPC_RTYPE_NTSTATUS
, cmd_lsa_set_secret
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Set Secret", "" },
2230 { "retrieveprivatedata", RPC_RTYPE_NTSTATUS
, cmd_lsa_retrieve_private_data
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Retrieve Private Data", "" },
2231 { "storeprivatedata", RPC_RTYPE_NTSTATUS
, cmd_lsa_store_private_data
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Store Private Data", "" },
2232 { "createtrustdom", RPC_RTYPE_NTSTATUS
, cmd_lsa_create_trusted_domain
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Create Trusted Domain", "" },
2233 { "deletetrustdom", RPC_RTYPE_NTSTATUS
, cmd_lsa_delete_trusted_domain
, NULL
, &ndr_table_lsarpc
.syntax_id
, NULL
, "Delete Trusted Domain", "" },