Class: Rex::Proto::LDAP::AuthAdapter::RexRelayNtlm
- Inherits:
-
Net::LDAP::AuthAdapter
- Object
- Net::LDAP::AuthAdapter
- Rex::Proto::LDAP::AuthAdapter::RexRelayNtlm
- Defined in:
- lib/rex/proto/ldap/auth_adapter/rex_relay_ntlm.rb
Overview
This implements NTLM authentication but facilitates operation from within a relay context where the NTLM processing is being handled by an external entity (the relay victim) and it expects to be called repeatedly with the necessary NTLM message
Instance Method Summary collapse
Instance Method Details
#bind(auth) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/rex/proto/ldap/auth_adapter/rex_relay_ntlm.rb', line 14 def bind(auth) mech = 'GSS-SPNEGO' = auth[:ntlm_message] raise Net::LDAP::BindingInformationInvalidError, "Invalid binding information (invalid NTLM message)" unless = @connection.next_msgid sasl = [mech.to_ber, .to_ber].to_ber_contextspecific(3) request = [ Net::LDAP::Connection::LdapVersion.to_ber, "".to_ber, sasl ].to_ber_appsequence(Net::LDAP::PDU::BindRequest) @connection.send(:write, request, nil, ) pdu = @connection.queued_read() if !pdu || pdu.app_tag != Net::LDAP::PDU::BindResult raise Net::LDAP::NoBindResultError, "no bind result" end pdu end |