-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
84 lines (70 loc) · 2.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Phishing Link Detector</title>
<meta charset="UTF-8" />
</head>
<body>
<div id="app"></div>
<h1>Phishing Link Detector</h1>
<!-- <p>
A recent surge of new higher quality phishing emails that generally appear very similar to the
service they try to impersonate and lead users to engage with links that are
pretending to point toward trusted sites (http://luxtrust.lu) but are actually
leading to phishing websites (https://phishing.com) or "Fake Links".</p>
<p>
Since these fake links are reasonably well masked, even fairly careful and informed users click on them and might fall pry to getting their login data stolen.</p> -->
<hr />
<table class="testEntry testTable">
<tr>
<th>Displayed to Email User</th>
<th>Actual Link</th>
<th>Is Authentic</th>
<th>Link Data</th>
</tr>
<tr class="tableData"></tr>
</table>
<h3 style="margin-top: 50px;">
Test it yourself
</h3>
<ul>
<li>
1. Paste the link data (a tag containing http:// href) you want to check for authenticity
</li>
<li>2. Press Enter</li>
</ul>
<input type="text" placeholder="Paste a html a tag here: <a href='https:// ... '> ... </a>" />
<!-- <table class="testEntry testTable" style="margin-top: 0;">
<tr>
<th>Link shown to Email User</th>
<th>Actual Link</th>
<th>Is Authentic</th>
</tr>
<tr>
<td>test.com</td>
<td>www.test.com</td>
<td>Yes</td>
</tr>
</table> -->
<p><b>Performance Notice</b></p>
<p>
Speed of Link checking is near realtime. Loading time is only due to
transfer time of your test request to the server where the actual
authentication code is hosted.
</p>
<!-- <script src="src/linkCheck.ts"></script> -->
<script src="demoAssets/tablePopulation.js"></script>
</body>
</html>
<!-- <div class="testEntry">
<div class="linkDataShowcase fullWidth"></div>
<div class="displayedLink fullWidth">
Displayed Link:
</div>
<div class="actualLink fullWidth">
Actual Link:
</div>
<div class="assessment fullWidth">
Assessment
</div>
</div> -->