]> git.ipfire.org Git - thirdparty/asterisk.git/commit
res_pjsip_authenticator_digest: Don't use source port in nonce verification 70/2770/2
authorKevin Harwell <kharwell@digium.com>
Thu, 5 May 2016 16:37:37 +0000 (11:37 -0500)
committerKevin Harwell <kharwell@digium.com>
Mon, 9 May 2016 19:15:26 +0000 (14:15 -0500)
commit4d063814ba50438b70cd37a5ddf0a234d1892724
treeb178e46466efd389e4c3d53a75a0bb7f784465f2
parent0f54a5ee982a57af3f67cb021c81d5b84d3681a1
res_pjsip_authenticator_digest: Don't use source port in nonce verification

From the issue reporter:
"res_pjsip_outbound_authenticator_digest builds a nonce that is a hash of
the timestamp, the source address, the source port, a server UUID that is
calculated at startup, and the authentication realm.

Rather than caching nonces that we create, we instead attempt to re-calculate
the nonce when receiving an incoming request with authentication. We then
compare the re-calculated nonce to the incoming nonce, and if they don't match,
then authentication has failed early.

The problem is that it is possible, especially when using TCP, to receive two
requests from the same endpoint but have differing source ports for those
requests. Asterisk itself commonly will use different source ports for
outbound TCP requests."

This patch removes the source port dependency when building the nonce.

ASTERISK-25978 #close

Change-Id: I871b5f4adce102df1c4988066283095ec509dffe
res/res_pjsip_authenticator_digest.c