minor minor update

This commit is contained in:
Miroslav Stampar 2011-11-21 22:19:52 +00:00
parent fcac3d494b
commit 704e1a4e74

View File

@ -454,7 +454,7 @@ def __bruteProcessVariantA(attack_info, hash_regex, wordlist, suffix, retVal, pr
except KeyboardInterrupt: except KeyboardInterrupt:
raise raise
except UnicodeEncodeError: except (UnicodeEncodeError, UnicodeDecodeError):
pass # ignore possible encoding problems caused by some words in custom dictionaries pass # ignore possible encoding problems caused by some words in custom dictionaries
except Exception, ex: except Exception, ex:
@ -520,7 +520,7 @@ def __bruteProcessVariantB(user, hash_, kwargs, hash_regex, wordlist, suffix, re
except KeyboardInterrupt: except KeyboardInterrupt:
raise raise
except UnicodeEncodeError: except (UnicodeEncodeError, UnicodeDecodeError):
pass # ignore possible encoding problems caused by some words in custom dictionaries pass # ignore possible encoding problems caused by some words in custom dictionaries
except Exception, ex: except Exception, ex: