ruby_smb 2.0.10 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.github/workflows/verify.yml +5 -16
- data/examples/auth_capture.rb +71 -0
- data/examples/dump_secrets_from_sid.rb +207 -0
- data/examples/enum_domain_users.rb +75 -0
- data/examples/get_computer_info.rb +42 -0
- data/examples/query_service_status.rb +42 -4
- data/lib/ruby_smb/client/negotiation.rb +1 -1
- data/lib/ruby_smb/client.rb +10 -20
- data/lib/ruby_smb/dcerpc/bind.rb +28 -20
- data/lib/ruby_smb/dcerpc/bind_ack.rb +29 -28
- data/lib/ruby_smb/dcerpc/client.rb +542 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_bind_request.rb +24 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_bind_response.rb +26 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_crack_names_request.rb +57 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_crack_names_response.rb +76 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_domain_controller_info_request.rb +46 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_domain_controller_info_response.rb +168 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_extensions.rb +56 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_get_nc_changes_request.rb +121 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_get_nc_changes_response.rb +118 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_unbind_request.rb +24 -0
- data/lib/ruby_smb/dcerpc/drsr/drs_unbind_response.rb +26 -0
- data/lib/ruby_smb/dcerpc/drsr.rb +909 -0
- data/lib/ruby_smb/dcerpc/epm/epm_ept_map_request.rb +26 -0
- data/lib/ruby_smb/dcerpc/epm/epm_ept_map_response.rb +25 -0
- data/lib/ruby_smb/dcerpc/epm/epm_twrt.rb +211 -0
- data/lib/ruby_smb/dcerpc/epm.rb +75 -0
- data/lib/ruby_smb/dcerpc/error.rb +17 -0
- data/lib/ruby_smb/dcerpc/ndr.rb +1159 -297
- data/lib/ruby_smb/dcerpc/netlogon/netr_server_authenticate3_request.rb +3 -13
- data/lib/ruby_smb/dcerpc/netlogon/netr_server_authenticate3_response.rb +3 -3
- data/lib/ruby_smb/dcerpc/netlogon/netr_server_password_set2_request.rb +3 -13
- data/lib/ruby_smb/dcerpc/netlogon/netr_server_password_set2_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/netlogon/netr_server_req_challenge_request.rb +3 -11
- data/lib/ruby_smb/dcerpc/netlogon/netr_server_req_challenge_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/netlogon.rb +5 -4
- data/lib/ruby_smb/dcerpc/p_syntax_id_t.rb +4 -3
- data/lib/ruby_smb/dcerpc/pdu_header.rb +7 -7
- data/lib/ruby_smb/dcerpc/ptypes.rb +1 -0
- data/lib/ruby_smb/dcerpc/request.rb +79 -32
- data/lib/ruby_smb/dcerpc/response.rb +45 -10
- data/lib/ruby_smb/dcerpc/rpc_auth3.rb +28 -0
- data/lib/ruby_smb/dcerpc/rpc_security_attributes.rb +11 -11
- data/lib/ruby_smb/dcerpc/rrp_rpc_unicode_string.rb +118 -0
- data/lib/ruby_smb/dcerpc/samr/rpc_sid.rb +150 -0
- data/lib/ruby_smb/dcerpc/samr/samr_close_handle_request.rb +23 -0
- data/lib/ruby_smb/dcerpc/samr/samr_close_handle_response.rb +24 -0
- data/lib/ruby_smb/dcerpc/samr/samr_connect_request.rb +32 -0
- data/lib/ruby_smb/dcerpc/samr/samr_connect_response.rb +23 -0
- data/lib/ruby_smb/dcerpc/samr/samr_enumerate_users_in_domain_request.rb +26 -0
- data/lib/ruby_smb/dcerpc/samr/samr_enumerate_users_in_domain_response.rb +55 -0
- data/lib/ruby_smb/dcerpc/samr/samr_get_alias_membership_request.rb +48 -0
- data/lib/ruby_smb/dcerpc/samr/samr_get_alias_membership_response.rb +38 -0
- data/lib/ruby_smb/dcerpc/samr/samr_get_groups_for_user_request.rb +23 -0
- data/lib/ruby_smb/dcerpc/samr/samr_get_groups_for_user_response.rb +48 -0
- data/lib/ruby_smb/dcerpc/samr/samr_lookup_domain_in_sam_server_request.rb +24 -0
- data/lib/ruby_smb/dcerpc/samr/samr_lookup_domain_in_sam_server_response.rb +25 -0
- data/lib/ruby_smb/dcerpc/samr/samr_open_domain_request.rb +27 -0
- data/lib/ruby_smb/dcerpc/samr/samr_open_domain_response.rb +24 -0
- data/lib/ruby_smb/dcerpc/samr/samr_open_user_request.rb +26 -0
- data/lib/ruby_smb/dcerpc/samr/samr_open_user_response.rb +24 -0
- data/lib/ruby_smb/dcerpc/samr/samr_rid_to_sid_request.rb +23 -0
- data/lib/ruby_smb/dcerpc/samr/samr_rid_to_sid_response.rb +23 -0
- data/lib/ruby_smb/dcerpc/samr.rb +613 -0
- data/lib/ruby_smb/dcerpc/sec_trailer.rb +26 -0
- data/lib/ruby_smb/dcerpc/srvsvc/net_share_enum_all.rb +56 -79
- data/lib/ruby_smb/dcerpc/srvsvc.rb +27 -4
- data/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_request.rb +13 -25
- data/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_response.rb +2 -2
- data/lib/ruby_smb/dcerpc/svcctl/close_service_handle_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl/control_service_request.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl/control_service_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_request.rb +4 -14
- data/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl/open_service_w_request.rb +3 -11
- data/lib/ruby_smb/dcerpc/svcctl/open_service_w_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_request.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_response.rb +12 -11
- data/lib/ruby_smb/dcerpc/svcctl/query_service_status_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl/service_status.rb +9 -8
- data/lib/ruby_smb/dcerpc/svcctl/start_service_w_request.rb +3 -3
- data/lib/ruby_smb/dcerpc/svcctl/start_service_w_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/svcctl.rb +1 -3
- data/lib/ruby_smb/dcerpc/uuid.rb +3 -0
- data/lib/ruby_smb/dcerpc/winreg/close_key_response.rb +2 -2
- data/lib/ruby_smb/dcerpc/winreg/create_key_request.rb +2 -13
- data/lib/ruby_smb/dcerpc/winreg/create_key_response.rb +3 -3
- data/lib/ruby_smb/dcerpc/winreg/enum_key_request.rb +3 -20
- data/lib/ruby_smb/dcerpc/winreg/enum_key_response.rb +3 -20
- data/lib/ruby_smb/dcerpc/winreg/enum_value_request.rb +5 -14
- data/lib/ruby_smb/dcerpc/winreg/enum_value_response.rb +5 -14
- data/lib/ruby_smb/dcerpc/winreg/open_key_request.rb +1 -9
- data/lib/ruby_smb/dcerpc/winreg/open_key_response.rb +4 -3
- data/lib/ruby_smb/dcerpc/winreg/open_root_key_request.rb +5 -6
- data/lib/ruby_smb/dcerpc/winreg/open_root_key_response.rb +2 -2
- data/lib/ruby_smb/dcerpc/winreg/query_info_key_response.rb +9 -18
- data/lib/ruby_smb/dcerpc/winreg/query_value_request.rb +4 -14
- data/lib/ruby_smb/dcerpc/winreg/query_value_response.rb +7 -15
- data/lib/ruby_smb/dcerpc/winreg/regsam.rb +3 -1
- data/lib/ruby_smb/dcerpc/winreg/save_key_request.rb +0 -9
- data/lib/ruby_smb/dcerpc/winreg/save_key_response.rb +1 -1
- data/lib/ruby_smb/dcerpc/winreg.rb +10 -14
- data/lib/ruby_smb/dcerpc/wkssvc/netr_wksta_get_info_request.rb +26 -0
- data/lib/ruby_smb/dcerpc/wkssvc/netr_wksta_get_info_response.rb +88 -0
- data/lib/ruby_smb/dcerpc/wkssvc.rb +65 -0
- data/lib/ruby_smb/dcerpc.rb +41 -11
- data/lib/ruby_smb/dialect.rb +45 -0
- data/lib/ruby_smb/dispatcher/base.rb +1 -1
- data/lib/ruby_smb/field/file_time.rb +1 -1
- data/lib/ruby_smb/field/string16.rb +5 -1
- data/lib/ruby_smb/gss/provider/authenticator.rb +42 -0
- data/lib/ruby_smb/gss/provider/ntlm.rb +303 -0
- data/lib/ruby_smb/gss/provider.rb +35 -0
- data/lib/ruby_smb/gss.rb +56 -63
- data/lib/ruby_smb/ntlm.rb +61 -0
- data/lib/ruby_smb/server/server_client/negotiation.rb +156 -0
- data/lib/ruby_smb/server/server_client/session_setup.rb +82 -0
- data/lib/ruby_smb/server/server_client.rb +162 -0
- data/lib/ruby_smb/server.rb +54 -0
- data/lib/ruby_smb/signing.rb +59 -0
- data/lib/ruby_smb/smb1/packet/negotiate_response.rb +11 -11
- data/lib/ruby_smb/smb1/packet/negotiate_response_extended.rb +1 -1
- data/lib/ruby_smb/smb1/packet/session_setup_request.rb +1 -1
- data/lib/ruby_smb/smb1/pipe.rb +4 -0
- data/lib/ruby_smb/smb2/negotiate_context.rb +18 -2
- data/lib/ruby_smb/smb2/packet/negotiate_request.rb +9 -0
- data/lib/ruby_smb/smb2/packet/negotiate_response.rb +0 -1
- data/lib/ruby_smb/smb2/packet/session_setup_response.rb +2 -2
- data/lib/ruby_smb/smb2/packet/tree_connect_request.rb +1 -1
- data/lib/ruby_smb/smb2/pipe.rb +4 -0
- data/lib/ruby_smb/smb2.rb +3 -1
- data/lib/ruby_smb/version.rb +1 -1
- data/lib/ruby_smb.rb +2 -1
- data/spec/lib/ruby_smb/client_spec.rb +8 -11
- data/spec/lib/ruby_smb/dcerpc/bind_ack_spec.rb +69 -41
- data/spec/lib/ruby_smb/dcerpc/bind_spec.rb +75 -21
- data/spec/lib/ruby_smb/dcerpc/client_spec.rb +714 -0
- data/spec/lib/ruby_smb/dcerpc/drsr_spec.rb +2169 -0
- data/spec/lib/ruby_smb/dcerpc/ndr_spec.rb +3792 -1373
- data/spec/lib/ruby_smb/dcerpc/netlogon/netr_server_authenticate3_request_spec.rb +4 -4
- data/spec/lib/ruby_smb/dcerpc/netlogon/netr_server_password_set2_request_spec.rb +4 -4
- data/spec/lib/ruby_smb/dcerpc/netlogon/netr_server_req_challenge_request_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/netlogon/netr_server_req_challenge_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/p_syntax_id_t_spec.rb +18 -4
- data/spec/lib/ruby_smb/dcerpc/pdu_header_spec.rb +27 -1
- data/spec/lib/ruby_smb/dcerpc/request_spec.rb +76 -11
- data/spec/lib/ruby_smb/dcerpc/response_spec.rb +99 -9
- data/spec/lib/ruby_smb/dcerpc/rpc_auth3_spec.rb +75 -0
- data/spec/lib/ruby_smb/dcerpc/rpc_security_attributes_spec.rb +29 -28
- data/spec/lib/ruby_smb/dcerpc/rrp_rpc_unicode_string_spec.rb +340 -0
- data/spec/lib/ruby_smb/dcerpc/samr/rpc_sid_spec.rb +116 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_close_handle_request_spec.rb +40 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_close_handle_response_spec.rb +48 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_connect_request_spec.rb +56 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_connect_response_spec.rb +47 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_enumerate_users_in_domain_request_spec.rb +63 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_enumerate_users_in_domain_response_spec.rb +265 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_lookup_domain_in_sam_server_request_spec.rb +52 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_lookup_domain_in_sam_server_response_spec.rb +36 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_open_domain_request_spec.rb +56 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_open_domain_response_spec.rb +48 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_rid_to_sid_request_spec.rb +48 -0
- data/spec/lib/ruby_smb/dcerpc/samr/samr_rid_to_sid_response_spec.rb +42 -0
- data/spec/lib/ruby_smb/dcerpc/samr_spec.rb +420 -0
- data/spec/lib/ruby_smb/dcerpc/sec_trailer_spec.rb +92 -0
- data/spec/lib/ruby_smb/dcerpc/srvsvc/net_share_enum_all_spec.rb +149 -110
- data/spec/lib/ruby_smb/dcerpc/srvsvc_spec.rb +21 -17
- data/spec/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_request_spec.rb +56 -79
- data/spec/lib/ruby_smb/dcerpc/svcctl/change_service_config_w_response_spec.rb +4 -4
- data/spec/lib/ruby_smb/dcerpc/svcctl/close_service_handle_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl/control_service_request_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl/control_service_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_request_spec.rb +19 -29
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_service_w_request_spec.rb +9 -15
- data/spec/lib/ruby_smb/dcerpc/svcctl/open_service_w_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_request_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl/query_service_config_w_response_spec.rb +22 -22
- data/spec/lib/ruby_smb/dcerpc/svcctl/query_service_status_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl/service_status_spec.rb +18 -14
- data/spec/lib/ruby_smb/dcerpc/svcctl/start_service_w_request_spec.rb +5 -4
- data/spec/lib/ruby_smb/dcerpc/svcctl/start_service_w_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/svcctl_spec.rb +1 -5
- data/spec/lib/ruby_smb/dcerpc/uuid_spec.rb +15 -23
- data/spec/lib/ruby_smb/dcerpc/winreg/close_key_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/winreg/create_key_request_spec.rb +4 -41
- data/spec/lib/ruby_smb/dcerpc/winreg/create_key_response_spec.rb +4 -4
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_key_request_spec.rb +4 -52
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_key_response_spec.rb +4 -56
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_value_request_spec.rb +10 -34
- data/spec/lib/ruby_smb/dcerpc/winreg/enum_value_response_spec.rb +10 -34
- data/spec/lib/ruby_smb/dcerpc/winreg/open_key_request_spec.rb +2 -26
- data/spec/lib/ruby_smb/dcerpc/winreg/open_key_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/winreg/open_root_key_request_spec.rb +17 -25
- data/spec/lib/ruby_smb/dcerpc/winreg/open_root_key_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/winreg/query_info_key_response_spec.rb +20 -44
- data/spec/lib/ruby_smb/dcerpc/winreg/query_value_request_spec.rb +8 -32
- data/spec/lib/ruby_smb/dcerpc/winreg/query_value_response_spec.rb +10 -22
- data/spec/lib/ruby_smb/dcerpc/winreg/regsam_spec.rb +4 -0
- data/spec/lib/ruby_smb/dcerpc/winreg/save_key_request_spec.rb +0 -12
- data/spec/lib/ruby_smb/dcerpc/winreg/save_key_response_spec.rb +2 -2
- data/spec/lib/ruby_smb/dcerpc/winreg_spec.rb +18 -47
- data/spec/lib/ruby_smb/dcerpc/wkssvc/netr_wksta_get_info_request_spec.rb +43 -0
- data/spec/lib/ruby_smb/dcerpc/wkssvc/netr_wksta_get_info_response_spec.rb +410 -0
- data/spec/lib/ruby_smb/dcerpc/wkssvc_spec.rb +70 -0
- data/spec/lib/ruby_smb/field/string16_spec.rb +22 -0
- data/spec/lib/ruby_smb/gss/provider/ntlm/account_spec.rb +32 -0
- data/spec/lib/ruby_smb/gss/provider/ntlm/authenticator_spec.rb +101 -0
- data/spec/lib/ruby_smb/gss/provider/ntlm/os_version_spec.rb +32 -0
- data/spec/lib/ruby_smb/gss/provider/ntlm_spec.rb +113 -0
- data/spec/lib/ruby_smb/server/server_client_spec.rb +156 -0
- data/spec/lib/ruby_smb/server_spec.rb +32 -0
- data/spec/lib/ruby_smb/smb1/pipe_spec.rb +18 -37
- data/spec/lib/ruby_smb/smb2/negotiate_context_spec.rb +2 -2
- data/spec/lib/ruby_smb/smb2/pipe_spec.rb +18 -16
- data/spec/support/bin_helper.rb +9 -0
- data.tar.gz.sig +0 -0
- metadata +119 -6
- metadata.gz.sig +0 -0
- data/lib/ruby_smb/client/signing.rb +0 -64
- data/lib/ruby_smb/dcerpc/rrp_unicode_string.rb +0 -38
- data/spec/lib/ruby_smb/dcerpc/rrp_unicode_string_spec.rb +0 -135
@@ -0,0 +1,156 @@
|
|
1
|
+
require 'securerandom'
|
2
|
+
|
3
|
+
module RubySMB
|
4
|
+
class Server
|
5
|
+
class ServerClient
|
6
|
+
module Negotiation
|
7
|
+
#
|
8
|
+
# Handle an SMB negotiation request. Once negotiation is complete, the state will be updated to :session_setup.
|
9
|
+
# At this point the @dialect will have been set along with other dialect-specific values.
|
10
|
+
#
|
11
|
+
# @param [String] raw_request the negotiation request to process
|
12
|
+
def handle_negotiate(raw_request)
|
13
|
+
response = nil
|
14
|
+
case raw_request[0...4].unpack1('L>')
|
15
|
+
when RubySMB::SMB1::SMB_PROTOCOL_ID
|
16
|
+
request = SMB1::Packet::NegotiateRequest.read(raw_request)
|
17
|
+
response = do_negotiate_smb1(request) if request.is_a?(SMB1::Packet::NegotiateRequest)
|
18
|
+
when RubySMB::SMB2::SMB2_PROTOCOL_ID
|
19
|
+
request = SMB2::Packet::NegotiateRequest.read(raw_request)
|
20
|
+
response = do_negotiate_smb2(request) if request.is_a?(SMB2::Packet::NegotiateRequest)
|
21
|
+
end
|
22
|
+
|
23
|
+
if response.nil?
|
24
|
+
disconnect!
|
25
|
+
else
|
26
|
+
send_packet(response)
|
27
|
+
end
|
28
|
+
|
29
|
+
nil
|
30
|
+
end
|
31
|
+
|
32
|
+
def do_negotiate_smb1(request)
|
33
|
+
client_dialects = request.dialects.map(&:dialect_string).map(&:value)
|
34
|
+
|
35
|
+
if client_dialects.include?(Client::SMB1_DIALECT_SMB2_WILDCARD) && \
|
36
|
+
@server.dialects.any? { |dialect| Dialect[dialect].order == Dialect::ORDER_SMB2 }
|
37
|
+
response = SMB2::Packet::NegotiateResponse.new
|
38
|
+
response.smb2_header.credits = 1
|
39
|
+
response.security_mode.signing_enabled = 1
|
40
|
+
response.dialect_revision = SMB2::SMB2_WILDCARD_REVISION
|
41
|
+
response.server_guid = @server.guid
|
42
|
+
|
43
|
+
response.max_transact_size = 0x800000
|
44
|
+
response.max_read_size = 0x800000
|
45
|
+
response.max_write_size = 0x800000
|
46
|
+
response.system_time.set(Time.now)
|
47
|
+
response.security_buffer_offset = response.security_buffer.abs_offset
|
48
|
+
response.security_buffer = process_gss.buffer
|
49
|
+
return response
|
50
|
+
end
|
51
|
+
|
52
|
+
server_dialects = @server.dialects.select { |dialect| Dialect[dialect].order == Dialect::ORDER_SMB1 }
|
53
|
+
dialect = (server_dialects & client_dialects).first
|
54
|
+
if dialect.nil?
|
55
|
+
# 'NT LM 0.12' is currently the only supported dialect
|
56
|
+
# see: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-cifs/80850595-e301-4464-9745-58e4945eb99b
|
57
|
+
response = SMB1::Packet::NegotiateResponse.new
|
58
|
+
response.parameter_block.word_count = 1
|
59
|
+
response.parameter_block.dialect_index = 0xffff
|
60
|
+
response.data_block.byte_count = 0
|
61
|
+
return response
|
62
|
+
end
|
63
|
+
|
64
|
+
response = SMB1::Packet::NegotiateResponseExtended.new
|
65
|
+
response.parameter_block.dialect_index = client_dialects.index(dialect)
|
66
|
+
response.parameter_block.max_mpx_count = 50
|
67
|
+
response.parameter_block.max_number_vcs = 1
|
68
|
+
response.parameter_block.max_buffer_size = 16644
|
69
|
+
response.parameter_block.max_raw_size = 65536
|
70
|
+
server_time = Time.now
|
71
|
+
response.parameter_block.system_time.set(server_time)
|
72
|
+
response.parameter_block.server_time_zone = server_time.utc_offset
|
73
|
+
response.data_block.server_guid = @server.guid
|
74
|
+
response.data_block.security_blob = process_gss.buffer
|
75
|
+
|
76
|
+
@state = :session_setup
|
77
|
+
@dialect = dialect
|
78
|
+
response
|
79
|
+
end
|
80
|
+
|
81
|
+
def do_negotiate_smb2(request)
|
82
|
+
client_dialects = request.dialects.map { |d| "0x%04x" % d }
|
83
|
+
server_dialects = @server.dialects.select { |dialect| Dialect[dialect].order == Dialect::ORDER_SMB2 }
|
84
|
+
dialect = (server_dialects & client_dialects).first
|
85
|
+
|
86
|
+
response = SMB2::Packet::NegotiateResponse.new
|
87
|
+
response.smb2_header.credits = 1
|
88
|
+
response.smb2_header.message_id = request.smb2_header.message_id
|
89
|
+
response.security_mode.signing_enabled = 1
|
90
|
+
response.server_guid = @server.guid
|
91
|
+
response.max_transact_size = 0x800000
|
92
|
+
response.max_read_size = 0x800000
|
93
|
+
response.max_write_size = 0x800000
|
94
|
+
response.system_time.set(Time.now)
|
95
|
+
if dialect.nil?
|
96
|
+
# see: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-smb2/b39f253e-4963-40df-8dff-2f9040ebbeb1
|
97
|
+
# > If a common dialect is not found, the server MUST fail the request with STATUS_NOT_SUPPORTED.
|
98
|
+
response.smb2_header.nt_status = WindowsError::NTStatus::STATUS_NOT_SUPPORTED.value
|
99
|
+
return response
|
100
|
+
end
|
101
|
+
|
102
|
+
contexts = []
|
103
|
+
hash_algorithm = hash_value = nil
|
104
|
+
if dialect == '0x0311'
|
105
|
+
# see: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-smb2/b39f253e-4963-40df-8dff-2f9040ebbeb1
|
106
|
+
nc = request.find_negotiate_context(SMB2::NegotiateContext::SMB2_PREAUTH_INTEGRITY_CAPABILITIES)
|
107
|
+
hash_algorithm = SMB2::PreauthIntegrityCapabilities::HASH_ALGORITM_MAP[nc&.data&.hash_algorithms&.first]
|
108
|
+
hash_value = "\x00" * 64
|
109
|
+
unless hash_algorithm
|
110
|
+
response.smb2_header.nt_status = WindowsError::NTStatus::STATUS_INVALID_PARAMETER.value
|
111
|
+
return response
|
112
|
+
end
|
113
|
+
|
114
|
+
contexts << SMB2::NegotiateContext.new(
|
115
|
+
context_type: SMB2::NegotiateContext::SMB2_PREAUTH_INTEGRITY_CAPABILITIES,
|
116
|
+
data: {
|
117
|
+
hash_algorithms: [ SMB2::PreauthIntegrityCapabilities::SHA_512 ],
|
118
|
+
salt: SecureRandom.random_bytes(32)
|
119
|
+
}
|
120
|
+
)
|
121
|
+
|
122
|
+
nc = request.find_negotiate_context(SMB2::NegotiateContext::SMB2_ENCRYPTION_CAPABILITIES)
|
123
|
+
cipher = nc&.data&.ciphers&.first
|
124
|
+
cipher = 0 unless SMB2::EncryptionCapabilities::ENCRYPTION_ALGORITHM_MAP.include? cipher
|
125
|
+
contexts << SMB2::NegotiateContext.new(
|
126
|
+
context_type: SMB2::NegotiateContext::SMB2_ENCRYPTION_CAPABILITIES,
|
127
|
+
data: {
|
128
|
+
ciphers: [ cipher ]
|
129
|
+
}
|
130
|
+
)
|
131
|
+
end
|
132
|
+
|
133
|
+
# the order in which the response is built is important to ensure it is valid
|
134
|
+
response.dialect_revision = dialect.to_i(16)
|
135
|
+
response.security_buffer_offset = response.security_buffer.abs_offset
|
136
|
+
response.security_buffer = process_gss.buffer
|
137
|
+
if dialect == '0x0311'
|
138
|
+
response.negotiate_context_offset = response.negotiate_context_list.abs_offset
|
139
|
+
contexts.each { |nc| response.add_negotiate_context(nc) }
|
140
|
+
end
|
141
|
+
@preauth_integrity_hash_algorithm = hash_algorithm
|
142
|
+
@preauth_integrity_hash_value = hash_value
|
143
|
+
|
144
|
+
if dialect == '0x0311'
|
145
|
+
update_preauth_hash(request)
|
146
|
+
update_preauth_hash(response)
|
147
|
+
end
|
148
|
+
|
149
|
+
@state = :session_setup
|
150
|
+
@dialect = dialect
|
151
|
+
response
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
module RubySMB
|
2
|
+
class Server
|
3
|
+
class ServerClient
|
4
|
+
module SessionSetup
|
5
|
+
#
|
6
|
+
# Setup a new session based on the negotiated dialect. Once session setup is complete, the state will be updated
|
7
|
+
# to :authenticated.
|
8
|
+
#
|
9
|
+
# @param [String] raw_request the session setup request to process
|
10
|
+
def handle_session_setup(raw_request)
|
11
|
+
response = nil
|
12
|
+
|
13
|
+
case metadialect.order
|
14
|
+
when Dialect::ORDER_SMB1
|
15
|
+
request = SMB1::Packet::SessionSetupRequest.read(raw_request)
|
16
|
+
response = do_session_setup_smb1(request)
|
17
|
+
when Dialect::ORDER_SMB2
|
18
|
+
request = SMB2::Packet::SessionSetupRequest.read(raw_request)
|
19
|
+
response = do_session_setup_smb2(request)
|
20
|
+
end
|
21
|
+
|
22
|
+
if response.nil?
|
23
|
+
disconnect!
|
24
|
+
else
|
25
|
+
send_packet(response)
|
26
|
+
end
|
27
|
+
|
28
|
+
nil
|
29
|
+
end
|
30
|
+
|
31
|
+
def do_session_setup_smb1(request)
|
32
|
+
gss_result = process_gss(request.data_block.security_blob)
|
33
|
+
return if gss_result.nil?
|
34
|
+
|
35
|
+
response = SMB1::Packet::SessionSetupResponse.new
|
36
|
+
response.smb_header.pid_low = request.smb_header.pid_low
|
37
|
+
response.smb_header.uid = rand(0x10000)
|
38
|
+
response.smb_header.mid = request.smb_header.mid
|
39
|
+
response.smb_header.nt_status = gss_result.nt_status.value
|
40
|
+
response.smb_header.flags.reply = true
|
41
|
+
response.smb_header.flags2.unicode = true
|
42
|
+
response.smb_header.flags2.extended_security = true
|
43
|
+
unless gss_result.buffer.nil?
|
44
|
+
response.parameter_block.security_blob_length = gss_result.buffer.length
|
45
|
+
response.data_block.security_blob = gss_result.buffer
|
46
|
+
end
|
47
|
+
|
48
|
+
if gss_result.nt_status == WindowsError::NTStatus::STATUS_SUCCESS
|
49
|
+
@state = :authenticated
|
50
|
+
@identity = gss_result.identity
|
51
|
+
end
|
52
|
+
|
53
|
+
response
|
54
|
+
end
|
55
|
+
|
56
|
+
def do_session_setup_smb2(request)
|
57
|
+
gss_result = process_gss(request.buffer)
|
58
|
+
return if gss_result.nil?
|
59
|
+
|
60
|
+
response = SMB2::Packet::SessionSetupResponse.new
|
61
|
+
response.smb2_header.nt_status = gss_result.nt_status.value
|
62
|
+
response.smb2_header.credits = 1
|
63
|
+
response.smb2_header.message_id = request.smb2_header.message_id
|
64
|
+
response.smb2_header.session_id = @session_id = @session_id || SecureRandom.random_bytes(4).unpack1('V')
|
65
|
+
response.buffer = gss_result.buffer
|
66
|
+
|
67
|
+
update_preauth_hash(request) if @dialect == '0x0311'
|
68
|
+
if gss_result.nt_status == WindowsError::NTStatus::STATUS_SUCCESS
|
69
|
+
@state = :authenticated
|
70
|
+
@identity = gss_result.identity
|
71
|
+
@session_key = @gss_authenticator.session_key
|
72
|
+
elsif gss_result.nt_status == WindowsError::NTStatus::STATUS_MORE_PROCESSING_REQUIRED && @dialect == '0x0311'
|
73
|
+
update_preauth_hash(response)
|
74
|
+
end
|
75
|
+
|
76
|
+
response
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
@@ -0,0 +1,162 @@
|
|
1
|
+
module RubySMB
|
2
|
+
class Server
|
3
|
+
# This class represents a single connected client to the server. It stores and processes connection specific related
|
4
|
+
# information.
|
5
|
+
class ServerClient
|
6
|
+
|
7
|
+
require 'ruby_smb/dialect'
|
8
|
+
require 'ruby_smb/signing'
|
9
|
+
require 'ruby_smb/server/server_client/negotiation'
|
10
|
+
require 'ruby_smb/server/server_client/session_setup'
|
11
|
+
|
12
|
+
include RubySMB::Signing
|
13
|
+
include RubySMB::Server::ServerClient::Negotiation
|
14
|
+
include RubySMB::Server::ServerClient::SessionSetup
|
15
|
+
|
16
|
+
attr_reader :dialect, :identity, :state, :session_key
|
17
|
+
|
18
|
+
# @param [Server] server the server that accepted this connection
|
19
|
+
# @param [Dispatcher::Socket] dispatcher the connection's socket dispatcher
|
20
|
+
def initialize(server, dispatcher)
|
21
|
+
@server = server
|
22
|
+
@dispatcher = dispatcher
|
23
|
+
@state = :negotiate
|
24
|
+
@dialect = nil
|
25
|
+
@session_id = nil
|
26
|
+
@session_key = nil
|
27
|
+
@gss_authenticator = server.gss_provider.new_authenticator(self)
|
28
|
+
@identity = nil
|
29
|
+
@tree_connections = {}
|
30
|
+
@preauth_integrity_hash_algorithm = nil
|
31
|
+
@preauth_integrity_hash_value = nil
|
32
|
+
end
|
33
|
+
|
34
|
+
#
|
35
|
+
# The dialects metadata definition.
|
36
|
+
#
|
37
|
+
# @return [Dialect::Definition]
|
38
|
+
def metadialect
|
39
|
+
Dialect::ALL[@dialect]
|
40
|
+
end
|
41
|
+
|
42
|
+
#
|
43
|
+
# The peername of the connected socket. This is a combination of the IPv4 or IPv6 address and port number.
|
44
|
+
#
|
45
|
+
# @example Parse the value into an IP address
|
46
|
+
# ::Socket::unpack_sockaddr_in(server_client.getpeername)
|
47
|
+
#
|
48
|
+
# @return [String]
|
49
|
+
def getpeername
|
50
|
+
@dispatcher.tcp_socket.getpeername
|
51
|
+
end
|
52
|
+
|
53
|
+
#
|
54
|
+
# Handle an authenticated request. This is the main handler for all requests after the connection has been
|
55
|
+
# authenticated.
|
56
|
+
#
|
57
|
+
# @param [String] raw_request the request that should be handled
|
58
|
+
def handle_authenticated(raw_request)
|
59
|
+
response = nil
|
60
|
+
|
61
|
+
case raw_request[0...4].unpack1('L>')
|
62
|
+
when RubySMB::SMB1::SMB_PROTOCOL_ID
|
63
|
+
raise NotImplementedError
|
64
|
+
when RubySMB::SMB2::SMB2_PROTOCOL_ID
|
65
|
+
raise NotImplementedError
|
66
|
+
end
|
67
|
+
|
68
|
+
if response.nil?
|
69
|
+
disconnect!
|
70
|
+
return
|
71
|
+
end
|
72
|
+
|
73
|
+
send_packet(response)
|
74
|
+
end
|
75
|
+
|
76
|
+
#
|
77
|
+
# Process a GSS authentication buffer. If no buffer is specified, the request is assumed to be the first in the
|
78
|
+
# negotiation sequence.
|
79
|
+
#
|
80
|
+
# @param [String, nil] buffer the request GSS request buffer that should be processed
|
81
|
+
# @return [Gss::Provider::Result] the result of the processed GSS request
|
82
|
+
def process_gss(buffer=nil)
|
83
|
+
@gss_authenticator.process(buffer)
|
84
|
+
end
|
85
|
+
|
86
|
+
#
|
87
|
+
# Run the processing loop to receive and handle requests. This loop runs until an exception occurs or the
|
88
|
+
# dispatcher socket is closed.
|
89
|
+
#
|
90
|
+
def run
|
91
|
+
loop do
|
92
|
+
begin
|
93
|
+
raw_request = recv_packet
|
94
|
+
rescue RubySMB::Error::CommunicationError
|
95
|
+
break
|
96
|
+
end
|
97
|
+
|
98
|
+
case @state
|
99
|
+
when :negotiate
|
100
|
+
handle_negotiate(raw_request)
|
101
|
+
when :session_setup
|
102
|
+
handle_session_setup(raw_request)
|
103
|
+
when :authenticated
|
104
|
+
handle_authenticated(raw_request)
|
105
|
+
end
|
106
|
+
|
107
|
+
break if @dispatcher.tcp_socket.closed?
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
#
|
112
|
+
# Disconnect the remote client.
|
113
|
+
#
|
114
|
+
def disconnect!
|
115
|
+
@state = nil
|
116
|
+
@dispatcher.tcp_socket.close
|
117
|
+
end
|
118
|
+
|
119
|
+
#
|
120
|
+
# Receive a single SMB packet from the dispatcher.
|
121
|
+
#
|
122
|
+
# @return [String] the raw packet
|
123
|
+
def recv_packet
|
124
|
+
@dispatcher.recv_packet
|
125
|
+
end
|
126
|
+
|
127
|
+
#
|
128
|
+
# Send a single SMB packet using the dispatcher. If necessary, the packet will be signed.
|
129
|
+
#
|
130
|
+
# @param [GenericPacket] packet the packet to send
|
131
|
+
def send_packet(packet)
|
132
|
+
if @state == :authenticated && @identity != Gss::Provider::IDENTITY_ANONYMOUS && !@session_key.nil?
|
133
|
+
case metadialect.family
|
134
|
+
when Dialect::FAMILY_SMB2
|
135
|
+
packet = smb2_sign(packet)
|
136
|
+
when Dialect::FAMILY_SMB3
|
137
|
+
packet = smb3_sign(packet)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
@dispatcher.send_packet(packet)
|
142
|
+
end
|
143
|
+
|
144
|
+
#
|
145
|
+
# Update the preauth integrity hash as used by dialect 3.1.1 for various cryptographic operations. The algorithm
|
146
|
+
# and hash values must have been initialized prior to calling this.
|
147
|
+
#
|
148
|
+
# @param [String] data the data with which to update the preauth integrity hash
|
149
|
+
def update_preauth_hash(data)
|
150
|
+
unless @preauth_integrity_hash_algorithm
|
151
|
+
raise RubySMB::Error::EncryptionError.new(
|
152
|
+
'Cannot compute the Preauth Integrity Hash value: Preauth Integrity Hash Algorithm is nil'
|
153
|
+
)
|
154
|
+
end
|
155
|
+
@preauth_integrity_hash_value = OpenSSL::Digest.digest(
|
156
|
+
@preauth_integrity_hash_algorithm,
|
157
|
+
@preauth_integrity_hash_value + data.to_binary_s
|
158
|
+
)
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
require 'socket'
|
2
|
+
|
3
|
+
module RubySMB
|
4
|
+
# This class provides the SMB server core. Settings that are relevant server wide are managed by this object.
|
5
|
+
# Currently, the server only supports negotiating and authenticating requests. No other server functionality is
|
6
|
+
# available at this time. The negotiating and authentication is supported for SMB versions 1 through 3.1.1.
|
7
|
+
class Server
|
8
|
+
require 'ruby_smb/server/server_client'
|
9
|
+
require 'ruby_smb/gss/provider/ntlm'
|
10
|
+
|
11
|
+
Connection = Struct.new(:client, :thread)
|
12
|
+
|
13
|
+
# @param server_sock the socket on which the server should listen
|
14
|
+
# @param [Gss::Provider] the authentication provider
|
15
|
+
def initialize(server_sock: nil, gss_provider: nil)
|
16
|
+
server_sock = ::TCPServer.new(445) if server_sock.nil?
|
17
|
+
|
18
|
+
@guid = Random.new.bytes(16)
|
19
|
+
@socket = server_sock
|
20
|
+
@connections = []
|
21
|
+
@gss_provider = gss_provider || Gss::Provider::NTLM.new
|
22
|
+
# reject the wildcard dialect because it's not a real dialect we can use for this purpose
|
23
|
+
@dialects = RubySMB::Dialect::ALL.keys.reject { |dialect| dialect == "0x%04x" % RubySMB::SMB2::SMB2_WILDCARD_REVISION }.reverse
|
24
|
+
end
|
25
|
+
|
26
|
+
# Run the server and accept any connections. For each connection, the block will be executed if specified. When the
|
27
|
+
# block returns false, the loop will exit and the server will no long accept new connections.
|
28
|
+
def run(&block)
|
29
|
+
loop do
|
30
|
+
sock = @socket.accept
|
31
|
+
server_client = ServerClient.new(self, RubySMB::Dispatcher::Socket.new(sock))
|
32
|
+
@connections << Connection.new(server_client, Thread.new { server_client.run })
|
33
|
+
|
34
|
+
break unless block.nil? || block.call(server_client)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# The dialects that this server will negotiate with clients, in ascending order of preference.
|
39
|
+
# @!attribute [r] dialects
|
40
|
+
# @return [Array<String>]
|
41
|
+
attr_accessor :dialects
|
42
|
+
|
43
|
+
# The GSS Provider instance that this server will use to authenticate
|
44
|
+
# incoming client connections.
|
45
|
+
# @!attribute [r] gss_provider
|
46
|
+
# @return [RubySMB::Gss::Provider::Base]
|
47
|
+
attr_reader :gss_provider
|
48
|
+
|
49
|
+
# The 16 byte GUID that uniquely identifies this server instance.
|
50
|
+
# @!attribute [r] guid
|
51
|
+
attr_reader :guid
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
@@ -0,0 +1,59 @@
|
|
1
|
+
module RubySMB
|
2
|
+
# Contains the methods for handling packet signing
|
3
|
+
module Signing
|
4
|
+
# The NTLM Session Key used for signing
|
5
|
+
# @!attribute [rw] session_key
|
6
|
+
# @return [String]
|
7
|
+
attr_accessor :session_key
|
8
|
+
|
9
|
+
# Take an SMB1 packet and sign it.
|
10
|
+
#
|
11
|
+
# @param packet [RubySMB::GenericPacket] the packet to sign
|
12
|
+
# @return [RubySMB::GenericPacket] the signed packet
|
13
|
+
def smb1_sign(packet)
|
14
|
+
# Pack the Sequence counter into a int64le
|
15
|
+
packed_sequence_counter = [sequence_counter].pack('Q<')
|
16
|
+
packet.smb_header.security_features = packed_sequence_counter
|
17
|
+
signature = OpenSSL::Digest::MD5.digest(session_key + packet.to_binary_s)[0, 8]
|
18
|
+
packet.smb_header.security_features = signature
|
19
|
+
@sequence_counter += 1
|
20
|
+
|
21
|
+
packet
|
22
|
+
end
|
23
|
+
|
24
|
+
# Take an SMB2 packet and sign it.
|
25
|
+
#
|
26
|
+
# @param packet [RubySMB::GenericPacket] the packet to sign
|
27
|
+
# @return [RubySMB::GenericPacket] the signed packet
|
28
|
+
def smb2_sign(packet)
|
29
|
+
packet.smb2_header.flags.signed = 1
|
30
|
+
packet.smb2_header.signature = "\x00" * 16
|
31
|
+
hmac = OpenSSL::HMAC.digest(OpenSSL::Digest.new('SHA256'), session_key, packet.to_binary_s)
|
32
|
+
packet.smb2_header.signature = hmac[0, 16]
|
33
|
+
|
34
|
+
packet
|
35
|
+
end
|
36
|
+
|
37
|
+
# Take an SMB3 packet and sign it.
|
38
|
+
#
|
39
|
+
# @param packet [RubySMB::GenericPacket] the packet to sign
|
40
|
+
# @return [RubySMB::GenericPacket] the signed packet
|
41
|
+
def smb3_sign(packet)
|
42
|
+
case @dialect
|
43
|
+
when '0x0300', '0x0302'
|
44
|
+
signing_key = Crypto::KDF.counter_mode(@session_key, "SMB2AESCMAC\x00", "SmbSign\x00")
|
45
|
+
when '0x0311'
|
46
|
+
signing_key = Crypto::KDF.counter_mode(@session_key, "SMBSigningKey\x00", @preauth_integrity_hash_value)
|
47
|
+
else
|
48
|
+
raise Error::SigningError.new("Dialect #{@dialect.inspect} is incompatible with SMBv3 signing")
|
49
|
+
end
|
50
|
+
|
51
|
+
packet.smb2_header.flags.signed = 1
|
52
|
+
packet.smb2_header.signature = "\x00" * 16
|
53
|
+
hmac = OpenSSL::CMAC.digest('AES', signing_key, packet.to_binary_s)
|
54
|
+
packet.smb2_header.signature = hmac[0, 16]
|
55
|
+
|
56
|
+
packet
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -8,17 +8,17 @@ module RubySMB
|
|
8
8
|
|
9
9
|
# An SMB_Parameters Block as defined by the {NegotiateResponse}.
|
10
10
|
class ParameterBlock < RubySMB::SMB1::ParameterBlock
|
11
|
-
uint16 :dialect_index,
|
12
|
-
security_mode :security_mode
|
13
|
-
uint16 :max_mpx_count, label: 'Max Multiplex Count'
|
14
|
-
uint16 :max_number_vcs, label: 'Max Virtual Circuits'
|
15
|
-
uint32 :max_buffer_size, label: 'Max Buffer Size'
|
16
|
-
uint32 :max_raw_size, label: 'Max Raw Size'
|
17
|
-
uint32 :session_key, label: 'Session Key'
|
18
|
-
capabilities :capabilities
|
19
|
-
file_time :system_time, label: 'Server System Time'
|
20
|
-
int16 :server_time_zone, label: 'Server TimeZone'
|
21
|
-
uint8 :challenge_length, label: 'Challenge Length', initial_value: 0x08
|
11
|
+
uint16 :dialect_index, label: 'Dialect Index'
|
12
|
+
security_mode :security_mode, onlyif: -> { dialect_index != 0xffff }
|
13
|
+
uint16 :max_mpx_count, label: 'Max Multiplex Count', onlyif: -> { dialect_index != 0xffff }
|
14
|
+
uint16 :max_number_vcs, label: 'Max Virtual Circuits', onlyif: -> { dialect_index != 0xffff }
|
15
|
+
uint32 :max_buffer_size, label: 'Max Buffer Size', onlyif: -> { dialect_index != 0xffff }
|
16
|
+
uint32 :max_raw_size, label: 'Max Raw Size', onlyif: -> { dialect_index != 0xffff }
|
17
|
+
uint32 :session_key, label: 'Session Key', onlyif: -> { dialect_index != 0xffff }
|
18
|
+
capabilities :capabilities, onlyif: -> { dialect_index != 0xffff }
|
19
|
+
file_time :system_time, label: 'Server System Time', onlyif: -> { dialect_index != 0xffff }
|
20
|
+
int16 :server_time_zone, label: 'Server TimeZone', onlyif: -> { dialect_index != 0xffff }
|
21
|
+
uint8 :challenge_length, label: 'Challenge Length', initial_value: 0x08, onlyif: -> { dialect_index != 0xffff }
|
22
22
|
end
|
23
23
|
|
24
24
|
# An SMB_Data Block as defined by the {NegotiateResponse}
|
@@ -8,7 +8,7 @@ module RubySMB
|
|
8
8
|
|
9
9
|
# An SMB_Parameters Block as defined by the {NegotiateResponseExtended}.
|
10
10
|
class ParameterBlock < RubySMB::SMB1::ParameterBlock
|
11
|
-
uint16 :dialect_index,
|
11
|
+
uint16 :dialect_index, label: 'Dialect Index'
|
12
12
|
security_mode :security_mode
|
13
13
|
uint16 :max_mpx_count, label: 'Max Multiplex Count'
|
14
14
|
uint16 :max_number_vcs, label: 'Max Virtual Circuits'
|
@@ -47,7 +47,7 @@ module RubySMB
|
|
47
47
|
|
48
48
|
# Takes an NTLM Type 3 Message and creates the GSS Security Blob
|
49
49
|
# for it and sets it in the {RubySMB::SMB1::Packet::SessionSetupRequest::DataBlock#security_blob}
|
50
|
-
# field. It also
|
50
|
+
# field. It also automatically sets the length in
|
51
51
|
# {RubySMB::SMB1::Packet::SessionSetupRequest::ParameterBlock#security_blob_length}
|
52
52
|
#
|
53
53
|
# @param type3_message [String] the serialized Type 3 NTLM message
|
data/lib/ruby_smb/smb1/pipe.rb
CHANGED
@@ -24,6 +24,10 @@ module RubySMB
|
|
24
24
|
extend RubySMB::Dcerpc::Svcctl
|
25
25
|
when 'winreg', '\\winreg'
|
26
26
|
extend RubySMB::Dcerpc::Winreg
|
27
|
+
when 'samr', '\\samr'
|
28
|
+
extend RubySMB::Dcerpc::Samr
|
29
|
+
when 'wkssvc', '\\wkssvc'
|
30
|
+
extend RubySMB::Dcerpc::Wkssvc
|
27
31
|
end
|
28
32
|
super(tree: tree, response: response, name: name)
|
29
33
|
end
|
@@ -69,9 +69,22 @@ module RubySMB
|
|
69
69
|
class NetnameNegotiateContextId < BinData::Record
|
70
70
|
endian :little
|
71
71
|
|
72
|
-
|
72
|
+
count_bytes_remaining :bytes_remaining
|
73
|
+
default_parameter data_length: nil
|
74
|
+
hide :bytes_remaining
|
75
|
+
|
76
|
+
string16 :net_name, label: 'Net Name', read_length: -> { data_length.nil? ? bytes_remaining : data_length }
|
73
77
|
end
|
74
78
|
|
79
|
+
# An SMB2 TRANSPORT_CAPABILITIES context struct as defined in
|
80
|
+
# [2.2.3.1.5 SMB2_TRANSPORT_CAPABILITIES](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-smb2/450a1888-a645-4988-8638-5a11f4617545)
|
81
|
+
class TransportCapabilities < BinData::Record
|
82
|
+
SMB2_ACCEPT_TRANSPORT_LEVEL_SECURITY = 1 # Transport security is offered to skip SMB2 encryption on this connection.
|
83
|
+
|
84
|
+
endian :little
|
85
|
+
|
86
|
+
uint32 :flags, label: 'Flags'
|
87
|
+
end
|
75
88
|
|
76
89
|
# An SMB2 NEGOTIATE_CONTEXT struct as defined in
|
77
90
|
# [2.2.3.1 SMB2 NEGOTIATE_CONTEXT Request Values](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-smb2/15332256-522e-4a53-8cd7-0bd17678a2f7)
|
@@ -84,6 +97,8 @@ module RubySMB
|
|
84
97
|
SMB2_COMPRESSION_CAPABILITIES = 0x0003
|
85
98
|
# The NegotiateContext Data field contains the server name to which the client connects.
|
86
99
|
SMB2_NETNAME_NEGOTIATE_CONTEXT_ID = 0x0005
|
100
|
+
# The NegotiateContext Data field contains the transport capabilities, as specified in section 2.2.3.1.5.
|
101
|
+
SMB2_TRANSPORT_CAPABILITIES = 0x0006
|
87
102
|
|
88
103
|
endian :little
|
89
104
|
|
@@ -95,7 +110,8 @@ module RubySMB
|
|
95
110
|
preauth_integrity_capabilities SMB2_PREAUTH_INTEGRITY_CAPABILITIES, label: 'Preauthentication Integrity Capabilities'
|
96
111
|
encryption_capabilities SMB2_ENCRYPTION_CAPABILITIES, label: 'Encryption Capabilities'
|
97
112
|
compression_capabilities SMB2_COMPRESSION_CAPABILITIES, label: 'Compression Capabilities'
|
98
|
-
netname_negotiate_context_id SMB2_NETNAME_NEGOTIATE_CONTEXT_ID, label: 'Netname Negotiate Context ID'
|
113
|
+
netname_negotiate_context_id SMB2_NETNAME_NEGOTIATE_CONTEXT_ID, label: 'Netname Negotiate Context ID', data_length: :data_length
|
114
|
+
transport_capabilities SMB2_TRANSPORT_CAPABILITIES, label: 'Transport Capabilities'
|
99
115
|
end
|
100
116
|
|
101
117
|
def pad_length
|
@@ -64,6 +64,15 @@ module RubySMB
|
|
64
64
|
self.negotiate_context_list
|
65
65
|
end
|
66
66
|
|
67
|
+
# Find the first Negotiate Context structure that matches the given
|
68
|
+
# context type
|
69
|
+
#
|
70
|
+
# @param [Integer] the Negotiate Context structure you wish to add
|
71
|
+
# @return [NegotiateContext] the Negotiate Context structure or nil if
|
72
|
+
# not found
|
73
|
+
def find_negotiate_context(type)
|
74
|
+
negotiate_context_list.find { |nc| nc.context_type == type }
|
75
|
+
end
|
67
76
|
|
68
77
|
private
|
69
78
|
|
@@ -11,8 +11,8 @@ module RubySMB
|
|
11
11
|
uint16 :structure_size, label: 'Structure Size', initial_value: 9
|
12
12
|
session_flags :session_flags
|
13
13
|
uint16 :security_buffer_offset, label: 'Security Buffer Offset', initial_value: 0x48
|
14
|
-
uint16 :security_buffer_length, label: 'Security Buffer Length'
|
15
|
-
string :buffer, label: 'Security Buffer',
|
14
|
+
uint16 :security_buffer_length, label: 'Security Buffer Length', initial_value: -> { buffer.length }
|
15
|
+
string :buffer, label: 'Security Buffer', read_length: -> { security_buffer_length }
|
16
16
|
|
17
17
|
def initialize_instance
|
18
18
|
super
|
@@ -101,7 +101,7 @@ module RubySMB
|
|
101
101
|
path.to_binary_s.length
|
102
102
|
end
|
103
103
|
end
|
104
|
-
string16 :path, label: 'Path Buffer', onlyif: -> { flags != SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT }
|
104
|
+
string16 :path, label: 'Path Buffer', onlyif: -> { flags != SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT }, read_length: -> { path_length }
|
105
105
|
tree_connect_request_extension :tree_connect_request_extension, label: 'Tree Connect Request Extension', onlyif: -> { flags == SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT }
|
106
106
|
end
|
107
107
|
end
|