Created
October 11, 2016 05:01
-
-
Save 62mkv/1e04a7c13b0bfe99ae7280adca3e494d to your computer and use it in GitHub Desktop.
Python script to calculate SIP REGISTER Digest authentication (in order to check password validity)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from md5 import md5 | |
# header from 401 response on REGISTER | |
# Authorization: Digest username="883140776410950", realm="gw_youmagic", algorithm=MD5, uri="sip:GW_Youmagic", nonce="1476157437:0a1418a40f8ee1c9a55f1587ab931c14", response="3ff479ccc24874f66aae45dac889d099" | |
login = '883140776410950' | |
uri = 'sip:GW_Youmagic' | |
nonce = '1476157437:0a1418a40f8ee1c9a55f1587ab931c14' | |
realm = 'gw_youmagic' | |
password = '----------' | |
str1 = md5("{}:{}:{}".format(login,realm,password)).hexdigest() | |
str2 = md5("REGISTER:{}".format(uri)).hexdigest() | |
str3 = md5("{}:{}:{}".format(str1,nonce,str2)).hexdigest() | |
print str3 |
I check using asterisk and this i inform is 100% ok (your no have match), If you have time, try to include on your code.
Thanks your code and your time !
Congrats !!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have no idea :) this is something I've put here for myself as a quick hack to validate signature and probably only ever used once. feel free to expand as you wish