File: wrapping.md

package info (click to toggle)
python-pyspnego 0.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,648 kB
  • sloc: python: 16,191; sh: 182; makefile: 11
file content (821 lines) | stat: -rw-r--r-- 27,182 bytes parent folder | download
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
# sign - no integrity

## Summary

* Doesn't fail as `NTLMSSP_NEGOTIATE_ALWAYS_SIGN` is present in exchanges so a dummy signature is created
* `gss-ntlmssp` does have a [bug](https://github.com/gssapi/gss-ntlmssp/issues/19) where the dummy signature doesn't match SSPI.

TLDR: Don't check the flags, rely on the underlying mechanism to handle it.

## GSSAPI - Kerberos

```python
import gssapi
import socket

kerberos = gssapi.OID.from_int_seq('1.2.840.113554.1.2.2')

username = gssapi.Name('admin@DOMAIN.LOCAL', name_type=gssapi.NameType.user)
c_cred = gssapi.raw.acquire_cred_with_password(username, b'password', usage='initiate', mechs=[kerberos]).creds
s_cred = gssapi.Credentials(usage='accept', mechs=[kerberos])

c = gssapi.SecurityContext(name=gssapi.Name('host@%s' % socket.gethostname(), name_type=gssapi.NameType.hostbased_service),
                           creds=c_cred, mech=kerberos, usage='initiate')
s = gssapi.SecurityContext(creds=s_cred, usage='accept')

c.step(s.step(c.step()))

enc = c.wrap(b"abc", True).message
s.unwrap(enc)
```

Works just fine on both MIT KRB5 and Heimdal. Looking at the source code it's actually hardcoding the integrity and
confidentiality flags so they will always be present.


## GSSAPI - NTLM

```python
import gssapi
import os
import tempfile

ntlm = gssapi.OID.from_int_seq('1.3.6.1.4.1.311.2.2.10')


with tempfile.NamedTemporaryFile() as temp_fd:
    with open(temp_fd.name, mode='wb') as fd:
        fd.write(b'DOMAIN:USER:PASS')

    os.environ['NTLM_USER_FILE'] = temp_fd.name

    c_cred = gssapi.Credentials(usage='initiate', mechs=[ntlm])
    s_cred = gssapi.Credentials(usage='accept', mechs=[ntlm])

    c = gssapi.SecurityContext(name=gssapi.Name('http@test', name_type=gssapi.NameType.hostbased_service),
                               creds=c_cred, mech=ntlm, usage='initiate', flags=gssapi.RequirementFlag.mutual_authentication)
    s = gssapi.SecurityContext(creds=s_cred, usage='accept')

    s.step(c.step(s.step(c.step())))

    print(c.actual_flags)
    print(s.actual_flags)
    print(c.get_signature(b"abc"))
```

No failure, just `b"\x00" * 16`. The `integrity` flag must be set for a valid signature to be created, having just
`confidentiality` is not enough.


## SSPI - Kerberos

```python
from spnego._sspi_raw import *

import socket

spn = "host/%s" % socket.getfqdn()
context_req = ClientContextReq.mutual_auth
protocol = 'Kerberos'

auth_data = WinNTAuthIdentity(u'vagrant-domain@DOMAIN.LOCAL', None, u'VagrantPass1')

c_cred = acquire_credentials_handle(None, protocol, auth_data=auth_data, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

token1 = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=token1)
token1 = SecBufferDesc([SecBuffer(SecBufferType.token, token1[0].buffer)])

token2 = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, token1, context_req=context_req, output_buffer=token2)
token2 = SecBufferDesc([SecBuffer(SecBufferType.token, token2[0].buffer)])

final = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=token2,
                            output_buffer=final)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

data = b"abc"
sign = SecBufferDesc([
    SecBuffer(SecBufferType.data, data),
    SecBuffer(SecBufferType.token, length=sizes.max_signature),
])
make_signature(c_context, 0, sign, seq_no=0)
```

No failure


## SSPI - NTLM

```python
from spnego._sspi_raw import *

spn = ""
context_req = ClientContextReq.mutual_auth
protocol = 'NTLM'

c_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

nego = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=nego)
nego = SecBufferDesc([SecBuffer(SecBufferType.token, nego[0].buffer)])

challenge = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, nego, context_req=context_req, output_buffer=challenge)
challenge = SecBufferDesc([SecBuffer(SecBufferType.token, challenge[0].buffer)])

auth = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=challenge,
                            output_buffer=auth)
auth = SecBufferDesc([SecBuffer(SecBufferType.token, auth[0].buffer)])

out_buffer = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, auth, context_req=context_req, output_buffer=out_buffer)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

data = b"abc"
sign = SecBufferDesc([
    SecBuffer(SecBufferType.data, data),
    SecBuffer(SecBufferType.token, length=sizes.max_signature),
])
make_signature(c_context, 0, sign, seq_no=0)
```

No failure


# wrap - no confidentiality

## Summary

* The underlying context should handle it
* For NTLMProxy we should fail when neither flags are set but continue if either `integrity` or `confidentiality` are set

## GSSAPI - Kerberos

See `sign - no integrity`, no error occurs.


## GSSAPI - NTLM

```python
import gssapi
import os
import tempfile

ntlm = gssapi.OID.from_int_seq('1.3.6.1.4.1.311.2.2.10')


with tempfile.NamedTemporaryFile() as temp_fd:
    with open(temp_fd.name, mode='wb') as fd:
        fd.write(b'DOMAIN:USER:PASS')

    os.environ['NTLM_USER_FILE'] = temp_fd.name

    c_cred = gssapi.Credentials(usage='initiate', mechs=[ntlm])
    s_cred = gssapi.Credentials(usage='accept', mechs=[ntlm])

    c = gssapi.SecurityContext(name=gssapi.Name('http@test', name_type=gssapi.NameType.hostbased_service),
                               creds=c_cred, mech=ntlm, usage='initiate', flags=gssapi.RequirementFlag.mutual_authentication)
    s = gssapi.SecurityContext(creds=s_cred, usage='accept')

    s.step(c.step(s.step(c.step())))

    print(c.actual_flags)
    print(s.actual_flags)

    enc = c.wrap(b"abc", True).message

    s.unwrap(enc)
```

This seg faults on all current releases but has been fixed in master with https://github.com/gssapi/gss-ntlmssp/pull/18.
The output from that is

```
gssapi.raw.misc.GSSError: Major (851968): Unspecified GSS failure. Minor code may provide more information, Minor (95): Operation not supported
```

If I add `integrity` then it works just fine, it seems like either the flags need to be set for this to work.


## SSPI - Kerberos

```python
from spnego._sspi_raw import *

import socket

spn = "host/%s" % socket.getfqdn()
context_req = ClientContextReq.mutual_auth
protocol = 'Kerberos'

auth_data = WinNTAuthIdentity(u'vagrant-domain@DOMAIN.LOCAL', None, u'VagrantPass1')

c_cred = acquire_credentials_handle(None, protocol, auth_data=auth_data, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

token1 = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=token1)
token1 = SecBufferDesc([SecBuffer(SecBufferType.token, token1[0].buffer)])

token2 = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, token1, context_req=context_req, output_buffer=token2)
token2 = SecBufferDesc([SecBuffer(SecBufferType.token, token2[0].buffer)])

final = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=token2,
                            output_buffer=final)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

iov = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov, seq_no=0, qop=51566)
```

Outputs

```
OSError: [WinError -2146893054] The function requested is not supported
```

_Note: Must have confidentiality, integrity is not enough._


## SSPI - NTLM

```python
from spnego._sspi_raw import *

spn = ""
context_req = ClientContextReq.mutual_auth
protocol = 'NTLM'

c_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

nego = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=nego)
nego = SecBufferDesc([SecBuffer(SecBufferType.token, nego[0].buffer)])

challenge = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, nego, context_req=context_req, output_buffer=challenge)
challenge = SecBufferDesc([SecBuffer(SecBufferType.token, challenge[0].buffer)])

auth = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=challenge,
                            output_buffer=auth)
auth = SecBufferDesc([SecBuffer(SecBufferType.token, auth[0].buffer)])

out_buffer = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, auth, context_req=context_req, output_buffer=out_buffer)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

iov = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov, seq_no=0, qop=0)
```

Outputs

```
OSError: [WinError -2146893054] The function requested is not supported
```

_Note: if either integrity or confidentiality is set this works._


# wrap - invalid qop

## Summary

* The only provider that validates the QoP is MIT KRB5 and gss-ntlmssp.
* The NTLMProxy should just be strict in case someone implicitly relies on a QoP that we don't know about.


## GSSAPI - Kerberos

```python
import gssapi
import socket

kerberos = gssapi.OID.from_int_seq('1.2.840.113554.1.2.2')

username = gssapi.Name('admin@DOMAIN.LOCAL', name_type=gssapi.NameType.user)
c_cred = gssapi.raw.acquire_cred_with_password(username, b'password', usage='initiate', mechs=[kerberos]).creds
s_cred = gssapi.Credentials(usage='accept', mechs=[kerberos])

c = gssapi.SecurityContext(name=gssapi.Name('host@%s' % socket.gethostname(), name_type=gssapi.NameType.hostbased_service),
                           creds=c_cred, mech=kerberos, usage='initiate')
s = gssapi.SecurityContext(creds=s_cred, usage='accept')

c.step(s.step(c.step()))

gssapi.raw.wrap(c, b"abc", True, 1024)
```

Heimdal does not complain but MIT KRB5 fails with

```
# Kerberos 5 release 1.17
gssapi.raw.exceptions.BadQoPError: Major (917504): The quality-of-protection (QOP) requested could not be provided, Minor (2249944328): Unknown quality of protection specified
```

## GSSAPI - NTLM

```python
import gssapi
import os
import tempfile

ntlm = gssapi.OID.from_int_seq('1.3.6.1.4.1.311.2.2.10')


with tempfile.NamedTemporaryFile() as temp_fd:
    with open(temp_fd.name, mode='wb') as fd:
        fd.write(b'DOMAIN:USER:PASS')

    os.environ['NTLM_USER_FILE'] = temp_fd.name

    c_cred = gssapi.Credentials(usage='initiate', mechs=[ntlm])
    s_cred = gssapi.Credentials(usage='accept', mechs=[ntlm])

    c = gssapi.SecurityContext(name=gssapi.Name('http@test', name_type=gssapi.NameType.hostbased_service),
                               creds=c_cred, mech=ntlm, usage='initiate', flags=gssapi.RequirementFlag.confidentiality)
    s = gssapi.SecurityContext(creds=s_cred, usage='accept')

    s.step(c.step(s.step(c.step())))

    gssapi.raw.wrap(c, b"abc", True, 1024)
```

Outputs

```
# Kerberos 5 release 1.17 - gssntlmssp 0.7.0
gssapi.raw.exceptions.BadQoPError: Major (917504): The quality-of-protection (QOP) requested could not be provided, Minor (1314127877): Invalid value in argument
```

## SSPI - Kerberos

```python
from spnego._sspi_raw import *

import socket

spn = "host/%s" % socket.getfqdn()
context_req = ClientContextReq.integrity | ClientContextReq.confidentiality | ClientContextReq.mutual_auth
protocol = 'Kerberos'

auth_data = WinNTAuthIdentity(u'vagrant-domain@DOMAIN.LOCAL', None, u'VagrantPass1')

c_cred = acquire_credentials_handle(None, protocol, auth_data=auth_data, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

token1 = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=token1)
token1 = SecBufferDesc([SecBuffer(SecBufferType.token, token1[0].buffer)])

token2 = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, token1, context_req=context_req, output_buffer=token2)
token2 = SecBufferDesc([SecBuffer(SecBufferType.token, token2[0].buffer)])

final = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=token2,
                            output_buffer=final)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

iov = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov, seq_no=0, qop=51566)
```

Doesn't fail.


## SSPI - NTLM

```python
from spnego._sspi_raw import *

spn = ""
context_req = ClientContextReq.mutual_auth | ClientContextReq.confidentiality | ClientContextReq.integrity
protocol = 'NTLM'

c_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

nego = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=nego)
nego = SecBufferDesc([SecBuffer(SecBufferType.token, nego[0].buffer)])

challenge = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, nego, context_req=context_req, output_buffer=challenge)
challenge = SecBufferDesc([SecBuffer(SecBufferType.token, challenge[0].buffer)])

auth = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=challenge,
                            output_buffer=auth)
auth = SecBufferDesc([SecBuffer(SecBufferType.token, auth[0].buffer)])

out_buffer = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, auth, context_req=context_req, output_buffer=out_buffer)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

iov = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov, seq_no=0, qop=51566)
```

Doesn't fail


# sign - invalid qop

## Summary

* The only provider that validates the QoP is MIT KRB5 and gss-ntlmssp.
* The NTLMProxy should just be strict in case someone implicitly relies on a QoP that we don't know about.

## GSSAPI - Kerberos

```python
import gssapi
import socket

kerberos = gssapi.OID.from_int_seq('1.2.840.113554.1.2.2')

username = gssapi.Name('admin@DOMAIN.LOCAL', name_type=gssapi.NameType.user)
c_cred = gssapi.raw.acquire_cred_with_password(username, b'password', usage='initiate', mechs=[kerberos]).creds
s_cred = gssapi.Credentials(usage='accept', mechs=[kerberos])

c = gssapi.SecurityContext(name=gssapi.Name('host@%s' % socket.gethostname(), name_type=gssapi.NameType.hostbased_service),
                           creds=c_cred, mech=kerberos, usage='initiate')
s = gssapi.SecurityContext(creds=s_cred, usage='accept')

c.step(s.step(c.step()))

gssapi.raw.get_mic(c, b"abc", 1024)
```

Heimdal does not complain but MIT KRB5 fails with

```
# Kerberos 5 release 1.17
gssapi.raw.exceptions.BadQoPError: Major (917504): The quality-of-protection (QOP) requested could not be provided, Minor (2249944328): Unknown quality of protection specified
```

## GSSAPI - NTLM

```python
import gssapi
import os
import tempfile

ntlm = gssapi.OID.from_int_seq('1.3.6.1.4.1.311.2.2.10')


with tempfile.NamedTemporaryFile() as temp_fd:
    with open(temp_fd.name, mode='wb') as fd:
        fd.write(b'DOMAIN:USER:PASS')

    os.environ['NTLM_USER_FILE'] = temp_fd.name

    c_cred = gssapi.Credentials(usage='initiate', mechs=[ntlm])
    s_cred = gssapi.Credentials(usage='accept', mechs=[ntlm])

    c = gssapi.SecurityContext(name=gssapi.Name('http@test', name_type=gssapi.NameType.hostbased_service),
                               creds=c_cred, mech=ntlm, usage='initiate', flags=gssapi.RequirementFlag.confidentiality)
    s = gssapi.SecurityContext(creds=s_cred, usage='accept')

    s.step(c.step(s.step(c.step())))

    gssapi.raw.get_mic(c, b"abc", 1024)
```

Outputs

```
# Kerberos 5 release 1.17 - gssntlmssp 0.7.0
gssapi.raw.exceptions.BadQoPError: Major (917504): The quality-of-protection (QOP) requested could not be provided, Minor (1314127877): Invalid value in argument
```

## SSPI - Kerberos and NTLM

```python
from spnego._sspi_raw import *

import socket

spn = "host/%s" % socket.getfqdn()
context_req = ClientContextReq.integrity | ClientContextReq.confidentiality | ClientContextReq.mutual_auth
protocol = 'Kerberos'

auth_data = WinNTAuthIdentity(u'vagrant-domain@DOMAIN.LOCAL', None, u'VagrantPass1')

c_cred = acquire_credentials_handle(None, protocol, auth_data=auth_data, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

token1 = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=token1)
token1 = SecBufferDesc([SecBuffer(SecBufferType.token, token1[0].buffer)])

token2 = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, token1, context_req=context_req, output_buffer=token2)
token2 = SecBufferDesc([SecBuffer(SecBufferType.token, token2[0].buffer)])

final = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=token2,
                            output_buffer=final)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

data = b"abc"
sign = SecBufferDesc([
    SecBuffer(SecBufferType.data, data),
    SecBuffer(SecBufferType.token, length=sizes.max_signature),
])
make_signature(c_context, 10, sign, seq_no=0)
```

SSPI doesn't seem to care about the QoP.


# NTLM - wrap_iov

```python
import gssapi
import os
import tempfile

ntlm = gssapi.OID.from_int_seq('1.3.6.1.4.1.311.2.2.10')


with tempfile.NamedTemporaryFile() as temp_fd:
    with open(temp_fd.name, mode='wb') as fd:
        fd.write(b'DOMAIN:USER:PASS')

    os.environ['NTLM_USER_FILE'] = temp_fd.name

    c_cred = gssapi.Credentials(usage='initiate', mechs=[ntlm])
    s_cred = gssapi.Credentials(usage='accept', mechs=[ntlm])

    c = gssapi.SecurityContext(name=gssapi.Name('http@test', name_type=gssapi.NameType.hostbased_service),
                               creds=c_cred, mech=ntlm, usage='initiate', flags=gssapi.RequirementFlag.confidentiality)
    s = gssapi.SecurityContext(creds=s_cred, usage='accept')

    s.step(c.step(s.step(c.step())))

    iov = gssapi.raw.IOV(gssapi.raw.IOVBufferType.header, b"abc", gssapi.raw.IOVBufferType.padding, std_layout=False)
    gssapi.raw.wrap_iov(c, iov, True, 0)
```

Outputs

```
# Kerberos 5 release 1.17 - gssntlmssp 0.7.0
gssapi.raw.exceptions.OperationUnavailableError: Major (1048576): The operation or option is not available or unsupported, Minor (0): Unknown error
```

This is expected as gssntlmssp does not offer IOV buffers for it's NTLM implementation.


# Out of sequence wrapping

## Summary

* Only Kerberos seems to check the sequence number
* NTLM just verifies the signature but doesn't error when out of sequence.


## GSSAPI - Kerberos

```python
import gssapi
import socket

kerberos = gssapi.OID.from_int_seq('1.2.840.113554.1.2.2')

username = gssapi.Name('admin@DOMAIN.LOCAL', name_type=gssapi.NameType.user)
c_cred = gssapi.raw.acquire_cred_with_password(username, b'password', usage='initiate', mechs=[kerberos]).creds
s_cred = gssapi.Credentials(usage='accept', mechs=[kerberos])

c = gssapi.SecurityContext(name=gssapi.Name('host@%s' % socket.gethostname(), name_type=gssapi.NameType.hostbased_service),
                           creds=c_cred, mech=kerberos, usage='initiate')
s = gssapi.SecurityContext(creds=s_cred, usage='accept')

c.step(s.step(c.step()))

enc1 = c.wrap(b"abc", True).message
enc2 = c.wrap(b"def", True).message

s.unwrap(enc2)
```

Outputs

```
# Kerberos 5 release 1.17
gssapi.raw.exceptions.TokenTooEarlyError: Major (16): An expected per-message token was not received, Minor (100001): Success

# heimdal 7.7.0
gssapi.raw.exceptions.TokenTooEarlyError: Major (16): unknown routine error, Minor (0): unknown mech-code 0 for mech unknown
```


## GSSAPI - NTLM

```python
import gssapi
import os
import tempfile

ntlm = gssapi.OID.from_int_seq('1.3.6.1.4.1.311.2.2.10')


with tempfile.NamedTemporaryFile() as temp_fd:
    with open(temp_fd.name, mode='wb') as fd:
        fd.write(b'DOMAIN:USER:PASS')

    os.environ['NTLM_USER_FILE'] = temp_fd.name

    c_cred = gssapi.Credentials(usage='initiate', mechs=[ntlm])
    s_cred = gssapi.Credentials(usage='accept', mechs=[ntlm])

    c = gssapi.SecurityContext(name=gssapi.Name('http@test', name_type=gssapi.NameType.hostbased_service),
                               creds=c_cred, mech=ntlm, usage='initiate')
    s = gssapi.SecurityContext(creds=s_cred, usage='accept')

    s.step(c.step(s.step(c.step())))

    enc1 = c.wrap(b"abc", True).message
    enc2 = c.wrap(b"def", True).message

    s.unwrap(enc2)
```

Outputs

```
# Kerberos 5 release 1.17 - gssnlmtssp 0.7.0
gssapi.raw.exceptions.BadMICError: Major (393216): A token had an invalid Message Integrity Check (MIC), Minor (100005): Unknown Error
```


## SSPI - Kerberos

This must be run as the `SYSTEM` account to be able to accept SPN's under `host` for the computer account.

```python
from spnego._sspi_raw import *

import socket

spn = "host/%s" % socket.getfqdn()
context_req = ClientContextReq.integrity | ClientContextReq.confidentiality | ClientContextReq.mutual_auth
protocol = 'Kerberos'

auth_data = WinNTAuthIdentity(u'vagrant-domain@DOMAIN.LOCAL', None, u'VagrantPass1')

c_cred = acquire_credentials_handle(None, protocol, auth_data=auth_data, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

token1 = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=token1)
token1 = SecBufferDesc([SecBuffer(SecBufferType.token, token1[0].buffer)])

token2 = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, token1, context_req=context_req, output_buffer=token2)
token2 = SecBufferDesc([SecBuffer(SecBufferType.token, token2[0].buffer)])

final = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=token2,
                            output_buffer=final)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

iov1 = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov1, seq_no=0, qop=0)

iov2 = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov2, seq_no=0, qop=0)

decrypt_message(s_context, iov2, seq_no=0)
```

Outputs

```
# Server 2019
OSError: [WinError -2146893040] The message supplied for verification is out of sequence
```

## SSPI - NTLM

```python
from spnego._sspi_raw import *

spn = ""
context_req = ClientContextReq.integrity | ClientContextReq.confidentiality
protocol = 'NTLM'

c_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.outbound)
s_cred = acquire_credentials_handle(None, protocol, credential_use=CredentialUse.inbound)

c_context = SecurityContext()
s_context = SecurityContext()

nego = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, output_buffer=nego)
nego = SecBufferDesc([SecBuffer(SecBufferType.token, nego[0].buffer)])

challenge = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, nego, context_req=context_req, output_buffer=challenge)
challenge = SecBufferDesc([SecBuffer(SecBufferType.token, challenge[0].buffer)])

auth = SecBufferDesc([SecBuffer(SecBufferType.token)])
initialize_security_context(c_cred, c_context, spn, context_req=context_req, input_buffer=challenge,
                            output_buffer=auth)
auth = SecBufferDesc([SecBuffer(SecBufferType.token, auth[0].buffer)])

out_buffer = SecBufferDesc([SecBuffer(SecBufferType.token)])
accept_security_context(s_cred, s_context, auth, context_req=context_req, output_buffer=out_buffer)

sizes = query_context_attributes(c_context, SecPkgAttr.sizes)

iov1 = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov1, seq_no=0, qop=0)

iov2 = SecBufferDesc([
    SecBuffer(SecBufferType.token, length=sizes.security_trailer),
    SecBuffer(SecBufferType.data, b"Hello world"),
    SecBuffer(SecBufferType.padding, length=sizes.block_size),
])
encrypt_message(c_context, iov2, seq_no=0, qop=0)

decrypt_message(s_context, iov2, seq_no=0)
```

Outputs

```
# Server 2019
OSError: [WinError -2146893041] The message or signature supplied for verification has been altered
```