yara-python
借助此库,您可以在 Python 程序中使用YARA 。它涵盖了 YARA 的所有功能,从编译、保存和加载规则到扫描文件、字符串和进程。
这里有一个小例子
>>> import yara
>>> rule = yara.compile(source='rule foo: bar {strings: $a = "lmn" condition: $a}')
>>> matches = rule.match(data='abcdefgjiklmnoprstuvwxyz')
>>> print(matches)
[foo]
>>> print(matches[0].rule)
foo
>>> print(matches[0].tags)
['bar']
>>> print(matches[0].strings)
[$a]
>>> print(matches[0].strings[0].identifier)
$a
>>> print(matches[0].strings[0].instances)
[lmn]
>>> print(matches[0].string
没有合适的资源?快使用搜索试试~ 我知道了~
YARA 的 Python 接口.zip
共24个文件
reg:9个
yml:2个
txt:2个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 92 浏览量
2024-11-24
14:21:48
上传
评论
收藏 45KB ZIP 举报
温馨提示
yara-python借助此库,您可以在 Python 程序中使用YARA 。它涵盖了 YARA 的所有功能,从编译、保存和加载规则到扫描文件、字符串和进程。这里有一个小例子>>> import yara>>> rule = yara.compile(source='rule foo: bar {strings: $a = "lmn" condition: $a}')>>> matches = rule.match(data='abcdefgjiklmnoprstuvwxyz')>>> print(matches)[foo]>>> print(matches[0].rule)foo>>> print(matches[0].tags)['bar']>>> print(matches[0].strings)[$a]>>> print(matches[0].strings[0].identifier)$a>>> print(matches[0].strings[0].instances)[lmn]>>> print(matches[0].string
资源推荐
资源详情
资源评论
收起资源包目录
YARA 的 Python 接口.zip (24个子文件)
tests.py 46KB
appveyor
install.ps1 7KB
setup_x64.bat 1KB
x64
600dd188-2429-11d7-8bf6-00b0d03daa06.reg 592B
656d8766-2429-11d7-8bf6-00b0d03daa06.reg 616B
656d8760-2429-11d7-8bf6-00b0d03daa06.reg 596B
600dd189-2429-11d7-8bf6-00b0d03daa06.reg 612B
VC_OBJECTS_PLATFORM_INFO.reg 3KB
600dd187-2429-11d7-8bf6-00b0d03daa06.reg 606B
656d8763-2429-11d7-8bf6-00b0d03daa06.reg 612B
600dd186-2429-11d7-8bf6-00b0d03daa06.reg 614B
656d875f-2429-11d7-8bf6-00b0d03daa06.reg 610B
run_with_env.cmd 3KB
setup.py 14KB
.github
workflows
publish-to-pypi.yml 3KB
标签.txt 6B
README.rst 2KB
LICENSE 11KB
.gitmodules 75B
资源内容.txt 635B
yara-python.c 76KB
MANIFEST.in 100B
setup.cfg 282B
appveyor.yml 7KB
共 24 条
- 1
资源评论
徐浪老师
- 粉丝: 8154
- 资源: 8383
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功