Closed mpgn closed 4 years ago
This PR fix:
error when password contains "@" the regex is broken. I use the same solution as impacket https://github.com/SecureAuthCorp/impacket/blob/master/examples/secretsdump.py#L346
error with the migration to python3 on the password complexity
error due to : python2 => 1 / 2 = 0 python3 => 1 / 2 = 0.5 python3 => 1 // 2 = 0
Good Catch!
This PR fix:
error when password contains "@" the regex is broken. I use the same solution as impacket https://github.com/SecureAuthCorp/impacket/blob/master/examples/secretsdump.py#L346
error with the migration to python3 on the password complexity