aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-12-25 11:43:47 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-12-25 11:43:47 +0000
commit2975ff835bc6c46a57161151f48394e68baea3e3 (patch)
treeb0cf7883525d6d86e61abc30e1bbcafae7842801 /asn1
parentcec07db2dad6c3e92246078c77cc63b8b103cf74 (diff)
microsoft does not use a confounder for spnego when using DNS/TSIG
they use an additional confounder everywhere else (as it seems) but not for DNS/TSIG svn path=/trunk/; revision=16894
Diffstat (limited to 'asn1')
-rw-r--r--asn1/spnego/packet-spnego-template.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/asn1/spnego/packet-spnego-template.c b/asn1/spnego/packet-spnego-template.c
index 59f7851668..cf2dfd52c5 100644
--- a/asn1/spnego/packet-spnego-template.c
+++ b/asn1/spnego/packet-spnego-template.c
@@ -796,13 +796,19 @@ dissect_spnego_krb5_getmic_base(tvbuff_t *tvb, int offset, packet_info *pinfo _U
* extra 8 bytes of "Random confounder" after the checksum.
* It certainly confounds code expecting all Kerberos 5
* GSS_Wrap() tokens to look the same....
+ *
+ * The exception is DNS/TSIG where there is no such confounder
+ * so we need to test here if there are more bytes in our tvb or not.
+ * -- ronnie
*/
- if (sgn_alg == KRB_SGN_ALG_HMAC) {
- proto_tree_add_item(tree, hf_spnego_krb5_confounder, tvb, offset, 8,
+ if (tvb_length_remaining(tvb, offset)) {
+ if (sgn_alg == KRB_SGN_ALG_HMAC) {
+ proto_tree_add_item(tree, hf_spnego_krb5_confounder, tvb, offset, 8,
TRUE);
- offset += 8;
- }
+ offset += 8;
+ }
+ }
/*
* Return the offset past the checksum, so that we know where