Projects STRLCPY SharPyShell Commits de18c20b
🤬
  • ■ ■ ■ ■ ■ ■
    core/Generate.py
    skipped 49 lines
    50 50   xored.append(hex(x ^ ord(y)))
    51 51   return '{' + ",".join(xored) + '}'
    52 52  
    53  - def generate_byte_file_string(byte_arr):
    54  - output = [str(hex(byte)) for byte in byte_arr]
    55  - return '{' + ",".join(output) + '}'
    56  - 
    57 53   if 'aes' in self.__encryption:
    58 54   dll_name = 'runtime_compiler_aes.dll'
    59 55   else:
    skipped 57 lines
  • ■ ■ ■ ■ ■ ■
    modules/download.py
    skipped 110 lines
    111 111   return output_file_size
    112 112  
    113 113   def __write_local_file(self, file_content, output_path, split=False):
    114  - print(type(file_content))
    115 114   if split:
    116 115   file_open_mode = 'ab'
    117 116   else:
    118 117   file_open_mode = 'wb'
    119  - print(file_open_mode)
    120 118   with open(output_path, file_open_mode) as outfile:
    121 119   outfile.write(bytes(file_content, "utf-8"))
    122 120   output = "File Downloaded correctly to " + output_path
    skipped 59 lines
  • ■ ■ ■ ■ ■
    utils/gzip_utils.py
    skipped 10 lines
    11 11  
    12 12  
    13 13  def get_compressed_base64_from_binary(bin_bytearray_input):
    14  - print(base64.b64encode(gzip.compress(bin_bytearray_input)).decode())
    15 14   return base64.b64encode(gzip.compress(bin_bytearray_input)).decode()
    16 15   
Please wait...
Page is in error, reload to recover