-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathphishing-linkedin.html
39 lines (35 loc) · 1.48 KB
/
phishing-linkedin.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Login Page </title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<center>
<h1>LinkedIn Login: Can you imagine if this looked more legit?</h1>
</center>
<form id="linkedinphish" onsubmit="doTheThing(); return true">
<div class="container">
<label>Username : </label>
<input type="text" id="uname" placeholder="Enter Username" name="username" required>
<br />
<label>Password : </label>
<input type="password" id="pwd" placeholder="Enter Password" name="password" required>
<br />
<button type="submit" onclick="doTheThing(); return true">Login</button>
<br />
<input type="checkbox" checked="checked"> Remember me
<!-- <button type="button" class="cancelbtn"> Cancel</button> -->
<br />
Forgot <a href="#"> password? </a>
</div>
</form>
<script type="text/javascript">
function doTheThing() {
window.alert("Wow! I could have just exfiltrated " + document.getElementById('uname') + " and " + document.getElementById("pwd") + ". Good thing I didn't!")
}
</script>
</body>
</html>