Skip to content

Commit

Permalink
Update SecretFinder.py
Browse files Browse the repository at this point in the history
  • Loading branch information
m4ll0k authored Mar 29, 2021
1 parent f470d84 commit d936681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SecretFinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def parser_file(content,mode=1,more_regex=None,no_dup=1):
content = jsbeautifier.beautify(content)
all_items = []
for regex in _regex.items():
r = re.compile(regex[1],re.VERBOSE)
r = re.compile(regex[1],re.VERBOSE|re.I)
if mode == 1:
all_matches = [(m.group(0),m.start(0),m.end(0)) for m in re.finditer(r,content)]
items = getContext(all_matches,content,regex[0])
Expand Down

0 comments on commit d936681

Please sign in to comment.