Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
yara-x — A rewrite of YARA in Rust. | Kitploit
工具/GitHubGitHub/virustotal/yara-x
Defensive ToolsDisk ForensicsIndicator of Compromise (IOC) ManagementStatic AnalysisDynamic Analysis (Sandboxing)Memory ForensicsThreat Feeds & AggregatorsVulnerability AnalysisForensicsMobile ForensicsNetwork SecurityData Recovery
1.2k1471411天前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
Malware Analysis
Binary Analysis
Threat Intelligence
Incident Response
Email Security
Data Recovery 分类第 19 名
Defensive Tools 分类第 12 名
Disk Forensics 分类第 19 名
Dynamic Analysis (Sandboxing) 分类第 13 名
Email Security 分类第 9 名
Incident Response 分类第 14 名
Indicator of Compromise (IOC) Management 分类第 9 名
Malware Analysis 分类第 1 名
Memory Forensics 分类第 12 名
Mobile Forensics 分类第 19 名
Network Security 分类第 14 名
Static Analysis 分类第 3 名
Threat Feeds & Aggregators 分类第 16 名
Threat Intelligence 分类第 11 名
GitHubvirustotal/yara-x

yara-x

A rewrite of YARA in Rust.

查看仓库网站
内容在请求的语言中不可用。显示英文版本。

tests coverage Crates.io Crates.io MSRV

YARA-X

YARA-X is a re-incarnation of YARA, a pattern matching tool designed with malware researchers in mind. This new incarnation intends to be faster, safer and more user-friendly than its predecessor. The ultimate goal of YARA-X is replacing YARA as the default pattern matching tool for malware researchers.

With YARA-X you can create descriptions of malware families (or whatever you want to describe) based on textual or binary patterns. Each description (a.k.a. rule) consists of a set of patterns and a boolean expression which determine its logic. Let’s see an example:

root@kitploit:~
rule silent_banker : banker {
    meta:
        description = "This is just an example"
        threat_level = 3
        in_the_wild = true

    strings:
        $a = {6A 40 68 00 30 00 00 6A 14 8D 91}
        $b = {8D 4D B0 2B C1 83 C0 27 99 6A 4E 59 F7 F9}
        $c = "UVODFRYSIHLNWPEJXQZAKCBGMT"

    condition:
        $a or $b or $c
}

The above rule is telling YARA-X that any file containing one of the three patterns must be reported as silent_banker. This is just a simple example, more complex and powerful rules can be created by using wild-cards, case-insensitive strings, regular expressions, special operators and many other features that you'll find explained in the documentation.

FAQ

How does YARA-X compare to YARA?

Read this.

Which are the differences at the rule level?

Read this.

Is YARA still maintained?

Yes, it is. YARA is still being maintained, and future releases will include bug fixes and minor features. However, don’t expect new large features or modules. All efforts to enhance YARA, including the addition of new modules, will now focus on YARA-X.

What's the current state of YARA-X?

YARA-X is already mature and stable. At VirusTotal, we have been running YARA-X in production for a long time, scanning billions of files with tens of thousands of rules, and addressing discrepancies and bugs. This means that YARA-X is already battle-tested.

Please test YARA-X and don’t hesitate to open an issue if you find a bug or some feature that you want to see implemented.

Contributing

Contributions to YARA-X are welcome! For details on the Google Contributor License Agreement (CLA) requirement, code style conventions, and how to submit pull requests, please read CONTRIBUTING.md.

下载工具