We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31ad801 + bda1f50 commit c46af82Copy full SHA for c46af82
app/utils.py
@@ -27,6 +27,7 @@ def load_yara_rules(directory):
27
28
# 주어진 디렉토리 내의 모든 YARA 파일 찾기
29
for root, dirs, files in os.walk(directory):
30
+ logging.info(f"Scanning directory: {root}") # 현재 디렉토리 로그에 남기기
31
for file in files:
32
if file.endswith(".yar"):
33
rule_files.append(os.path.join(root, file))
0 commit comments