Задать вопрос
  • Регулярное выражение, просто взять первые 10 символов

    @tyutinofficial
    def file_read(filename):
        with open(filename, 'r') as f:
            return f.read()
    
    
    def ascii_file(files):
        return [ord(c) for c in file_read(files)]
    
    
    if __name__ == '__main__':
        file = r"C:\Users\tyuti\IdeaProjects\untitled\Model\Data\1\1 - A Game of Thrones.txt"
        res = ascii_file(file)[0:10]
        print(res)
    Ответ написан
    Комментировать
  • Как наиболее быстро совершить брутфорс AES, посредством Python?

    @tyutinofficial
    import string
    import math
    import time
    import random
    from random import choice
    import numpy as np

    def sigmoid(x):
    return 1/(1+np.exp(-x))

    def exponent(x):
    return np.exp(x)#y = e**x

    word = string.ascii_letters
    number = string.digits
    punctuation = string.punctuation

    time.sleep(1)

    #brute = #speed brute

    correctPassword = "94"
    wrongPasswords = []
    password = ""
    length = 2
    comb_pass = 0#all combination in bruteforce
    chars = number
    run = True

    while run:
    try:

    password = ""

    for i in range(length):
    password += choice(chars)

    if password not in wrongPasswords:
    if password != correctPassword:
    print(sorted(password))
    wrongPasswords.append(password)
    else:
    run = False
    break
    except:
    pass

    print(password, "is correct password")
    Ответ написан
    Комментировать