From 1b0e129a70b68210772f85d8773e4c9215c3a532 Mon Sep 17 00:00:00 2001 From: Lucas Legname Date: Mon, 24 Mar 2014 22:41:30 +0100 Subject: [PATCH] Main page style update. Security checks added. --- src/index.html | 27 +++++++++++++++++++++---- src/main.css | 48 +++++++++++++++++++++++++++++++++++++++++++-- src/ninja.misc.js | 25 +++++++++++++++++++++++ src/ninja.onload.js | 2 ++ 4 files changed, 96 insertions(+), 6 deletions(-) diff --git a/src/index.html b/src/index.html index 9aa7e2a..fad747e 100644 --- a/src/index.html +++ b/src/index.html @@ -184,10 +184,29 @@
-

A crypto-currency wallet is as simple as a single pairing of a public address with its corresponding private key. Such a wallet has been generated for you in your web browser and is displayed above.

-

To safeguard this wallet you must print or otherwise record the public address and private key. It is important to make a backup copy of the private key and store it in a safe location. This site does not have knowledge of your private key. If you are familiar with PGP you can download this all-in-one HTML page and check that you have an authentic version from the author of this site by matching the SHA1 hash of this HTML with the SHA1 hash available in the signed version history document linked on the footer of this site. If you leave/refresh the site or press the "Generate New Address" button then a new private key will be generated and the previously displayed private key will not be retrievable. Your private key should be kept a secret. Whomever you share the private key with has access to spend all the coins associated with that address. If you print your wallet then store it in a zip lock bag to keep it safe from water. Treat a paper wallet like cash.

-

Add funds to this wallet by instructing others to send coins to your public address.

-

Spend your coins by downloading one of the popular p2p clients of your preferred currency and importing your private key. Keep in mind when you import your single key to a p2p client and spend funds your key will be bundled with other private keys in the p2p client wallet. When you perform a transaction your change will be sent to another address within the p2p client wallet. You must then backup the p2p client wallet and keep it safe as your remaining bitcoins will be stored there. Satoshi advised that one should never delete a wallet.

+
+

A crypto-currency wallet is as simple as a single pairing of a public address with its corresponding private key. Such a wallet has been generated for you in your web browser and is displayed above.

+

To safeguard this wallet you must print or otherwise record the public address and private key. It is important to make a backup copy of the private key and store it in a safe location. This site does not have knowledge of your private key. If you are familiar with PGP you can download this all-in-one HTML page and check that you have an authentic version from the author of this site by matching the SHA1 hash of this HTML with the SHA1 hash available in the signed version history document linked on the footer of this site. If you leave/refresh the site or press the "Generate New Address" button then a new private key will be generated and the previously displayed private key will not be retrievable. Your private key should be kept a secret. Whomever you share the private key with has access to spend all the coins associated with that address. If you print your wallet then store it in a zip lock bag to keep it safe from water. Treat a paper wallet like cash.

+

Add funds to this wallet by instructing others to send coins to your public address.

+

Spend your coins by downloading one of the popular p2p clients of your preferred currency and importing your private key. Keep in mind when you import your single key to a p2p client and spend funds your key will be bundled with other private keys in the p2p client wallet. When you perform a transaction your change will be sent to another address within the p2p client wallet. You must then backup the p2p client wallet and keep it safe as your remaining bitcoins will be stored there. Satoshi advised that one should never delete a wallet.

+
+
+ +
+ Security Checklist : + +
    +
  • + +
  • + +
  • + Are you using a secure operating system guaranteed to be free of spyware and viruses, for example, an Ubuntu LiveCD? +
  • +
+
+
+
diff --git a/src/main.css b/src/main.css index 5249f57..a62ebb4 100644 --- a/src/main.css +++ b/src/main.css @@ -6,7 +6,7 @@ a { position: relative; z-index: 20; text-decoration: none; color: #d58424; } .right { text-align: right; } .walletarea { display: none; border: 1px solid #BFBFBF; background-color: white; } hr { margin: 20px 0; border-top: 1px dashed #008000; } -.keyarea { height: 110px; text-align: left; position: relative; padding: 5px; } +.keyarea { height: 110px; text-align: left; position: relative; padding: 25px 25px 10px; } .keyarea .public { float: left; } .keyarea .pubaddress { display: inline-block; height: 40px; padding: 0 0 0 10px; float: left; } .keyarea .privwif { margin: 0; float: right; text-align: right; padding: 0 20px 0 0; position: relative; } @@ -41,7 +41,51 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); } #singlearea { font-size: 90%; } #singlesecret { position: relative; top: -130px; float: right; right: 200px; color: red; font-weight: bolder; font-size: 200%; } #singleshare { position: relative; top: -110px; float: left; left: 160px; color: green; font-weight: bolder; font-size: 200%; } -#singlesafety { text-align: left; padding: 5px; border-top: 1px solid #BFBFBF; top: -25px; position: relative; } +#singlesafety { text-align: left; border-top: 1px solid #BFBFBF; position: relative; } + +.firstHalfSingleSafety, .secondHalfSingleSafety { + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ + display: inline-block; + vertical-align: top; + position: relative; +} + +.firstHalfSingleSafety { + width: 50%; + padding: 10px 30px 10px 30px; + } + + .secondHalfSingleSafety { + float: right; + width: 50%; + padding: 20px; + } + +.frontPageImage { + width: 100%; + +} + +.securityChecklist { + background-color: #FFE6C9; + margin-top: 25px; + padding: 20px; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; +} + +.securityChecklist ul { padding: 5px 0 0 20px; } + +.securityChecklist li { + padding-left: 5px; + margin-bottom: 10px; +} + +.redText { color: red; } +.greenText { color: green; } #main { position: relative; text-align: center; margin: 0px auto; width: 1005px; } #logo { width: 578px; height: 80px; } diff --git a/src/ninja.misc.js b/src/ninja.misc.js index bf854b3..6b66bb9 100644 --- a/src/ninja.misc.js +++ b/src/ninja.misc.js @@ -198,6 +198,31 @@ ninja.tabSwitch = function (walletTab) { } }; +ninja.envSecurityCheck = function() { + var innerHTML = ""; + switch(window.location.protocol) { + case 'http:': + case 'https:': + innerHTML = 'You appear to be running this generator off of a live website, which is not recommended for creating valuable wallets. Instead, use the download link at the bottom of this page to download the ZIP file from GitHub and run this generator offline as a \'local\' HTML file.'; + break; + case 'file:': + innerHTML = 'You are running this generator from your own download.'; + break; + default: + } + document.getElementById('envSecurityCheck').innerHTML = innerHTML; +}; + +ninja.browserSecurityCheck = function() { + var innerHTML = ""; + if (window.crypto && window.crypto.getRandomValues) { + innerHTML = 'Your browser is capable of generating cryptographically random keys using window.crypto.getRandomValues'; + } else { + innerHTML = 'Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.'; + } + document.getElementById('browserSecurityCheck').innerHTML = innerHTML; +} + ninja.getQueryString = function () { var result = {}, queryString = location.search.substring(1), re = /([^&=]+)=([^&]*)/g, m; while (m = re.exec(queryString)) { diff --git a/src/ninja.onload.js b/src/ninja.onload.js index bdf2d3c..52e3d92 100644 --- a/src/ninja.onload.js +++ b/src/ninja.onload.js @@ -39,3 +39,5 @@ for(i = 0; i < janin.currencies.length; i++) { list += ""; donatelist.innerHTML = list; +ninja.envSecurityCheck(); +ninja.browserSecurityCheck(); \ No newline at end of file