2017 © Pedro Peláez
 

library php-ntlm

Message encoder/decoder and password hasher for the NTLM authentication protocol

image

robinpowered/php-ntlm

Message encoder/decoder and password hasher for the NTLM authentication protocol

  • Monday, May 2, 2016
  • by Rican7
  • Repository
  • 9 Watchers
  • 10 Stars
  • 23,118 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 9 Versions
  • 5 % Grown

The README.md

PHP NTLM

Build Status Quality Score Latest Stable Version, (*1)

PHP-NTLM is a library that handles the encoding and decoding of messages used in the challenge-and-response flow of the NTLM authentication protocol, while also providing separate injectable credential hashing mechanisms to allow for a more secure version of a credential for storage (rather than storing passwords in "plain-text")., (*2)

Features

  • NTLM client message encoding and decoding
  • Multiple text-encoding native-extensions supported
  • LM, NTv1, and NTv2 hashing algorithms supported

Requirements

  • 64-bit PHP runtime (NTLM negotiation bit flags extend beyond the 32-bit integer size)
  • PHP >=7.1.0

Installation

  1. Get Composer
  2. Add robinpowered/php-ntlm to your Composer required dependencies: composer require robinpowered/php-ntlm
  3. Include the Composer autoloader

Example Usage

// Using Guzzle
$client = new Client();
$request = new Request('get', 'https://my-exchange-url.com');
$user_name = 'user_name';
$password = 'password';
$target_name = 'target_name';
$host_name = 'host_name';

$encoding_converter = new MbstringEncodingConverter();
$random_byte_generator = new NativeRandomByteGenerator();
$hasher_factory = HasherFactory::createWithDetectedSupportedAlgorithms();

$negotiate_message_encoder = new NegotiateMessageEncoder($encoding_converter);
$challenge_message_decoder = new ChallengeMessageDecoder();

$keyed_hasher_factory = KeyedHasherFactory::createWithDetectedSupportedAlgorithms();

$nt1_hasher = new NtV1Hasher($hasher_factory, $encoding_converter);
$nt2_hasher = new NtV2Hasher($nt1_hasher, $keyed_hasher_factory, $encoding_converter);

$authenticate_message_encoder = new NtlmV2AuthenticateMessageEncoder(
    $encoding_converter,
    $nt2_hasher,
    $random_byte_generator,
    $keyed_hasher_factory
);

$negotiate_message = $negotiate_message_encoder->encode(
    $target_name,
    $host_name
);

// Send negotiate message
$request->setHeader('Authorization', sprintf('NTLM %s', base64_encode($negotiate_message)));
$response = $client->send($request);

// Decode returned challenge message
$authenticate_headers = $response->getHeaderAsArray('WWW-Authenticate');
foreach ($authenticate_headers as $header_string) {
    $ntlm_matches = preg_match('/NTLM( (.*))?/', $header_string, $ntlm_header);

    if (0 < $ntlm_matches && isset($ntlm_header[2])) {
        $raw_server_challenge = base64_decode($ntlm_header[2]);
        break;
    }
}
$server_challenge = $challenge_message_decoder->decode($raw_server_challenge);

$authenticate_message = $authenticate_message_encoder->encode(
    $user_name,
    $target_name,
    $host_name,
    new Password($password),
    $server_challenge
);

// Send authenticate message
$request->setHeader('Authorization', sprintf('NTLM %s', base64_encode($authenticate_message)));
$client->send($request);

TODO

  • [x] LM hashing
  • [x] NTv1 hashing
  • [x] NTv2 hashing
  • [x] NTLM negotiate message encoding
  • [x] NTLM challenge message decoding
    • [x] Message structure and data validation
    • [x] Negotiate flag decoding
    • [x] Server challenge "nonce" handling
    • [x] TargetName parsing/handling
    • [x] Optional) TargetInfo parsing/handling
      • [ ] Optional) AV_PAIR decodingOptional) AV_PAIR decoding
      Optional) TargetInfo parsing/handling
      • [ ] Optional) AV_PAIR decodingOptional) AV_PAIR decoding
    • [ ] Optional) Version parsing/handling (for debugging purposes only)Optional) Version parsing/handling (for debugging purposes only)
  • [x] NTLM authenticate message encoding
    • [x] NTLM v1 response support
    • [x] NTLM v2 response support
    • [x] Extended session security (NTLM2 session key) support
    • [ ] Add-on) Encrypted session key exchange supportAdd-on) Encrypted session key exchange support
  • [ ] Datagram ("connectionless") support
  • [ ] Tests

License

PHP-NTLM is licensed under the Apache License, Version 2.0., (*3)


Copyright 2019 Robin Powered, Inc., (*4)

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at, (*5)

http://www.apache.org/licenses/LICENSE-2.0, (*6)

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License., (*7)

The Versions

02/05 2016

dev-master

9999999-dev

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

02/05 2016

v0.4.0

0.4.0.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

11/01 2016

v0.3.4

0.3.4.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

22/12 2015

v0.3.3

0.3.3.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

16/11 2015

v0.3.2

0.3.2.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

28/09 2015

v0.3.1

0.3.1.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

28/09 2015

v0.3.0

0.3.0.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

04/09 2015

v0.2.0

0.2.0.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm

27/08 2015

v0.1.0

0.1.0.0

Message encoder/decoder and password hasher for the NTLM authentication protocol

  Sources   Download

Apache-2.0

The Requires

  • php-64bit >=5.4.0

 

The Development Requires

authentication hash ntlm nt lm