This password specifically refers to "Password to Modify" and Excel 2019 / 365 clearly warn in the reenter password popup: > Caution: Password to modify is not a security feature. ... Malicious users can edit the file and remove the password. This type of "protection" is also present in the VBA blobs (where you can change a few bytes and work around the VBA protection) Saving a file with a password to open actually e…
OfficerBreaker – pptx/docx/xlsx password remover
11–20 of 30 posts
Re: OfficerBreaker – pptx/docx/xlsx password remover
#12This password specifically refers to "Password to Modify" and Excel 2019 / 365 clearly warn in the reenter password popup: > Caution: Password to modify is not a security feature. ... Malicious users can edit the file and remove the password. This type of "protection" is also present in the VBA blobs (where you can change a few bytes and work around the VBA protection) Saving a file with a password to open actually e…
Huh? I wonder where that default password came from
> Inside Microsoft – A ‘Velvet Sweatshop’ or a High-Tech Heaven?
https://www.seattletimes.com/business/archive-inside-microso...
Re: OfficerBreaker – pptx/docx/xlsx password remover
#13Re: OfficerBreaker – pptx/docx/xlsx password remover
#14Re: OfficerBreaker – pptx/docx/xlsx password remover
#15Re: OfficerBreaker – pptx/docx/xlsx password remover
#16Based on the information in the README, wouldn't that be possible to accomplish in a simple bash script?
Re: OfficerBreaker – pptx/docx/xlsx password remover
#17haha I wrote something like this in python once.
xmldata = ZipFile(docxfile).open("word/settings.xml").read().decode()
xmldata = re.sub("", "", xmldata)
=> I wrote it for my personal use and for a few friends, and it is unfinished and not very well written, but if it can be useful to others, my little tool is here https://github.com/karteum/DoctoolRe: OfficerBreaker – pptx/docx/xlsx password remover
#18This password specifically refers to "Password to Modify" and Excel 2019 / 365 clearly warn in the reenter password popup: > Caution: Password to modify is not a security feature. ... Malicious users can edit the file and remove the password. This type of "protection" is also present in the VBA blobs (where you can change a few bytes and work around the VBA protection) Saving a file with a password to open actually e…