Brute Force zip файл с синтаксической ошибкой возврата пароля

Мне дали задачу решить, попросив добавить еще 3 буквы в «Супер», а затем использовать его для разблокировки zip-файла. Мой код выглядит следующим образом:

import zipfile
import itertools
import time

# Function for extracting zip files to test if the password works!
def extractFile(zip_file, password):
    try:
        zip_file.extractall(pwd=password)
        return True
    except KeyboardInterrupt:
        exit(0)
    except Exception, e:
        pass

# Main code starts here...
# The file name of the zip file.
zipfilename = 'planz.zip'
# The first part of the password. We know this for sure!
first_half_password = 'Super'
# We don't know what characters they add afterwards...
# This is case sensitive!
alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
zip_file = zipfile.ZipFile(zipfilename)

# We know they always have 3 characters after Super...
# For every possible combination of 3 letters from alphabet...
for c in itertools.product(alphabet, repeat=3):
    # Slowing it down on purpose to make it work better with the web terminal
    # Remove at your peril
    time.sleep(0.001)
    # Add the three letters to the first half of the password.
    password = first_half_password+''.join(c)
    # Try to extract the file.
    print "Trying: %s" % password
    # If the file was extracted, you found the right password.
    if extractFile(zip_file, password):
        print '*' * 20
        print 'Password found: %s' % password
        print 'Files extracted...'
        exit(0)

# If no password was found by the end, let us know!
print 'Password not found.'

Но мой код возвращает

./code.py: строка 6: синтаксическая ошибка рядом с неожиданным токеном ('./code.py: line 6: def ExtractFile (zip_file, пароль): '

Что за синтаксическая ошибка, потому что я не могу ее найти?


person Magdalena Vongkasemsiri    schedule 13.08.2020    source источник


Ответы (1)


Вы должны добавить шебанг: в первой строке добавьте

#! /usr/bin/env python2
person JCWasmx86    schedule 13.08.2020