1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
//
// Mono.Security.Protocol.Ntlm.Type3Message - Authentication
//
// Author:
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
//
// References
// a. NTLM Authentication Scheme for HTTP, Ronald Tschalär
// http://www.innovation.ch/java/ntlm.html
// b. The NTLM Authentication Protocol, Copyright © 2003 Eric Glass
// http://davenport.sourceforge.net/ntlm.html
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Globalization;
using System.Text;
namespace Mono.Security.Protocol.Ntlm {
public class Type3Message : MessageBase {
private NtlmAuthLevel _level;
private byte[] _challenge;
private string _host;
private string _domain;
private string _username;
private string _password;
private Type2Message _type2;
private byte[] _lm;
private byte[] _nt;
internal const string LegacyAPIWarning =
"Use of this API is highly discouraged, " +
"it selects legacy-mode LM/NTLM authentication, which sends " +
"your password in very weak encryption over the wire even if " +
"the server supports the more secure NTLMv2 / NTLMv2 Session. " +
"You need to use the new `Type3Message (Type2Message)' constructor " +
"to use the more secure NTLMv2 / NTLMv2 Session authentication modes. " +
"These require the Type 2 message from the server to compute the response.";
[Obsolete (LegacyAPIWarning)]
public Type3Message () : base (3)
{
if (DefaultAuthLevel != NtlmAuthLevel.LM_and_NTLM)
throw new InvalidOperationException (
"Refusing to use legacy-mode LM/NTLM authentication " +
"unless explicitly enabled using DefaultAuthLevel.");
// default values
_domain = Environment.UserDomainName;
_host = Environment.MachineName;
_username = Environment.UserName;
_level = NtlmAuthLevel.LM_and_NTLM;
Flags = (NtlmFlags) 0x8201;
}
public Type3Message (byte[] message) : base (3)
{
Decode (message);
}
public Type3Message (Type2Message type2) : base (3)
{
_type2 = type2;
_level = NtlmSettings.DefaultAuthLevel;
_challenge = (byte[]) type2.Nonce.Clone ();
_domain = type2.TargetName;
_host = Environment.MachineName;
_username = Environment.UserName;
Flags = (NtlmFlags) 0x8200;
if ((type2.Flags & NtlmFlags.NegotiateUnicode) != 0)
Flags |= NtlmFlags.NegotiateUnicode;
else
Flags |= NtlmFlags.NegotiateOem;
if ((type2.Flags & NtlmFlags.NegotiateNtlm2Key) != 0)
Flags |= NtlmFlags.NegotiateNtlm2Key;
}
~Type3Message ()
{
if (_challenge != null)
Array.Clear (_challenge, 0, _challenge.Length);
if (_lm != null)
Array.Clear (_lm, 0, _lm.Length);
if (_nt != null)
Array.Clear (_nt, 0, _nt.Length);
}
// Default auth level
[Obsolete ("Use NtlmSettings.DefaultAuthLevel")]
public static NtlmAuthLevel DefaultAuthLevel {
get { return NtlmSettings.DefaultAuthLevel; }
set { NtlmSettings.DefaultAuthLevel = value; }
}
public NtlmAuthLevel Level {
get { return _level; }
set { _level = value; }
}
// properties
[Obsolete (LegacyAPIWarning)]
public byte[] Challenge {
get {
if (_challenge == null)
return null;
return (byte[]) _challenge.Clone (); }
set {
if ((_type2 != null) || (_level != NtlmAuthLevel.LM_and_NTLM))
throw new InvalidOperationException (
"Refusing to use legacy-mode LM/NTLM authentication " +
"unless explicitly enabled using DefaultAuthLevel.");
if (value == null)
throw new ArgumentNullException ("Challenge");
if (value.Length != 8) {
string msg = Locale.GetText ("Invalid Challenge Length (should be 8 bytes).");
throw new ArgumentException (msg, "Challenge");
}
_challenge = (byte[]) value.Clone ();
}
}
public string Domain {
get { return _domain; }
set {
if (value == null)
value = "";
if (value == "")
Flags &= ~NtlmFlags.NegotiateDomainSupplied;
else
Flags |= NtlmFlags.NegotiateDomainSupplied;
_domain = value;
}
}
public string Host {
get { return _host; }
set {
if (value == null)
value = "";
if (value == "")
Flags &= ~NtlmFlags.NegotiateWorkstationSupplied;
else
Flags |= NtlmFlags.NegotiateWorkstationSupplied;
_host = value;
}
}
public string Password {
get { return _password; }
set { _password = value; }
}
public string Username {
get { return _username; }
set { _username = value; }
}
public byte[] LM {
get { return _lm; }
}
public byte[] NT {
get { return _nt; }
set { _nt = value; }
}
// methods
protected override void Decode (byte[] message)
{
base.Decode (message);
_password = null;
if (message.Length >= 64)
Flags = (NtlmFlags)BitConverterLE.ToUInt32 (message, 60);
else
Flags = (NtlmFlags)0x8201;
int lm_len = BitConverterLE.ToUInt16 (message, 12);
int lm_off = BitConverterLE.ToUInt16 (message, 16);
_lm = new byte [lm_len];
Buffer.BlockCopy (message, lm_off, _lm, 0, lm_len);
int nt_len = BitConverterLE.ToUInt16 (message, 20);
int nt_off = BitConverterLE.ToUInt16 (message, 24);
_nt = new byte [nt_len];
Buffer.BlockCopy (message, nt_off, _nt, 0, nt_len);
int dom_len = BitConverterLE.ToUInt16 (message, 28);
int dom_off = BitConverterLE.ToUInt16 (message, 32);
_domain = DecodeString (message, dom_off, dom_len);
int user_len = BitConverterLE.ToUInt16 (message, 36);
int user_off = BitConverterLE.ToUInt16 (message, 40);
_username = DecodeString (message, user_off, user_len);
int host_len = BitConverterLE.ToUInt16 (message, 44);
int host_off = BitConverterLE.ToUInt16 (message, 48);
_host = DecodeString (message, host_off, host_len);
// Session key. We don't use it yet.
// int skey_len = BitConverterLE.ToUInt16 (message, 52);
// int skey_off = BitConverterLE.ToUInt16 (message, 56);
}
string DecodeString (byte[] buffer, int offset, int len)
{
if ((Flags & NtlmFlags.NegotiateUnicode) != 0)
return Encoding.Unicode.GetString (buffer, offset, len);
else
return Encoding.ASCII.GetString (buffer, offset, len);
}
byte[] EncodeString (string text)
{
if (text == null)
return new byte [0];
if ((Flags & NtlmFlags.NegotiateUnicode) != 0)
return Encoding.Unicode.GetBytes (text);
else
return Encoding.ASCII.GetBytes (text);
}
public override byte[] GetBytes ()
{
byte[] target = EncodeString (_domain);
byte[] user = EncodeString (_username);
byte[] host = EncodeString (_host);
byte[] lm, ntlm;
if (_type2 == null) {
if (_level != NtlmAuthLevel.LM_and_NTLM)
throw new InvalidOperationException (
"Refusing to use legacy-mode LM/NTLM authentication " +
"unless explicitly enabled using DefaultAuthLevel.");
#pragma warning disable 618
using (var legacy = new ChallengeResponse (_password, _challenge)) {
lm = legacy.LM;
ntlm = legacy.NT;
}
#pragma warning restore 618
} else {
ChallengeResponse2.Compute (_type2, _level, _username, _password, _domain, out lm, out ntlm);
}
var lmresp_len = lm != null ? lm.Length : 0;
var ntresp_len = ntlm != null ? ntlm.Length : 0;
byte[] data = PrepareMessage (64 + target.Length + user.Length + host.Length + lmresp_len + ntresp_len);
// LM response
short lmresp_off = (short)(64 + target.Length + user.Length + host.Length);
data [12] = (byte)lmresp_len;
data [13] = (byte)0x00;
data [14] = (byte)lmresp_len;
data [15] = (byte)0x00;
data [16] = (byte)lmresp_off;
data [17] = (byte)(lmresp_off >> 8);
// NT response
short ntresp_off = (short)(lmresp_off + lmresp_len);
data [20] = (byte)ntresp_len;
data [21] = (byte)(ntresp_len >> 8);
data [22] = (byte)ntresp_len;
data [23] = (byte)(ntresp_len >> 8);
data [24] = (byte)ntresp_off;
data [25] = (byte)(ntresp_off >> 8);
// target
short dom_len = (short)target.Length;
short dom_off = 64;
data [28] = (byte)dom_len;
data [29] = (byte)(dom_len >> 8);
data [30] = data [28];
data [31] = data [29];
data [32] = (byte)dom_off;
data [33] = (byte)(dom_off >> 8);
// username
short uname_len = (short)user.Length;
short uname_off = (short)(dom_off + dom_len);
data [36] = (byte)uname_len;
data [37] = (byte)(uname_len >> 8);
data [38] = data [36];
data [39] = data [37];
data [40] = (byte)uname_off;
data [41] = (byte)(uname_off >> 8);
// host
short host_len = (short)host.Length;
short host_off = (short)(uname_off + uname_len);
data [44] = (byte)host_len;
data [45] = (byte)(host_len >> 8);
data [46] = data [44];
data [47] = data [45];
data [48] = (byte)host_off;
data [49] = (byte)(host_off >> 8);
// message length
short msg_len = (short)data.Length;
data [56] = (byte)msg_len;
data [57] = (byte)(msg_len >> 8);
int flags = (int)Flags;
// options flags
data [60] = (byte)flags;
data [61] = (byte)((uint)flags >> 8);
data [62] = (byte)((uint)flags >> 16);
data [63] = (byte)((uint)flags >> 24);
Buffer.BlockCopy (target, 0, data, dom_off, target.Length);
Buffer.BlockCopy (user, 0, data, uname_off, user.Length);
Buffer.BlockCopy (host, 0, data, host_off, host.Length);
if (lm != null) {
Buffer.BlockCopy (lm, 0, data, lmresp_off, lm.Length);
Array.Clear (lm, 0, lm.Length);
}
Buffer.BlockCopy (ntlm, 0, data, ntresp_off, ntlm.Length);
Array.Clear (ntlm, 0, ntlm.Length);
return data;
}
}
}
|