2 Unix SMB/Netbios implementation.
5 Copyright (C) Jean François Micouleau 2001
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 char filter
[]="0123456789ABCDEF";
34 /* change that struct */
35 SAMR_R_QUERY_USERINFO rpc_stub
;
37 ZERO_STRUCT(rpc_stub
);
39 setup_logging("", True
);
46 prs_init(&ps
, 1600, 4, ctx
, MARSHALL
);
48 while (scanf("%s", s
)!=-1) {
49 if (strlen(s
)==2 && strchr(filter
, *s
)!=NULL
&& strchr(filter
, *(s
+1))!=NULL
) {
50 d
=strtol(s
, NULL
, 16);
51 if(!prs_append_data(&ps
, &d
, 1))
52 printf("error while reading data\n");
56 prs_switch_type(&ps
, UNMARSHALL
);
57 prs_set_offset(&ps
, 0);
59 /* change that call */
60 if(!samr_io_r_query_userinfo("", &rpc_stub
, &ps
, 0))
61 printf("error while UNMARSHALLING the data\n");