Skip to content

Commit

Permalink
changed getNonce to include all characters
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrogauc@gmail.com committed Aug 5, 2011
1 parent 7324604 commit 1ce5f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svhelper.py
Expand Up @@ -192,7 +192,7 @@ def getNonce(pkt):

def getRealm(pkt):
import re
nonceRE='realm="([.:a-zA-Z0-9@]+)"'
nonceRE='realm="(.+?)"'
_tmp = re.findall(nonceRE,pkt)
if _tmp is not None:
if len(_tmp) > 0:
Expand Down

0 comments on commit 1ce5f0f

Please sign in to comment.