Auto-sync: 2026-04-21 00:02

This commit is contained in:
2026-04-21 00:02:55 +08:00
parent 177469a1cd
commit cb7c11e14f
235 changed files with 16567 additions and 237 deletions

33
wiki/entities/Mythril.md Normal file
View File

@@ -0,0 +1,33 @@
---
title: "Mythril"
type: entity
tags: [tool, security, symbolic-execution]
sources: [blockchain-security-auditor]
last_updated: 2026-04-20
---
## 定义
Mythril 是由 Consensys Diligence 开发的智能合约安全分析工具使用符号执行symbolic execution技术检测以太坊智能合约中的漏洞。
## 功能
- 符号执行深度分析
- 漏洞检测assertion violation、selfdestruct
- 控制流分析
- 调用图构建
## 使用方式
```bash
myth analyze src/Contract.sol --execution-timeout 300 --max-depth 30
```
## 与其他工具对比
| 工具 | 方法 | 优势 |
|------|------|------|
| Slither | 静态分析 | 速度快 |
| Mythril | 符号执行 | 路径覆盖深 |
| Echidna | Fuzzing | 属性测试 |
## Connections
- [[Formal Verification]] ← implements ← [[Mythril]]
- [[Consensys Diligence]] ← created ← [[Mythril]]