-
-
Notifications
You must be signed in to change notification settings - Fork 77
Description
Is your feature request related to a problem? Please describe.
Some organizations have both a policy on what to do when they receive a report (bug bounty policy) and a separate policy on what the org will do when the org finds vulnerabilities in external products (vuln disclosure policy).
Facebook has both of these:
- Bug bounty aka whitehat policy: https://www.facebook.com/whitehat/info/
- External vulnerability disclosure policy: https://www.facebook.com/security/advisories/Vulnerability-Disclosure-Policy
I expect this trend to continue, with more organizations developing these policies which serve different purposes.
Currently security.txt supports a Policy:
field which is ambiguously defined as
This field indicates a link to where the vulnerability disclosure policy is located. This can help security researchers understand the organization's vulnerability reporting practices.
This is open to interpretation, which is versatile, but leaves both creators of security.txt and readers of the file unclear what the policy is for (inbound bug reports, or outbound bug reports).
Describe the solution you'd like
Multiple Policy:
types, for example Bug Bounty Policy:
and Disclosure Policy:
.
Describe alternatives you've considered
The RFC seems to support repeating fields, so a solution that is compliant today could be to do:
Policy: https://www.facebook.com/whitehat/info/
Policy: https://www.facebook.com/security/advisories/Vulnerability-Disclosure-Policy
Another option is to use the field for the bug bounty policy, which is what security.txt readers are probably looking for, and mention the external disclosure policy in a comment.
The downside is that neither of these are as clear as having dedicated fields.