kopia lustrzana https://github.com/robinmoisson/staticrypt
add google analytics
rodzic
9550fac437
commit
442e3dd39c
29
index.html
29
index.html
|
@ -16,6 +16,17 @@
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', 'UA-73629908-2', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -38,10 +49,12 @@
|
||||||
to encrypt your string with your passphrase in your browser (client side).
|
to encrypt your string with your passphrase in your browser (client side).
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Download your encrypted string in a HTML page with a password prompt you can upload anywhere (see <a target="_blank" href="example.html">example</a>).
|
Download your encrypted string in a HTML page with a password prompt you can upload anywhere (see <a
|
||||||
|
target="_blank" href="example.html">example</a>).
|
||||||
</p>
|
</p>
|
||||||
<h4><a class="no-style" id="toggle-concept" href="#">HOW IT WORKS ►</a></h4>
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
<h4><a class="no-style" id="toggle-concept" href="#">HOW IT WORKS ►</a></h4>
|
||||||
<div id="concept" class="hidden">
|
<div id="concept" class="hidden">
|
||||||
<p>
|
<p>
|
||||||
StatiCrypt generates a static, password protected page that can be decrypted in-browser:
|
StatiCrypt generates a static, password protected page that can be decrypted in-browser:
|
||||||
|
@ -49,12 +62,12 @@
|
||||||
and you're done: the javascript will prompt users for password, decrypt the page and load your HTML.
|
and you're done: the javascript will prompt users for password, decrypt the page and load your HTML.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<b class="text-danger">Disclaimer</b> TL;DR: if you have extra sensitive data, you should probably use
|
<b class="text-danger">Disclaimer</b> TL;DR: if you have extra sensitive data, you should probably
|
||||||
something else :)
|
use something else :)
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
We basically encrypt your page and put everything with a user-friendly way to use a password in the new
|
StatiCrypt basically encrypt your page and put everything with a user-friendly way to use a password
|
||||||
file.
|
in the new file.
|
||||||
<br>AES-256 is state of the art but <b>brute-force/dictionnary attacks are trivial to
|
<br>AES-256 is state of the art but <b>brute-force/dictionnary attacks are trivial to
|
||||||
do at a really fast pace: use a long, unusual passphrase !</b>
|
do at a really fast pace: use a long, unusual passphrase !</b>
|
||||||
</p>
|
</p>
|
||||||
|
@ -64,6 +77,7 @@
|
||||||
project</a> !
|
project</a> !
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<br>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -76,7 +90,8 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="unencrypted_html">HTML/string to encrypt</label>
|
<label for="unencrypted_html">HTML/string to encrypt</label>
|
||||||
<textarea class="form-control" id="unencrypted_html" placeholder="<html><head>..." rows="5"></textarea>
|
<textarea class="form-control" id="unencrypted_html" placeholder="<html><head>..."
|
||||||
|
rows="5"></textarea>
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
<a href="#" id="toggle-extra-option">+ More options</a>
|
<a href="#" id="toggle-extra-option">+ More options</a>
|
||||||
|
|
Ładowanie…
Reference in New Issue