Browse Source

validation.py: fail if hash contains .i2p= (full foo.i2p=key)

pull/1/head
Hidden Z 14 years ago
parent
commit
a287860619
  1. 3
      web/lib/validation.py

3
web/lib/validation.py

@ -66,6 +66,9 @@ def validate_b64hash(data, check_uniq=True):
# check for b32 address misuse # check for b32 address misuse
if re.match(r'.*\.b32\.i2p$', data): if re.match(r'.*\.b32\.i2p$', data):
raise forms.ValidationError('You should paste base64 hash, not a base32!') raise forms.ValidationError('You should paste base64 hash, not a base32!')
# fail if contains .i2p= (full foo.i2p=key)
if re.search(r'\.i2p=', data):
raise forms.ValidationError('Do not paste full hosts.txt entry! Only base64 hash are needed')
# Minimum key length 516 bytes # Minimum key length 516 bytes
if length < 516: if length < 516:
raise forms.ValidationError('Specified base64 hash are less than 516 bytes') raise forms.ValidationError('Specified base64 hash are less than 516 bytes')

Loading…
Cancel
Save