mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-15 19:18:23 +00:00
This python script presents a syntax error when executed:
vmwarevmx2hashcat.py:17: SyntaxWarning: invalid escape sequence '\)' ks_re = '.+phrase/(.*?)/pass2key=(.*?):cipher=(.*?):rounds=(.*?):salt=(.*?),(.*?),(.*?)\)' This fixes that error.
This commit is contained in:
parent
e69045823b
commit
4e71fb00d6
@ -14,7 +14,7 @@ from binascii import hexlify
|
||||
import re
|
||||
import base64
|
||||
|
||||
ks_re = '.+phrase/(.*?)/pass2key=(.*?):cipher=(.*?):rounds=(.*?):salt=(.*?),(.*?),(.*?)\)'
|
||||
ks_re = '.+phrase/(.*?)/pass2key=(.*?):cipher=(.*?):rounds=(.*?):salt=(.*?),(.*?),(.*?)\\)'
|
||||
|
||||
ks_struct = {
|
||||
'password_hash': None,
|
||||
|
Loading…
Reference in New Issue
Block a user