使用 YARA 扫描目录 python
Scanning directory with YARA python
这个问题困扰了一段时间。
我正在使用我自己的 yara 规则扫描一个目录,当我为单个文件尝试我的代码时它有效,但是当我在 for loop
上使用相同的代码时,它不匹配任何东西。
我尝试搜索我的问题,但它总是向我显示 yara 基础知识的文档。
def scan_test(): // works
file_source = 'index.php'
match_list = []
externals = {'filename': file_source}
rules = yara.compile('rules.yar', externals=externals)
with open('filepath') as f:
matches = rules.match(data=f.read(), externals=externals)
if len(matches) > 0:
match_list.append(matches)
return match_list
def scan_test3(dir_source): // not working
match_list = []
for folder,subfolders, files in os.walk(dir_source):
for file in files:
path = os.path.join(folder, file)
try:
file_name, file_extension = os.path.splitext(file)
if (file_extension == '.txt' or file_extension == '.php'):
rules = yara.compile('rules.yar', externals={'filename': file})
with open(path) as f:
matches = rules.match(data=f.read(), externals={'filename': file})
if len(matches) > 0:
match_list.append(matches)
except Exception as e:
print(e)
pass
return match_list
测试yara规则:
rule test_rule
{
meta:
description = "This is a test rule"
strings:
$a = "<?php"
condition:
$a and (filename matches /index\.php/ or filename matches /login\.php/)
}
我的代码对吗?
谁能帮我解决这个问题?
代码没有问题。
出于某种原因,yara-python 在 Windows 上未正确 运行。
在 Linux 上试过这段代码,它工作得很好。
这个问题困扰了一段时间。
我正在使用我自己的 yara 规则扫描一个目录,当我为单个文件尝试我的代码时它有效,但是当我在 for loop
上使用相同的代码时,它不匹配任何东西。
我尝试搜索我的问题,但它总是向我显示 yara 基础知识的文档。
def scan_test(): // works
file_source = 'index.php'
match_list = []
externals = {'filename': file_source}
rules = yara.compile('rules.yar', externals=externals)
with open('filepath') as f:
matches = rules.match(data=f.read(), externals=externals)
if len(matches) > 0:
match_list.append(matches)
return match_list
def scan_test3(dir_source): // not working
match_list = []
for folder,subfolders, files in os.walk(dir_source):
for file in files:
path = os.path.join(folder, file)
try:
file_name, file_extension = os.path.splitext(file)
if (file_extension == '.txt' or file_extension == '.php'):
rules = yara.compile('rules.yar', externals={'filename': file})
with open(path) as f:
matches = rules.match(data=f.read(), externals={'filename': file})
if len(matches) > 0:
match_list.append(matches)
except Exception as e:
print(e)
pass
return match_list
测试yara规则:
rule test_rule
{
meta:
description = "This is a test rule"
strings:
$a = "<?php"
condition:
$a and (filename matches /index\.php/ or filename matches /login\.php/)
}
我的代码对吗? 谁能帮我解决这个问题?
代码没有问题。 出于某种原因,yara-python 在 Windows 上未正确 运行。 在 Linux 上试过这段代码,它工作得很好。