This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Can SMB v1 vs. SMB v2 be detected in the header?

0

Can one determine which version of SMB is being used by looking at the SMB header?

asked 20 Mar '12, 10:13

Janis%20Bishop's gravatar image

Janis Bishop
1222
accept rate: 0%


One Answer:

3

Yes.

According to Microsoft's [MS-CIFS] specification, the first 4 bytes of the header for an SMB message "MUST contain the 4-byte literal string '\xFF', 'S', 'M', 'B', with the letters represented by their respective ASCII values in the order shown."

According to their [MS-SMB2 specification], the first 4 bytes of the header for an SMB2 message "MUST be (in network order) 0xFE, 'S', 'M', and 'B'."

So the first byte of the message is 0xFF for SMB and 0xFE for SMB2.

answered 20 Mar '12, 16:33

Guy%20Harris's gravatar image

Guy Harris ♦♦
17.4k335196
accept rate: 19%