forked from ConsenSysDiligence/mythril
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexploits.json
More file actions
40 lines (40 loc) · 787 Bytes
/
exploits.json
File metadata and controls
40 lines (40 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"reentrancy": {
"patterns": [
"external_call_before_state_change",
"recursive_call_detection",
"state_modification_after_external_call"
],
"examples": [
"DAO_hack",
"Cream_Finance",
"Grim_Finance"
],
"severity": "critical"
},
"flash_loan_attack": {
"patterns": [
"flash_loan_arbitrage",
"price_manipulation",
"oracle_manipulation"
],
"examples": [
"bZx_attack",
"Harvest_Finance",
"Alpha_Finance"
],
"severity": "high"
},
"governance_attack": {
"patterns": [
"voting_power_concentration",
"proposal_spam",
"time_lock_bypass"
],
"examples": [
"Compound_governance",
"Maker_governance"
],
"severity": "medium"
}
}