Skip to content

Commit

Permalink
Update SecretFinder.py
Browse files Browse the repository at this point in the history
  • Loading branch information
m4ll0k authored Feb 10, 2021
1 parent 0a9300f commit 64135e9
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 @@ -456,7 +456,7 @@ def send_request(url):
else:
body += '</a><div class="container">%s</div></div>'%(match.get('context')[0] if len(match.get('context'))>1 else match.get('context'))
body = body.replace(
match.get('context')[0],
match.get('context')[0] if len(match.get('context'))>1 else match.get('context'),
'<span style="background-color:yellow">%s</span>'%(match.get('context') if len(match.get('context'))>1 else match.get('context'))
)
output += header + body
Expand Down

0 comments on commit 64135e9

Please sign in to comment.