aboutsummaryrefslogtreecommitdiffstats
path: root/app/phishing.html
diff options
context:
space:
mode:
authorKelvin Tan <kelvin.tyb@gmail.com>2018-07-25 23:37:04 +0800
committerKelvin Tan <kelvin.tyb@gmail.com>2018-07-27 00:03:39 +0800
commit7ca402147df6064c389912ef8136235a9eb2ebc4 (patch)
treeaaf0bd321f9ce82dfa3c59d194a5cff9003191f9 /app/phishing.html
parent53b440a2878cea6b97c42e9cc7969eabd3431f27 (diff)
downloadtangerine-wallet-browser-7ca402147df6064c389912ef8136235a9eb2ebc4.tar
tangerine-wallet-browser-7ca402147df6064c389912ef8136235a9eb2ebc4.tar.gz
tangerine-wallet-browser-7ca402147df6064c389912ef8136235a9eb2ebc4.tar.bz2
tangerine-wallet-browser-7ca402147df6064c389912ef8136235a9eb2ebc4.tar.lz
tangerine-wallet-browser-7ca402147df6064c389912ef8136235a9eb2ebc4.tar.xz
tangerine-wallet-browser-7ca402147df6064c389912ef8136235a9eb2ebc4.tar.zst
tangerine-wallet-browser-7ca402147df6064c389912ef8136235a9eb2ebc4.zip
add phishing html page, and redirect to bundled page in-window
Diffstat (limited to 'app/phishing.html')
-rw-r--r--app/phishing.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/app/phishing.html b/app/phishing.html
new file mode 100644
index 000000000..86f2985cc
--- /dev/null
+++ b/app/phishing.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML>
+
+<html>
+
+ <head>
+ <title>Phishing Warning</title>
+
+ <style>
+body {
+ background: #c50000;
+ padding: 50px;
+ display: flex;
+ justify-content: center;
+ font-family: sans-serif;
+}
+.centered {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ color: white;
+ max-width: 600px;
+}
+a {
+ color: white;
+}
+ </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-37075177-6', 'auto');
+ ga('send', 'pageview');
+ //Send referral data to EAL
+ (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-68598031-1', 'auto' {'allowLinker':true});
+ ga('send', 'pageview');
+ ga('require', 'linker');
+ ga('linker:autoLink', ['harrydenley.com', 'metamask.io'], false, true);
+ </script>
+
+ </head>
+
+ <body>
+ <div class="centered">
+
+ <img src="/images/ethereum-metamask-chrome.png" style="width:100%">
+ <h3>ATTENTION</h3>
+ <p>MetaMask believes this domain to have malicious intent and has prevented you from interacting with it.</p>
+ <p>This is because the site tested positive on the <a href="https://github.com/metamask/eth-phishing-detect">Ethereum Phishing Detector</a>.</p>
+ <p>You can turn MetaMask off to interact with this site, but it's advised not to.</p>
+ <p>If you think this domain is incorrectly flagged, <a href="https://github.com/metamask/eth-phishing-detect/issues/new">please file an issue</a>.</p>
+
+ </div>
+ </body>
+</html> \ No newline at end of file