mirror of
https://github.com/github/codeql.git
synced 2026-04-16 20:44:02 +02:00
7 lines
137 B
Python
7 lines
137 B
Python
import re
|
|
matcher = re.compile(r"[password|pwd]")
|
|
|
|
def find_password(data):
|
|
if matcher.match(data):
|
|
print("Found password!")
|