ruby_smb 1.0.5 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.travis.yml +3 -2
- data/Gemfile +6 -2
- data/README.md +35 -47
- data/examples/anonymous_auth.rb +3 -3
- data/examples/append_file.rb +10 -8
- data/examples/authenticate.rb +9 -5
- data/examples/delete_file.rb +8 -6
- data/examples/enum_registry_key.rb +29 -0
- data/examples/enum_registry_values.rb +31 -0
- data/examples/list_directory.rb +8 -6
- data/examples/negotiate.rb +51 -8
- data/examples/negotiate_with_netbios_service.rb +9 -5
- data/examples/net_share_enum_all.rb +6 -4
- data/examples/pipes.rb +13 -13
- data/examples/query_service_status.rb +64 -0
- data/examples/read_file.rb +8 -6
- data/examples/read_file_encryption.rb +56 -0
- data/examples/read_registry_key_value.rb +33 -0
- data/examples/rename_file.rb +9 -7
- data/examples/tree_connect.rb +7 -5
- data/examples/write_file.rb +9 -7
- data/lib/ruby_smb.rb +4 -1
- data/lib/ruby_smb/client.rb +239 -21
- data/lib/ruby_smb/client/authentication.rb +27 -8
- data/lib/ruby_smb/client/encryption.rb +62 -0
- data/lib/ruby_smb/client/negotiation.rb +154 -12
- data/lib/ruby_smb/client/signing.rb +19 -0
- data/lib/ruby_smb/client/tree_connect.rb +4 -4
- data/lib/ruby_smb/client/utils.rb +8 -7
- data/lib/ruby_smb/client/winreg.rb +46 -0
- data/lib/ruby_smb/crypto.rb +30 -0
- data/lib/ruby_smb/dcerpc.rb +40 -0
- data/lib/ruby_smb/dcerpc/bind.rb +2 -2
- data/lib/ruby_smb/dcerpc/bind_ack.rb +2 -2
- data/lib/ruby_smb/dcerpc/error.rb +6 -0
- data/lib/ruby_smb/dcerpc/ndr.rb +260 -16
- data/lib/ruby_smb/dcerpc/pdu_header.rb +1 -1
- data/lib/ruby_smb/dcerpc/request.rb +41 -9
- data/lib/ruby_smb/dcerpc/rpc_security_attributes.rb +34 -0
- data/lib/ruby_smb/dcerpc/rrp_unicode_string.rb +38 -0
- data/lib/ruby_smb/dcerpc/srvsvc.rb +10 -0
- data/lib/ruby_smb/dcerpc/srvsvc/net_share_enum_all.rb +9 -0
- data/lib/ruby_smb/dcerpc/svcctl.rb +479 -0
- data/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_request.rb +48 -0
- data/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_response.rb +26 -0
- data/lib/ruby_smb/dcerpc/svcctl/close_service_handle_request.rb +25 -0
- data/lib/ruby_smb/dcerpc/svcctl/close_service_handle_response.rb +26 -0
- data/lib/ruby_smb/dcerpc/svcctl/control_service_request.rb +26 -0
- data/lib/ruby_smb/dcerpc/svcctl/control_service_response.rb +26 -0
- data/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_request.rb +35 -0
- data/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_response.rb +23 -0
- data/lib/ruby_smb/dcerpc/svcctl/open_service_w_request.rb +31 -0
- data/lib/ruby_smb/dcerpc/svcctl/open_service_w_response.rb +23 -0
- data/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_request.rb +25 -0
- data/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_response.rb +44 -0
- data/lib/ruby_smb/dcerpc/svcctl/query_service_status_request.rb +23 -0
- data/lib/ruby_smb/dcerpc/svcctl/query_service_status_response.rb +27 -0
- data/lib/ruby_smb/dcerpc/svcctl/service_status.rb +25 -0
- data/lib/ruby_smb/dcerpc/svcctl/start_service_w_request.rb +27 -0
- data/lib/ruby_smb/dcerpc/svcctl/start_service_w_response.rb +25 -0
- data/lib/ruby_smb/dcerpc/winreg.rb +421 -0
- data/lib/ruby_smb/dcerpc/winreg/close_key_request.rb +24 -0
- data/lib/ruby_smb/dcerpc/winreg/close_key_response.rb +27 -0
- data/lib/ruby_smb/dcerpc/winreg/create_key_request.rb +73 -0
- data/lib/ruby_smb/dcerpc/winreg/create_key_response.rb +36 -0
- data/lib/ruby_smb/dcerpc/winreg/enum_key_request.rb +45 -0
- data/lib/ruby_smb/dcerpc/winreg/enum_key_response.rb +42 -0
- data/lib/ruby_smb/dcerpc/winreg/enum_value_request.rb +39 -0
- data/lib/ruby_smb/dcerpc/winreg/enum_value_response.rb +36 -0
- data/lib/ruby_smb/dcerpc/winreg/open_key_request.rb +34 -0
- data/lib/ruby_smb/dcerpc/winreg/open_key_response.rb +25 -0
- data/lib/ruby_smb/dcerpc/winreg/open_root_key_request.rb +43 -0
- data/lib/ruby_smb/dcerpc/winreg/open_root_key_response.rb +35 -0
- data/lib/ruby_smb/dcerpc/winreg/query_info_key_request.rb +27 -0
- data/lib/ruby_smb/dcerpc/winreg/query_info_key_response.rb +40 -0
- data/lib/ruby_smb/dcerpc/winreg/query_value_request.rb +40 -0
- data/lib/ruby_smb/dcerpc/winreg/query_value_response.rb +57 -0
- data/lib/ruby_smb/dcerpc/winreg/regsam.rb +40 -0
- data/lib/ruby_smb/dcerpc/winreg/save_key_request.rb +37 -0
- data/lib/ruby_smb/dcerpc/winreg/save_key_response.rb +23 -0
- data/lib/ruby_smb/dispatcher/base.rb +1 -1
- data/lib/ruby_smb/dispatcher/socket.rb +5 -4
- data/lib/ruby_smb/error.rb +28 -1
- data/lib/ruby_smb/field/stringz16.rb +17 -1
- data/lib/ruby_smb/nbss/session_header.rb +4 -4
- data/lib/ruby_smb/smb1/commands.rb +1 -1
- data/lib/ruby_smb/smb1/file.rb +8 -14
- data/lib/ruby_smb/smb1/packet/session_setup_legacy_request.rb +1 -1
- data/lib/ruby_smb/smb1/packet/session_setup_legacy_response.rb +2 -2
- data/lib/ruby_smb/smb1/packet/session_setup_request.rb +1 -1
- data/lib/ruby_smb/smb1/packet/session_setup_response.rb +2 -2
- data/lib/ruby_smb/smb1/packet/write_andx_request.rb +1 -1
- data/lib/ruby_smb/smb1/pipe.rb +81 -3
- data/lib/ruby_smb/smb1/tree.rb +12 -3
- data/lib/ruby_smb/smb2/bit_field/session_flags.rb +2 -1
- data/lib/ruby_smb/smb2/bit_field/share_flags.rb +6 -4
- data/lib/ruby_smb/smb2/file.rb +51 -61
- data/lib/ruby_smb/smb2/negotiate_context.rb +108 -0
- data/lib/ruby_smb/smb2/packet.rb +2 -0
- data/lib/ruby_smb/smb2/packet/compression_transform_header.rb +41 -0
- data/lib/ruby_smb/smb2/packet/error_packet.rb +2 -4
- data/lib/ruby_smb/smb2/packet/negotiate_request.rb +51 -14
- data/lib/ruby_smb/smb2/packet/negotiate_response.rb +50 -4
- data/lib/ruby_smb/smb2/packet/transform_header.rb +84 -0
- data/lib/ruby_smb/smb2/packet/tree_connect_request.rb +92 -6
- data/lib/ruby_smb/smb2/packet/tree_connect_response.rb +8 -26
- data/lib/ruby_smb/smb2/pipe.rb +80 -3
- data/lib/ruby_smb/smb2/smb2_header.rb +1 -1
- data/lib/ruby_smb/smb2/tree.rb +32 -20
- data/lib/ruby_smb/version.rb +1 -1
- data/ruby_smb.gemspec +5 -3
- data/spec/lib/ruby_smb/client_spec.rb +1583 -102
- data/spec/lib/ruby_smb/crypto_spec.rb +25 -0
- data/spec/lib/ruby_smb/dcerpc/bind_ack_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/bind_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/ndr_spec.rb +1729 -0
- data/spec/lib/ruby_smb/dcerpc/request_spec.rb +50 -7
- data/spec/lib/ruby_smb/dcerpc/rpc_security_attributes_spec.rb +161 -0
- data/spec/lib/ruby_smb/dcerpc/rrp_unicode_string_spec.rb +135 -0
- data/spec/lib/ruby_smb/dcerpc/srvsvc/net_share_enum_all_spec.rb +13 -0
- data/spec/lib/ruby_smb/dcerpc/srvsvc_spec.rb +60 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_request_spec.rb +191 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_response_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/close_service_handle_request_spec.rb +30 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/close_service_handle_response_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/control_service_request_spec.rb +39 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/control_service_response_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_request_spec.rb +78 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_response_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_service_w_request_spec.rb +59 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_service_w_response_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_request_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_response_spec.rb +152 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/query_service_status_request_spec.rb +30 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/query_service_status_response_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/service_status_spec.rb +72 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/start_service_w_request_spec.rb +46 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl/start_service_w_response_spec.rb +30 -0
- data/spec/lib/ruby_smb/dcerpc/svcctl_spec.rb +512 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/close_key_request_spec.rb +28 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/close_key_response_spec.rb +36 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/create_key_request_spec.rb +110 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/create_key_response_spec.rb +44 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_key_request_spec.rb +104 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_key_response_spec.rb +97 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_value_request_spec.rb +94 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_value_response_spec.rb +82 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/open_key_request_spec.rb +74 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/open_key_response_spec.rb +35 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/open_root_key_request_spec.rb +95 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/open_root_key_response_spec.rb +38 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/query_info_key_request_spec.rb +35 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/query_info_key_response_spec.rb +113 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/query_value_request_spec.rb +88 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/query_value_response_spec.rb +138 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/regsam_spec.rb +32 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/save_key_request_spec.rb +57 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/save_key_response_spec.rb +22 -0
- data/spec/lib/ruby_smb/dcerpc/winreg_spec.rb +884 -0
- data/spec/lib/ruby_smb/dcerpc_spec.rb +81 -0
- data/spec/lib/ruby_smb/dispatcher/socket_spec.rb +12 -12
- data/spec/lib/ruby_smb/error_spec.rb +59 -0
- data/spec/lib/ruby_smb/field/stringz16_spec.rb +12 -0
- data/spec/lib/ruby_smb/nbss/session_header_spec.rb +4 -11
- data/spec/lib/ruby_smb/smb1/file_spec.rb +9 -1
- data/spec/lib/ruby_smb/smb1/packet/session_setup_legacy_request_spec.rb +2 -2
- data/spec/lib/ruby_smb/smb1/packet/session_setup_legacy_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/smb1/packet/session_setup_request_spec.rb +2 -2
- data/spec/lib/ruby_smb/smb1/packet/session_setup_response_spec.rb +1 -1
- data/spec/lib/ruby_smb/smb1/pipe_spec.rb +216 -147
- data/spec/lib/ruby_smb/smb2/bit_field/session_flags_spec.rb +9 -0
- data/spec/lib/ruby_smb/smb2/bit_field/share_flags_spec.rb +27 -0
- data/spec/lib/ruby_smb/smb2/file_spec.rb +146 -68
- data/spec/lib/ruby_smb/smb2/negotiate_context_spec.rb +332 -0
- data/spec/lib/ruby_smb/smb2/packet/compression_transform_header_spec.rb +108 -0
- data/spec/lib/ruby_smb/smb2/packet/error_packet_spec.rb +3 -24
- data/spec/lib/ruby_smb/smb2/packet/negotiate_request_spec.rb +138 -3
- data/spec/lib/ruby_smb/smb2/packet/negotiate_response_spec.rb +120 -2
- data/spec/lib/ruby_smb/smb2/packet/transform_header_spec.rb +220 -0
- data/spec/lib/ruby_smb/smb2/packet/tree_connect_request_spec.rb +339 -9
- data/spec/lib/ruby_smb/smb2/packet/tree_connect_response_spec.rb +3 -30
- data/spec/lib/ruby_smb/smb2/pipe_spec.rb +226 -148
- data/spec/lib/ruby_smb/smb2/smb2_header_spec.rb +2 -2
- data/spec/lib/ruby_smb/smb2/tree_spec.rb +88 -9
- metadata +257 -81
- metadata.gz.sig +0 -0
- data/lib/ruby_smb/smb1/dcerpc.rb +0 -72
- data/lib/ruby_smb/smb2/dcerpc.rb +0 -75
@@ -0,0 +1,82 @@
|
|
1
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::EnumValueResponse do
|
2
|
+
subject(:packet) { described_class.new }
|
3
|
+
|
4
|
+
it { is_expected.to respond_to :lp_value_name }
|
5
|
+
it { is_expected.to respond_to :pad }
|
6
|
+
it { is_expected.to respond_to :lp_type }
|
7
|
+
it { is_expected.to respond_to :lp_data }
|
8
|
+
it { is_expected.to respond_to :lpcb_data }
|
9
|
+
it { is_expected.to respond_to :lpcb_len }
|
10
|
+
it { is_expected.to respond_to :error_status }
|
11
|
+
it { is_expected.to respond_to :opnum }
|
12
|
+
|
13
|
+
it 'is little endian' do
|
14
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '#lp_value_name' do
|
18
|
+
it 'is a RrpUnicodeString structure' do
|
19
|
+
expect(packet.lp_value_name).to be_a RubySMB::Dcerpc::RrpUnicodeString
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe '#pad' do
|
24
|
+
it 'is a string' do
|
25
|
+
expect(packet.pad).to be_a BinData::String
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'should keep #lp_type 4-byte aligned' do
|
29
|
+
packet.lp_value_name = "test"
|
30
|
+
expect(packet.lp_type.abs_offset % 4).to eq 0
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe '#lp_type' do
|
35
|
+
it 'is a NdrLpDword structure' do
|
36
|
+
expect(packet.lp_type).to be_a RubySMB::Dcerpc::Ndr::NdrLpDword
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe '#lp_data' do
|
41
|
+
it 'is a NdrLpByteArray structure' do
|
42
|
+
expect(packet.lp_data).to be_a RubySMB::Dcerpc::Ndr::NdrLpByteArray
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe '#lpcb_data' do
|
47
|
+
it 'is a NdrLpDword structure' do
|
48
|
+
expect(packet.lpcb_data).to be_a RubySMB::Dcerpc::Ndr::NdrLpDword
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe '#lpcb_len' do
|
53
|
+
it 'is a NdrLpDword structure' do
|
54
|
+
expect(packet.lpcb_len).to be_a RubySMB::Dcerpc::Ndr::NdrLpDword
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe '#error_status' do
|
59
|
+
it 'is a 32-bit unsigned integer' do
|
60
|
+
expect(packet.error_status).to be_a BinData::Uint32le
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe '#initialize_instance' do
|
65
|
+
it 'sets #opnum to REG_ENUM_VALUE constant' do
|
66
|
+
expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::REG_ENUM_VALUE)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe '#pad_length' do
|
71
|
+
it 'returns 0 when #lp_class is already 4-byte aligned' do
|
72
|
+
packet.lp_value_name = 'align'
|
73
|
+
expect(packet.pad_length).to eq 0
|
74
|
+
end
|
75
|
+
|
76
|
+
it 'returns 2 when #lp_class is only 2-byte aligned' do
|
77
|
+
packet.lp_value_name = 'align' + 'A'
|
78
|
+
expect(packet.pad_length).to eq 2
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
@@ -0,0 +1,74 @@
|
|
1
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::RpcHkey do
|
2
|
+
it 'is NdrContextHandle subclass' do
|
3
|
+
expect(described_class).to be < RubySMB::Dcerpc::Ndr::NdrContextHandle
|
4
|
+
end
|
5
|
+
end
|
6
|
+
|
7
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::OpenKeyRequest do
|
8
|
+
subject(:packet) { described_class.new }
|
9
|
+
|
10
|
+
it { is_expected.to respond_to :hkey }
|
11
|
+
it { is_expected.to respond_to :lp_sub_key }
|
12
|
+
it { is_expected.to respond_to :pad }
|
13
|
+
it { is_expected.to respond_to :dw_options }
|
14
|
+
it { is_expected.to respond_to :sam_desired }
|
15
|
+
it { is_expected.to respond_to :opnum }
|
16
|
+
|
17
|
+
it 'is little endian' do
|
18
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#hkey' do
|
22
|
+
it 'is a RpcHkey structure' do
|
23
|
+
expect(packet.hkey).to be_a RubySMB::Dcerpc::Winreg::RpcHkey
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe '#lp_sub_key' do
|
28
|
+
it 'is a RrpUnicodeString structure' do
|
29
|
+
expect(packet.lp_sub_key).to be_a RubySMB::Dcerpc::RrpUnicodeString
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe '#pad' do
|
34
|
+
it 'is a string' do
|
35
|
+
expect(packet.pad).to be_a BinData::String
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'should keep #dw_options 4-byte aligned' do
|
39
|
+
packet.lp_sub_key = "test"
|
40
|
+
expect(packet.dw_options.abs_offset % 4).to eq 0
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
describe '#dw_options' do
|
45
|
+
it 'is a 32-bit unsigned integer' do
|
46
|
+
expect(packet.dw_options).to be_a BinData::Uint32le
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe '#sam_desired' do
|
51
|
+
it 'is a Regsam structure' do
|
52
|
+
expect(packet.sam_desired).to be_a RubySMB::Dcerpc::Winreg::Regsam
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe '#initialize_instance' do
|
57
|
+
it 'sets #opnum to REG_OPEN_KEY constant' do
|
58
|
+
expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::REG_OPEN_KEY)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe '#pad_length' do
|
63
|
+
it 'returns 0 when #dw_options is already 4-byte aligned' do
|
64
|
+
packet.lp_sub_key = 'align'
|
65
|
+
expect(packet.pad_length).to eq 0
|
66
|
+
end
|
67
|
+
|
68
|
+
it 'returns 2 when #dw_options is only 2-byte aligned' do
|
69
|
+
packet.lp_sub_key = 'align' + 'A'
|
70
|
+
expect(packet.pad_length).to eq 2
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
@@ -0,0 +1,35 @@
|
|
1
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::PrpcHkey do
|
2
|
+
it 'is NdrContextHandle subclass' do
|
3
|
+
expect(described_class).to be < RubySMB::Dcerpc::Ndr::NdrContextHandle
|
4
|
+
end
|
5
|
+
end
|
6
|
+
|
7
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::OpenKeyResponse do
|
8
|
+
subject(:packet) { described_class.new }
|
9
|
+
|
10
|
+
it { is_expected.to respond_to :phk_result }
|
11
|
+
it { is_expected.to respond_to :error_status }
|
12
|
+
it { is_expected.to respond_to :opnum }
|
13
|
+
|
14
|
+
it 'is little endian' do
|
15
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#phk_result' do
|
19
|
+
it 'is a PrpcHkey structure' do
|
20
|
+
expect(packet.phk_result).to be_a RubySMB::Dcerpc::Winreg::PrpcHkey
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe '#error_status' do
|
25
|
+
it 'is a 32-bit unsigned integer' do
|
26
|
+
expect(packet.error_status).to be_a BinData::Uint32le
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe '#initialize_instance' do
|
31
|
+
it 'sets #opnum to REG_OPEN_KEY constant' do
|
32
|
+
expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::REG_OPEN_KEY)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,95 @@
|
|
1
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::PRegistryServerName do
|
2
|
+
it 'is NdrPointer subclass' do
|
3
|
+
expect(described_class).to be < RubySMB::Dcerpc::Ndr::NdrPointer
|
4
|
+
end
|
5
|
+
|
6
|
+
subject(:packet) { described_class.new }
|
7
|
+
|
8
|
+
it { is_expected.to respond_to :referent }
|
9
|
+
|
10
|
+
it 'is little endian' do
|
11
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
12
|
+
end
|
13
|
+
|
14
|
+
describe '#referent' do
|
15
|
+
it 'is a string in UTF-16LE' do
|
16
|
+
expect(packet.referent).to be_a RubySMB::Field::String16
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'only exists if #referent_id is not 0' do
|
20
|
+
packet.referent_id = 0
|
21
|
+
expect(packet.referent?).to be false
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'reads 4-bytes' do
|
25
|
+
str = 'spec_test'.encode('utf-16le')
|
26
|
+
packet.referent.read(str)
|
27
|
+
expect(packet.referent.to_binary_s.bytes).to eq(str.bytes[0,4])
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::OpenRootKeyRequest do
|
33
|
+
subject(:packet) { described_class.new }
|
34
|
+
|
35
|
+
it { is_expected.to respond_to :p_registry_server_name }
|
36
|
+
it { is_expected.to respond_to :sam_desired }
|
37
|
+
it { is_expected.to respond_to :opnum }
|
38
|
+
|
39
|
+
it 'is little endian' do
|
40
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
41
|
+
end
|
42
|
+
|
43
|
+
describe '#p_registry_server_name' do
|
44
|
+
it 'is a PRegistryServerName structure' do
|
45
|
+
expect(packet.p_registry_server_name).to be_a RubySMB::Dcerpc::Winreg::PRegistryServerName
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe '#sam_desired' do
|
50
|
+
it 'is a Regsam structure' do
|
51
|
+
expect(packet.sam_desired).to be_a RubySMB::Dcerpc::Winreg::Regsam
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe '#initialize_instance' do
|
56
|
+
context 'when an #opnum parameter is provided' do
|
57
|
+
it 'sets #opnum to the parameter\'s value' do
|
58
|
+
packet = described_class.new(opnum: RubySMB::Dcerpc::Winreg::OPEN_HKLM)
|
59
|
+
expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::OPEN_HKLM)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
it 'sets #p_registry_server_name.referent to :null' do
|
64
|
+
expect(packet.p_registry_server_name).to eq(:null)
|
65
|
+
end
|
66
|
+
|
67
|
+
context 'when #opnum is not OPEN_HKPD, OPEN_HKPT or OPEN_HKPN' do
|
68
|
+
it 'sets the #sam_desired.maximum flag' do
|
69
|
+
packet = described_class.new(opnum: RubySMB::Dcerpc::Winreg::OPEN_HKCR)
|
70
|
+
expect(packet.sam_desired.maximum).to eq(1)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
context 'when #opnum is OPEN_HKPD' do
|
75
|
+
it 'does not set the #sam_desired.maximum flag' do
|
76
|
+
packet = described_class.new(opnum: RubySMB::Dcerpc::Winreg::OPEN_HKPD)
|
77
|
+
expect(packet.sam_desired.maximum).to eq(0)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
context 'when #opnum is OPEN_HKPT' do
|
82
|
+
it 'does not set the #sam_desired.maximum flag' do
|
83
|
+
packet = described_class.new(opnum: RubySMB::Dcerpc::Winreg::OPEN_HKPT)
|
84
|
+
expect(packet.sam_desired.maximum).to eq(0)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
context 'when #opnum is OPEN_HKPN' do
|
89
|
+
it 'does not set the #sam_desired.maximum flag' do
|
90
|
+
packet = described_class.new(opnum: RubySMB::Dcerpc::Winreg::OPEN_HKPN)
|
91
|
+
expect(packet.sam_desired.maximum).to eq(0)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::PrpcHkey do
|
2
|
+
it 'is NdrContextHandle subclass' do
|
3
|
+
expect(described_class).to be < RubySMB::Dcerpc::Ndr::NdrContextHandle
|
4
|
+
end
|
5
|
+
end
|
6
|
+
|
7
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::OpenRootKeyResponse do
|
8
|
+
subject(:packet) { described_class.new }
|
9
|
+
|
10
|
+
it { is_expected.to respond_to :ph_key}
|
11
|
+
it { is_expected.to respond_to :error_status }
|
12
|
+
it { is_expected.to respond_to :opnum }
|
13
|
+
|
14
|
+
it 'is little endian' do
|
15
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#ph_key' do
|
19
|
+
it 'is a PrpcHkey structure' do
|
20
|
+
expect(packet.ph_key).to be_a RubySMB::Dcerpc::Winreg::PrpcHkey
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe '#error_status' do
|
25
|
+
it 'is a 32-bit unsigned integer' do
|
26
|
+
expect(packet.error_status).to be_a BinData::Uint32le
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe '#initialize_instance' do
|
31
|
+
context 'when an #opnum parameter is provided' do
|
32
|
+
it 'sets #opnum to the parameter\'s value' do
|
33
|
+
packet = described_class.new(opnum: RubySMB::Dcerpc::Winreg::OPEN_HKLM)
|
34
|
+
expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::OPEN_HKLM)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::RpcHkey do
|
2
|
+
it 'is NdrContextHandle subclass' do
|
3
|
+
expect(described_class).to be < RubySMB::Dcerpc::Ndr::NdrContextHandle
|
4
|
+
end
|
5
|
+
end
|
6
|
+
|
7
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::QueryInfoKeyRequest do
|
8
|
+
subject(:packet) { described_class.new }
|
9
|
+
|
10
|
+
it { is_expected.to respond_to :hkey }
|
11
|
+
it { is_expected.to respond_to :lp_class }
|
12
|
+
it { is_expected.to respond_to :opnum }
|
13
|
+
|
14
|
+
it 'is little endian' do
|
15
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '#hkey' do
|
19
|
+
it 'is a RpcHkey structure' do
|
20
|
+
expect(packet.hkey).to be_a RubySMB::Dcerpc::Winreg::RpcHkey
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe '#lp_class' do
|
25
|
+
it 'is a RrpUnicodeString structure' do
|
26
|
+
expect(packet.lp_class).to be_a RubySMB::Dcerpc::RrpUnicodeString
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe '#initialize_instance' do
|
31
|
+
it 'sets #opnum to REG_QUERY_INFO_KEY constant' do
|
32
|
+
expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::REG_QUERY_INFO_KEY)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,113 @@
|
|
1
|
+
RSpec.describe RubySMB::Dcerpc::Winreg::QueryInfoKeyResponse do
|
2
|
+
subject(:packet) { described_class.new }
|
3
|
+
|
4
|
+
it { is_expected.to respond_to :lp_class }
|
5
|
+
it { is_expected.to respond_to :pad }
|
6
|
+
it { is_expected.to respond_to :lpc_sub_keys }
|
7
|
+
it { is_expected.to respond_to :lpc_max_sub_key_len }
|
8
|
+
it { is_expected.to respond_to :lpc_max_class_len }
|
9
|
+
it { is_expected.to respond_to :lpc_values }
|
10
|
+
it { is_expected.to respond_to :lpcb_max_value_name_len }
|
11
|
+
it { is_expected.to respond_to :lpcb_max_value_len }
|
12
|
+
it { is_expected.to respond_to :lpcb_security_descriptor }
|
13
|
+
it { is_expected.to respond_to :lpft_last_write_time }
|
14
|
+
it { is_expected.to respond_to :error_status }
|
15
|
+
it { is_expected.to respond_to :opnum }
|
16
|
+
|
17
|
+
it 'is little endian' do
|
18
|
+
expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#lp_class' do
|
22
|
+
it 'is a RrpUnicodeString structure' do
|
23
|
+
expect(packet.lp_class).to be_a RubySMB::Dcerpc::RrpUnicodeString
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'has an initial value of 0' do
|
27
|
+
expect(packet.lp_class).to eq(0)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#pad' do
|
32
|
+
it 'is a string' do
|
33
|
+
expect(packet.pad).to be_a BinData::String
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'should keep #lpc_sub_keys 4-byte aligned' do
|
37
|
+
packet.lp_class = 'test'
|
38
|
+
expect(packet.lpc_sub_keys.abs_offset % 4).to eq 0
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe '#lpc_sub_keys' do
|
43
|
+
it 'is a 32-bit unsigned integer' do
|
44
|
+
expect(packet.lpc_sub_keys).to be_a BinData::Uint32le
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe '#lpc_max_sub_key_len' do
|
49
|
+
it 'is a 32-bit unsigned integer' do
|
50
|
+
expect(packet.lpc_max_sub_key_len).to be_a BinData::Uint32le
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe '#lpc_max_class_len' do
|
55
|
+
it 'is a 32-bit unsigned integer' do
|
56
|
+
expect(packet.lpc_max_class_len).to be_a BinData::Uint32le
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#lpc_values' do
|
61
|
+
it 'is a 32-bit unsigned integer' do
|
62
|
+
expect(packet.lpc_values).to be_a BinData::Uint32le
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe '#lpcb_max_value_name_len' do
|
67
|
+
it 'is a 32-bit unsigned integer' do
|
68
|
+
expect(packet.lpcb_max_value_name_len).to be_a BinData::Uint32le
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe '#lpcb_max_value_len' do
|
73
|
+
it 'is a 32-bit unsigned integer' do
|
74
|
+
expect(packet.lpcb_max_value_len).to be_a BinData::Uint32le
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe '#lpcb_security_descriptor' do
|
79
|
+
it 'is a 32-bit unsigned integer' do
|
80
|
+
expect(packet.lpcb_security_descriptor).to be_a BinData::Uint32le
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe '#lpft_last_write_time' do
|
85
|
+
it 'is a FileTime structure' do
|
86
|
+
expect(packet.lpft_last_write_time).to be_a RubySMB::Field::FileTime
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
describe '#error_status' do
|
91
|
+
it 'is a 32-bit unsigned integer' do
|
92
|
+
expect(packet.error_status).to be_a BinData::Uint32le
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
describe '#initialize_instance' do
|
97
|
+
it 'sets #opnum to REG_QUERY_INFO_KEY constant' do
|
98
|
+
expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::REG_QUERY_INFO_KEY)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
describe '#pad_length' do
|
103
|
+
it 'returns 0 when #lpc_sub_keys is already 4-byte aligned' do
|
104
|
+
packet.lp_class = 'align'
|
105
|
+
expect(packet.pad_length).to eq 0
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'returns 2 when #lpc_sub_keys is only 2-byte aligned' do
|
109
|
+
packet.lp_class = 'align' + 'A'
|
110
|
+
expect(packet.pad_length).to eq 2
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|