diff --git a/bofhound/parsers/generic_parser.py b/bofhound/parsers/generic_parser.py index 15c71f1..cbd2bbb 100644 --- a/bofhound/parsers/generic_parser.py +++ b/bofhound/parsers/generic_parser.py @@ -10,7 +10,7 @@ def __init__(self): @staticmethod - def parse_file(file, is_outflankc2): + def parse_file(file, is_outflankc2=False): with codecs.open(file, 'r', 'utf-8') as f: if is_outflankc2: return GenericParser.parse_outflank_file(f.read())