1 /* packet-dcerpc-rs_pwd_mgmt.c
3 * Routines for rs_pwd_mgmt dissection
4 * Copyright 2004, Jaime Fournier <jaime.fournier@hush.com>
5 * This information is based off the released idl files from opengroup.
6 * ftp://ftp.opengroup.org/pub/dce122/dce/src/security.tar.gz security/idl/rs_pwd_mgmt.idl
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
12 * SPDX-License-Identifier: GPL-2.0-or-later
18 #include <epan/packet.h>
19 #include "packet-dcerpc.h"
21 void proto_register_rs_pwd_mgmt (void);
22 void proto_reg_handoff_rs_pwd_mgmt (void);
24 static int proto_rs_pwd_mgmt
;
25 static int hf_rs_pwd_mgmt_opnum
;
28 static int ett_rs_pwd_mgmt
;
29 static e_guid_t uuid_rs_pwd_mgmt
=
30 { 0x3139a0e2, 0x68da, 0x11cd, {0x91, 0xc7, 0x08, 0x00, 0x09, 0x24, 0x24,
33 static uint16_t ver_rs_pwd_mgmt
= 1;
36 static const dcerpc_sub_dissector rs_pwd_mgmt_dissectors
[] = {
37 {0, "lookup", NULL
, NULL
},
38 {1, "replace", NULL
, NULL
},
39 {2, "get_access", NULL
, NULL
},
40 {3, "test_access", NULL
, NULL
},
41 {4, "test_access_on_behalf", NULL
, NULL
},
42 {5, "get_manager_types", NULL
, NULL
},
43 {6, "get_printstring", NULL
, NULL
},
44 {7, "get_referral", NULL
, NULL
},
45 {8, "get_mgr_types_semantics", NULL
, NULL
},
50 proto_register_rs_pwd_mgmt (void)
52 static hf_register_info hf
[] = {
53 {&hf_rs_pwd_mgmt_opnum
,
54 {"Operation", "rs_pwd_mgmt.opnum", FT_UINT16
, BASE_DEC
, NULL
, 0x0,
62 proto_register_protocol ("DCE/RPC Registry Password Management",
63 "rs_pwd_mgmt", "rs_pwd_mgmt");
64 proto_register_field_array (proto_rs_pwd_mgmt
, hf
, array_length (hf
));
65 proto_register_subtree_array (ett
, array_length (ett
));
69 proto_reg_handoff_rs_pwd_mgmt (void)
71 /* Register the protocol as dcerpc */
72 dcerpc_init_uuid (proto_rs_pwd_mgmt
, ett_rs_pwd_mgmt
, &uuid_rs_pwd_mgmt
,
73 ver_rs_pwd_mgmt
, rs_pwd_mgmt_dissectors
,
74 hf_rs_pwd_mgmt_opnum
);
78 * Editor modelines - https://www.wireshark.org/tools/modelines.html
83 * indent-tabs-mode: nil
86 * ex: set shiftwidth=2 tabstop=8 expandtab:
87 * :indentSize=2:tabSize=8:noTabs=true: