summaryrefslogtreecommitdiff
path: root/source3/rpcclient/cmd_samr.c
blob: 23e2fab0e781e4b5c125ffea375555f153bb2225 (plain)
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
#define NEW_NTDOMAIN 1
/* 
   Unix SMB/Netbios implementation.
   Version 2.2
   RPC pipe client

   Copyright (C) Andrew Tridgell              1992-2000,
   Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
   Copyright (C) Elrond                            2000
   Copyright (C) Tim Potter 2000

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "includes.h"

extern pstring server;
extern DOM_SID domain_sid;

/****************************************************************************
 display sam_user_info_21 structure
 ****************************************************************************/
static void display_sam_user_info_21(SAM_USER_INFO_21 *usr)
{
	fstring temp;

	unistr2_to_ascii(temp, &usr->uni_user_name, sizeof(temp)-1);
	printf("\tUser Name   :\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_full_name, sizeof(temp)-1);
	printf("\tFull Name   :\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_home_dir, sizeof(temp)-1);
	printf("\tHome Drive  :\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_dir_drive, sizeof(temp)-1);
	printf("\tDir Drive   :\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_profile_path, sizeof(temp)-1);
	printf("\tProfile Path:\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_logon_script, sizeof(temp)-1);
	printf("\tLogon Script:\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_acct_desc, sizeof(temp)-1);
	printf("\tDescription :\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_workstations, sizeof(temp)-1);
	printf("\tWorkstations:\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_unknown_str, sizeof(temp)-1);
	printf("\tUnknown Str :\t%s\n", temp);
	
	unistr2_to_ascii(temp, &usr->uni_munged_dial, sizeof(temp)-1);
	printf("\tRemote Dial :\t%s\n", temp);
	
	printf("\tLogon Time               :\t%s\n", 
	       http_timestring(nt_time_to_unix(&usr->logon_time)));
	printf("\tLogoff Time              :\t%s\n", 
	       http_timestring(nt_time_to_unix(&usr->logoff_time)));
	printf("\tKickoff Time             :\t%s\n", 
	       http_timestring(nt_time_to_unix(&usr->kickoff_time)));
	printf("\tPassword last set Time   :\t%s\n", 
	       http_timestring(nt_time_to_unix(&usr->pass_last_set_time)));
	printf("\tPassword can change Time :\t%s\n", 
	       http_timestring(nt_time_to_unix(&usr->pass_can_change_time)));
	printf("\tPassword must change Time:\t%s\n", 
	       http_timestring(nt_time_to_unix(&usr->pass_must_change_time)));
	
	printf("\tunknown_2[0..31]...\n"); /* user passwords? */
	
	printf("\tuser_rid :\t%x\n"  , usr->user_rid ); /* User ID */
	printf("\tgroup_rid:\t%x\n"  , usr->group_rid); /* Group ID */
	printf("\tacb_info :\t%04x\n", usr->acb_info ); /* Account Control Info */
	
	printf("\tunknown_3:\t%08x\n", usr->unknown_3); /* 0x00ff ffff */
	printf("\tlogon_divs:\t%d\n", usr->logon_divs); /* 0x0000 00a8 which is 168 which is num hrs in a week */
	printf("\tunknown_5:\t%08x\n", usr->unknown_5); /* 0x0002 0000 */
	
	printf("\tpadding1[0..7]...\n");
	
	if (usr->ptr_logon_hrs) {
		printf("\tlogon_hrs[0..%d]...\n", usr->logon_hrs.len);
	}
}

/* Query user information */

static uint32 cmd_samr_query_user(int argc, char **argv) 
{
	struct cli_state cli;
	POLICY_HND connect_pol, domain_pol, user_pol;
	uint32 result = NT_STATUS_UNSUCCESSFUL, info_level = 21;
	struct ntuser_creds creds;
	BOOL got_connect_pol = False, got_domain_pol = False,
		got_user_pol = False;
	SAM_USERINFO_CTR user_ctr;
	SAM_USER_INFO_21 info_21;
	
	if (argc != 1) {
		printf("Usage: %s\n", argv[0]);
		return 0;
	}

	/* Open a lsa handle */

	ZERO_STRUCT(cli);
	init_rpcclient_creds(&creds);

	if (!cli_samr_initialise(&cli, server, &creds)) {
		goto done;
	}
	
	if ((result = cli_samr_connect(&cli, server, MAXIMUM_ALLOWED_ACCESS,
				       &connect_pol)) !=
	    NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_connect_pol = True;
	fetch_domain_sid();

	if ((result = cli_samr_open_domain(&cli, &connect_pol,
					   MAXIMUM_ALLOWED_ACCESS,
					   &domain_sid, &domain_pol))
	     != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_domain_pol = True;

	if ((result = cli_samr_open_user(&cli, &domain_pol,
					 MAXIMUM_ALLOWED_ACCESS,
					 0x1f4, &user_pol))
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_user_pol = True;

	ZERO_STRUCT(user_ctr);
	ZERO_STRUCT(info_21);

	user_ctr.info.id21 = &info_21;

	if ((result = cli_samr_query_userinfo(&cli, &user_pol, info_level,
					      &user_ctr)) 
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	display_sam_user_info_21(&info_21);

 done:
	if (got_user_pol) cli_samr_close(&cli, &user_pol);
	if (got_domain_pol) cli_samr_close(&cli, &domain_pol);
	if (got_connect_pol) cli_samr_close(&cli, &connect_pol);

	cli_samr_shutdown(&cli);

	return result;
}

/****************************************************************************
 display group info
 ****************************************************************************/
static void display_group_info1(GROUP_INFO1 *info1)
{
	fstring temp;

	unistr2_to_ascii(temp, &info1->uni_acct_name, sizeof(temp)-1);
	printf("\tGroup Name:\t%s\n", temp);
	unistr2_to_ascii(temp, &info1->uni_acct_desc, sizeof(temp)-1);
	printf("\tDescription:\t%s\n", temp);
	printf("\tunk1:%d\n", info1->unknown_1);
	printf("\tNum Members:%d\n", info1->num_members);
}

/****************************************************************************
 display group info
 ****************************************************************************/
static void display_group_info4(GROUP_INFO4 *info4)
{
	fstring desc;

	unistr2_to_ascii(desc, &info4->uni_acct_desc, sizeof(desc)-1);
	printf("\tGroup Description:%s\n", desc);
}

/****************************************************************************
 display sam sync structure
 ****************************************************************************/
static void display_group_info_ctr(GROUP_INFO_CTR *ctr)
{
	switch (ctr->switch_value1) {
	    case 1: {
		    display_group_info1(&ctr->group.info1);
		    break;
	    }
	    case 4: {
		    display_group_info4(&ctr->group.info4);
		    break;
	    }
	}
}

/* Query group information */

static uint32 cmd_samr_query_group(int argc, char **argv) 
{
	struct cli_state cli;
	POLICY_HND connect_pol, domain_pol, group_pol;
	uint32 result = NT_STATUS_UNSUCCESSFUL, info_level = 1;
	struct ntuser_creds creds;
	BOOL got_connect_pol = False, got_domain_pol = False,
		got_group_pol = False;
	GROUP_INFO_CTR group_ctr;
	
	if (argc != 1) {
		printf("Usage: %s\n", argv[0]);
		return 0;
	}

	/* Open a lsa handle */

	ZERO_STRUCT(cli);
	init_rpcclient_creds(&creds);

	if (!cli_samr_initialise(&cli, server, &creds)) {
		goto done;
	}
	
	if ((result = cli_samr_connect(&cli, server, MAXIMUM_ALLOWED_ACCESS,
				       &connect_pol)) !=
	    NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_connect_pol = True;
	fetch_domain_sid();

	if ((result = cli_samr_open_domain(&cli, &connect_pol,
					   MAXIMUM_ALLOWED_ACCESS,
					   &domain_sid, &domain_pol))
	     != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_domain_pol = True;

	if ((result = cli_samr_open_group(&cli, &domain_pol,
					  MAXIMUM_ALLOWED_ACCESS,
					  0x202, &group_pol))
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_group_pol = True;

	ZERO_STRUCT(group_ctr);

	if ((result = cli_samr_query_groupinfo(&cli, &group_pol, info_level,
					       &group_ctr)) 
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	display_group_info_ctr(&group_ctr);

 done:
	if (got_group_pol) cli_samr_close(&cli, &group_pol);
	if (got_domain_pol) cli_samr_close(&cli, &domain_pol);
	if (got_connect_pol) cli_samr_close(&cli, &connect_pol);

	cli_samr_shutdown(&cli);

	return result;
}

/* Query groups a user is a member of */

static uint32 cmd_samr_query_usergroups(int argc, char **argv) 
{
	struct cli_state cli;
	POLICY_HND connect_pol, domain_pol, user_pol;
	uint32 result = NT_STATUS_UNSUCCESSFUL;
	struct ntuser_creds creds;
	BOOL got_connect_pol = False, got_domain_pol = False,
		got_user_pol = False;
	uint32 num_groups, user_rid;
	DOM_GID *user_gids;
	int i;
	
	if (argc != 2) {
		printf("Usage: %s rid/name\n", argv[0]);
		return 0;
	}

	sscanf(argv[1], "%i", &user_rid);

	/* Open a lsa handle */

	ZERO_STRUCT(cli);
	init_rpcclient_creds(&creds);

	if (!cli_samr_initialise(&cli, server, &creds)) {
		goto done;
	}
	
	if ((result = cli_samr_connect(&cli, server, MAXIMUM_ALLOWED_ACCESS,
				       &connect_pol)) !=
	    NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_connect_pol = True;
	fetch_domain_sid();

	if ((result = cli_samr_open_domain(&cli, &connect_pol,
					   MAXIMUM_ALLOWED_ACCESS,
					   &domain_sid, &domain_pol))
	     != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_domain_pol = True;

	if ((result = cli_samr_open_user(&cli, &domain_pol,
					 MAXIMUM_ALLOWED_ACCESS,
					 user_rid, &user_pol))
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_user_pol = True;

	if ((result = cli_samr_query_usergroups(&cli, &user_pol,
						&num_groups, &user_gids))
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	for (i = 0; i < num_groups; i++) {
		printf("\tgroup rid:[0x%x] attr:[0x%x]\n", 
		       user_gids[i].g_rid, user_gids[i].attr);
	}

 done:
	if (got_user_pol) cli_samr_close(&cli, &user_pol);
	if (got_domain_pol) cli_samr_close(&cli, &domain_pol);
	if (got_connect_pol) cli_samr_close(&cli, &connect_pol);

	cli_samr_shutdown(&cli);

	return result;
}

/* Query members of a group */

static uint32 cmd_samr_query_groupmem(int argc, char **argv) 
{
	struct cli_state cli;
	POLICY_HND connect_pol, domain_pol, group_pol;
	uint32 result = NT_STATUS_UNSUCCESSFUL;
	struct ntuser_creds creds;
	BOOL got_connect_pol = False, got_domain_pol = False,
		got_group_pol = False;
	uint32 num_members, *group_rids, *group_attrs, group_rid;
	int i;
	
	if (argc != 2) {
		printf("Usage: %s rid/name\n", argv[0]);
		return 0;
	}

	sscanf(argv[1], "%i", &group_rid);

	/* Open a lsa handle */

	ZERO_STRUCT(cli);
	init_rpcclient_creds(&creds);

	if (!cli_samr_initialise(&cli, server, &creds)) {
		goto done;
	}
	
	if ((result = cli_samr_connect(&cli, server, MAXIMUM_ALLOWED_ACCESS,
				       &connect_pol)) !=
	    NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_connect_pol = True;
	fetch_domain_sid();

	if ((result = cli_samr_open_domain(&cli, &connect_pol,
					   MAXIMUM_ALLOWED_ACCESS,
					   &domain_sid, &domain_pol))
	     != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_domain_pol = True;

	if ((result = cli_samr_open_group(&cli, &domain_pol,
					  MAXIMUM_ALLOWED_ACCESS,
					  group_rid, &group_pol))
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	got_group_pol = True;

	if ((result = cli_samr_query_groupmem(&cli, &group_pol,
					      &num_members, &group_rids,
					      &group_attrs))
	    != NT_STATUS_NOPROBLEMO) {
		goto done;
	}

	for (i = 0; i < num_members; i++) {
		printf("\trid:[0x%x] attr:[0x%x]\n", group_rids[i],
		       group_attrs[i]);
	}

 done:
	if (got_group_pol) cli_samr_close(&cli, &group_pol);
	if (got_domain_pol) cli_samr_close(&cli, &domain_pol);
	if (got_connect_pol) cli_samr_close(&cli, &connect_pol);

	cli_samr_shutdown(&cli);

	return result;
}

/* List of commands exported by this module */

struct cmd_set samr_commands[] = {
	{ "queryuser", cmd_samr_query_user, "Query user info" },
	{ "querygroup", cmd_samr_query_group, "Query group info" },
	{ "queryusergroups", cmd_samr_query_usergroups, "Query user groups" },
	{ "querygroupmem", cmd_samr_query_groupmem, "Query group membership" },
	{ NULL, NULL, NULL }
};

#undef NEW_NTDOMAIN