Skip to content

Commit 6fd3d11

Browse files
author
Daniel Trauner
committed
Initial site, README, CODE_OF_CONDUCT, and LICENSE
1 parent 0158e3b commit 6fd3d11

9 files changed

+117
-1
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_Store
2+
docs/_site/
3+
docs/.sass-cache/
4+
docs/.jekyll-cache/
5+
docs/.jekyll-metadata
6+
docs/Gemfile*

CODE_OF_CONDUCT.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/

LICENSE.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# License
2+
3+
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">disclose</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://disclose.io" property="cc:attributionName" rel="cc:attributionURL">disclose.io</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.

README.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,30 @@
1-
# disclose
1+
# Disclose.io
2+
3+
<img src="docs/assets/img/logo.png" width="200">
4+
5+
So our hacker friends don't go to jail.
6+
7+
## Introduction
8+
9+
Disclose.io is a collaborative and vendor-agnostic project to standardize best practices around safe harbour for good-faith security research, and expands on the work done by Bugcrowd and CipherLaw's [Open Source Vulnerability Disclosure Framework](https://github.com/bugcrowd/disclosure-policy), Amit Elazari's [#legalbugbounty](https://www.youtube.com/watch?v=0fMrZCcshyc), and Dropbox's [recent blog post](https://blogs.dropbox.com/tech/2018/03/protecting-security-researchers/).
10+
11+
The design philosophy of the disclose.io framework is to balance four forces:
12+
13+
- Legal completeness,
14+
- Safe harbor for security researchers,
15+
- Safe harbor for program owners, and
16+
- Readability for those who don’t have a legal background or who who don’t speak English as a first language.
17+
18+
Organizations displaying the Disclose.io logo are committing to a set of **Core Terms** focused on creating safe harbor for good-faith security research. In order to uphold this commitment, such organizations are also required to provide clear definitions regarding the permitted **Scope** for such research, one or more **Official Communication Channels**, and a formal **Disclosure Policy**.
19+
20+
## Draft (Coming Soon)
21+
22+
TODO
23+
24+
## Attributions
25+
26+
- Current logo adapted from [Font Awesome](https://github.com/FortAwesome/Font-Awesome)
27+
28+
## License
29+
30+
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">disclose</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://disclose.io" property="cc:attributionName" rel="cc:attributionURL">disclose.io</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.

docs/CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
disclose.io

docs/_config.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
title: Disclose.io
2+
description: So our hacker friends don't go to jail.
3+
url: "https://disclose.io"
4+
baseurl: ""
5+
logo: /assets/img/logo.png
6+
google_analytics: "UA-35052704-20"
7+
8+
markdown: GFM
9+
theme: jekyll-theme-minimal

docs/assets/img/logo.png

13.3 KB
Loading

docs/favicon.ico

1.16 KB
Binary file not shown.

docs/index.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: Disclose.io
3+
layout: default
4+
---
5+
6+
___
7+
8+
Disclose.io is a collaborative and vendor-agnostic project to standardize best practices around safe harbour for good-faith security research, and expands on the work done by Bugcrowd and CipherLaw's [Open Source Vulnerability Disclosure Framework](https://github.com/bugcrowd/disclosure-policy), Amit Elazari's [#legalbugbounty](https://www.youtube.com/watch?v=0fMrZCcshyc), and Dropbox's [recent blog post](https://blogs.dropbox.com/tech/2018/03/protecting-security-researchers/).
9+
10+
The design philosophy of the disclose.io framework is to balance four forces:
11+
- Legal completeness,
12+
- Safe harbor for security researchers,
13+
- Safe harbor for program owners, and
14+
- Readability for those who don’t have a legal background or who who don’t speak English as a first language.
15+
16+
Organizations displaying the Disclose.io logo are committing to a set of **Core Terms** focused on creating safe harbor for good-faith security research. In order to uphold this commitment, such organizations are also required to provide clear definitions regarding the permitted **Scope** for such research, one or more **Official Communication Channels**, and a formal **Disclosure Policy**.
17+
18+
---
19+
20+
### Hackers, lawyers, and program owners&hellip;
21+
22+
&hellip;we’re looking for your collaboration on Disclose.io. Please submit any questions or comments by filing a new Issue on [GitHub](http://github.com/disclose/disclose).

0 commit comments

Comments
 (0)