msoffice-decrypt 1.0.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

msofficedecrypt 1.0.1

msoffice_decrypt================msoffice_decrypt is a Python tool and library for decrypting encryptedMS Office files with a password. This work is based onhttps://github.com/nolze/msoffcrypto-tool. I created this project tosolves a specific use case for myself.Installation------------Stable release~~~~~~~~~~~~~:: pip3 install -U msoffice_decryptFrom GitHub~~~~~~~~~~~:: pip3 install -U git+https://github.com/unixfreak0037/msoffice_decryptExamples--------(command line) Decrypt a file with a password.~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~:: msoffice_decrypt -p 7779 Scan_ciwilson.doc Scan_ciwilson_unencrypted.doc:: decrypted Scan_ciwilson.doc into Scan_ciwilson_unencrypted.doc(command line) Decrypt a file trying everything that might be a password in this other file.~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~:: msoffice_decrypt -i sample.txt Scan_ciwilson.doc Scan_ciwilson_unencrypted.doc:: found password: 7779 decrypted Scan_ciwilson.doc into Scan_ciwilson_unencrypted.doc(library)~~~~~~~~~.. code:: python from msoffice_decrypt import MSOfficeDecryptor decryptor = MSOfficeDecryptor(input_file_path, output_file_path) if decryptor.is_decryptable: # generate a list of passwords that might be right # here we assume sample.txt is a text file that contains the password somewhere with open('sample.txt', 'r') as fp: word_list = decryptor.find_password(fp) # see if any of these passwords are correct password = decryptor.guess(word_list) if password: decryptor.decrypt(password)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.