Commit aef91b95cc9e870da2dd4205f9fc8a933e2ea2dd
1 parent
a42f5500
set is_encrypted variable to False as default
Showing
1 changed file
with
1 additions
and
1 deletions
oletools/olevba.py
| ... | ... | @@ -2719,7 +2719,7 @@ class VBA_Parser(object): |
| 2719 | 2719 | #: Flag set to True/False if VBA stomping detected |
| 2720 | 2720 | self.vba_stomping_detected = None |
| 2721 | 2721 | # will be set to True or False by detect_is_encrypted method |
| 2722 | - self.is_encrypted = None | |
| 2722 | + self.is_encrypted = False | |
| 2723 | 2723 | self.xlm_macrosheet_found = False |
| 2724 | 2724 | self.template_injection_found = False |
| 2725 | 2725 | ... | ... |