Wireshark mailing list archives

Re: ASN1: How to display an octet-string as UTF16 LE


From: Anders Broman via Wireshark-dev <wireshark-dev () wireshark org>
Date: Wed, 16 Jun 2021 11:47:52 +0000



-----Original Message-----
From: Wireshark-dev <wireshark-dev-bounces () wireshark org> On Behalf Of Isaac Boukris
Sent: den 16 juni 2021 12:52
To: wireshark-dev () wireshark org
Subject: [Wireshark-dev] ASN1: How to display an octet-string as UTF16 LE

Hello,

I'd like to add the following asn1 struct to the credssp dissector (following MR 3020):
TSRemoteGuardPackageCred ::= SEQUENCE {
        packageName     [0] OCTET STRING,
        credBuffer      [1] OCTET STRING
}

It gets displayed like this:
logonCred
    packageName: 4b00650072006200650072006f007300
    credBuffer:
0a000000020000007304000018050000200000000000000093040000000000006182046f…

Now, the package name is a UTF16 LE string (Kerberos), and I wonder if there is an easy way to make it display it as a 
string instead of HEX
- thoughts?

Thanks!

Hi,
If it's always an UTF16 string you will have to do .cnf magic and add something like
proto_tree_add_item(tree, hf_krb_pac_upn_upn_name, tvb, upn_offset, upn_len, ENC_UTF_16|ENC_LITTLE_ENDIAN);

Regards
Anders

___________________________________________________________________________
Sent via:    Wireshark-dev mailing list <wireshark-dev () wireshark org>
Archives:    https://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-dev
             mailto:wireshark-dev-request () wireshark org?subject=unsubscribe

Attachment: smime.p7s
Description:

___________________________________________________________________________
Sent via:    Wireshark-dev mailing list <wireshark-dev () wireshark org>
Archives:    https://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-dev
             mailto:wireshark-dev-request () wireshark org?subject=unsubscribe

Current thread: