-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d1b871c
Showing
5 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Cryptodog, a community fork of the original Cryptocat</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
<link rel="icon" href="logo-128.png" type="image/png"> | ||
</head> | ||
<body> | ||
<div id="header"> | ||
<a href="/"> | ||
<img src="logo-128.png" width="64" height="64"> | ||
Cryptodog | ||
</a> | ||
</div> | ||
|
||
<p>Cryptodog is a community-developed fork of the original Cryptocat browser extension, which was <a href="https://web.archive.org/web/20160225040533/https://crypto.cat/">discontinued in February 2016</a>.</p> | ||
|
||
<h2>Warning</h2> | ||
<p>Cryptodog is experimental software. <b>Do not use Cryptodog if you have a critical need for secure messaging.</b> Instead, use <a href="https://signal.org">Signal</a>.</p> | ||
|
||
<h2>Usage</h2> | ||
|
||
<p>The recommended way to run Cryptodog is via our <a href="https://chrome.google.com/webstore/detail/cryptodog/blnkmmamdbladdaaddkjbecbphngeiec">Chrome</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/cryptodog">Firefox</a> extensions. Using our browser extension ensures you always have the official, most recent version.</p> | ||
|
||
<p>If you just want to test out Cryptodog, we have a <a href="https://cryptodog.github.io">client hosted on GitHub Pages</a>.</p> | ||
|
||
<h2>Bugs</h2> | ||
<p>Bug reports are welcome! If you find a bug in Cryptodog, please open an issue <a href="https://github.com/Cryptodog/cryptodog/issues">on GitHub</a>.</p> | ||
|
||
<p>If you believe the issue has a security impact, we would appreciate <i>coordinated disclosure</i>. Please email us at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
|
||
<h2>Contact</h2> | ||
General queries should be sent to <a href="mailto:[email protected]">[email protected]</a>. | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Security | Cryptodog</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div id="header"> | ||
<a href="/"> | ||
<img src="logo-128.png" width="64" height="64"> | ||
Cryptodog | ||
</a> | ||
</div> | ||
<h1>Security Caveats</h1> | ||
<p>Cryptodog is experimental software. It is suitable for educational and casual purposes only.</p> | ||
|
||
<p><b>Do not use Cryptodog if you have a critical need for anonymity and privacy.</b> This includes journalists, sources, activists, and citizens of oppressive countries.</p> | ||
|
||
<h3>Technical</h3> | ||
|
||
<p>Cryptodog is based on version 2.2.2 of Cryptocat. The vast majority of changes are UI-related; neither the client cryptography nor server backend have been modified. However, this does not preclude Cryptodog from introducing vulnerabilities not present in Cryptocat.</p> | ||
|
||
<p>For further details regarding Cryptodog's security model, see the <a href="https://web.archive.org/web/20160216105404/https://github.com/cryptocat/cryptocat/wiki">Cryptocat Wiki</a>.</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
body { | ||
background-color: #EEEEEE; | ||
margin: 40px auto; | ||
max-width: 65%; | ||
line-height: 1.6; | ||
font-size: 17px; | ||
color: #444; | ||
padding: 0 10px; | ||
font-family: sans-serif; | ||
text-rendering: optimizeLegibility; | ||
} | ||
|
||
h1, h2, h3 { | ||
line-height: 1.2; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
.indent { | ||
text-indent: 1em; | ||
} | ||
|
||
#header { | ||
font-size: 30px; | ||
} | ||
|
||
#header a { | ||
color: #444 | ||
} | ||
|
||
#header img { | ||
vertical-align: middle; | ||
} | ||
|