Added bug bounty program guide

This commit is contained in:
Chris Kalani
2019-08-28 16:23:35 -07:00
parent a01eafa4e7
commit 220856d084
2 changed files with 78 additions and 1 deletions

View File

@@ -0,0 +1,67 @@
# Rewards
The severity of reported vulnerabilities will be graded according to the [CVSS](https://www.first.org/cvss/) (Common Vulnerability Scoring Standard). The following table will serve as a guideline for reward decisions:
| Critical (CVSS 9.0 - 10.0) | High (CVSS 7.0 - 8.9) | Medium (CVSS 4.0 - 6.9) | Low (CVSS 0.0 - 3.9) |
| -------------------------- | --------------------- | ----------------------- | -------------------- |
| $10,000 - $100,000 | $2,500 - $10,000 | $1,000 - $2,500 | $0 - $1,000 |
Please note that any rewards will ultimately be awarded at the discretion of ZeroEx Intl. All rewards will be paid out in ZRX.
### Areas of interest
The following are examples of types of vulnerabilities that are of interest:
- Loss of assets
- A user loses assets in a way that they did not explicitly authorize (e.g an account is able to gain access to an `AssetProxy` and drain user funds).
- A user authorized a transaction or trade but spends more assets than normally expected (e.g an order is allowed to be over-filled).
- Unintended contract state
- A user is able to update the state of a contract such that it is no longer useable (e.g permanently lock a mutex).
- Any assets get unexpectedly "stuck" in a contract with regular use of the contract's public methods.
- Bypassing time locks
- The `AssetProxyOwner` is allowed to bypass the timelock for transactions where it is not explicitly allowed to do so.
- A user is allowed to bypass the `AssetProxyOwner`.
# Scope
The following contracts are in scope of the bug bounty. Please note that any bugs already reported are considered out of scope.
## 2.1
2.1 submissions should be based off of the contracts as of commit [ff70c5ecfe28eff14e1a372c5e493b8f5363e1d0](https://github.com/0xProject/0x-monorepo/tree/ff70c5ecfe28eff14e1a372c5e493b8f5363e1d0/packages/contracts/src/2.0.0).
The contracts found in the following directories are considered within scope of this bug bounty:
- `src/2.0.0/protocol`
- `src/2.0.0/utils`
- `src/2.0.0/multisig/MultiSigWalletWithTimeLock`
Security audits of these contracts can be found [here](https://docs.google.com/document/d/1jYv6V21MfCSwCS5fxD6ZyaLWGzkpRSUO0lZpST94XsA/edit) and [here](https://github.com/ConsenSys/0x_audit_report_2018-07-23).
## MultiAssetProxy
`MultiAssetProxy` submissions should be based off of the contracts as of commit [c4d9ef9f83508154fe9db35796b6b86aeb0f2240](https://github.com/0xProject/0x-monorepo/tree/c4d9ef9f83508154fe9db35796b6b86aeb0f2240/contracts/asset-proxy).
The only contract within the scope of this bug bounty is:
- `contracts/src/MultiAssetProxy.sol`
The security audit for this contract can be found [here](https://github.com/ConsenSys/0x-audit-report-2018-12).
## ERC1155Proxy
`ERC1155Proxy` submissions should be based off of the contracts as of commit [77484dc69eea1f4f1a8397590199f3f2489751d2](https://github.com/0xProject/0x-monorepo/tree/77484dc69eea1f4f1a8397590199f3f2489751d2/contracts/asset-proxy).
The only contract within the scope of this bug bounty is:
- `contracts/src/ERC1155Proxy.sol`
The security audit for this contract can be found [here](https://github.com/ConsenSys/0x-audit-report-2019-05).
## StaticCallProxy
`StaticCallProxy` submissions should be based off of the contracts as of commit [54f4727adc6da95f312e3721f44857110555d24c](https://github.com/0xProject/0x-monorepo/tree/54f4727adc6da95f312e3721f44857110555d24c/contracts/asset-proxy).
The only contract within the scope of this bug bounty is:
- `contracts/src/StaticCallProxy.sol`
# Disclosures
Please e-mail all submissions to security@0x.org with the subject "BUG BOUNTY". Your submission should include any steps required to reproduce or exploit the vulnerability. Please allow time for the vulnerability to be fixed before discussing any findings publicly. After receiving a submission, we will contact you with expected timelines for a fix to be implemented.

View File

@@ -156,7 +156,17 @@
"difficulty": "Advanced", "difficulty": "Advanced",
"path": "guides/0x-extensions-explained.mdx" "path": "guides/0x-extensions-explained.mdx"
} }
}, },
"bug-bounty-program": {
"title": "Bug Bounty Program",
"subtitle": "An ongoing bug bounty for the 0x protocol smart contracts.",
"description": "An ongoing bug bounty for the 0x protocol smart contracts.",
"tags": ["Protocol Developer"],
"topics": ["Protocol Developer"],
"difficulty": "Advanced",
"path": "guides/bug-bounty-program.mdx"
}
},
"tools": { "tools": {
"asset-swapper": { "asset-swapper": {
"title": "0x Asset Swapper", "title": "0x Asset Swapper",