Commit 34781615da75e4005cd1cf320604a01539b4c18e

Authored by Christian Herdtweck
1 parent 9f149ddb

added option --relaxed to olevba main

Showing 1 changed file with 2 additions and 0 deletions
oletools/olevba.py
... ... @@ -3071,6 +3071,8 @@ def main():
3071 3071 help="logging level debug/info/warning/error/critical (default=%default)")
3072 3072 parser.add_option('--deobf', dest="deobfuscate", action="store_true", default=False,
3073 3073 help="Attempt to deobfuscate VBA expressions (slow)")
  3074 + parser.add_option('--relaxed', dest="relaxed", action="store_true", default=False,
  3075 + help="Do not raise errors if opening of substream fails")
3074 3076  
3075 3077 (options, args) = parser.parse_args()
3076 3078  
... ...