m0m0x01d 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of m0m0x01d might be problematic. Click here for more details.
- package/file.html +2 -24
- package/package.json +1 -1
package/file.html
CHANGED
|
@@ -5,31 +5,9 @@
|
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
7
|
<title>Redirecting...</title>
|
|
8
|
-
<
|
|
9
|
-
window.onload = function() {
|
|
10
|
-
// Get the full URL
|
|
11
|
-
const fullUrl = window.location.href;
|
|
12
|
-
|
|
13
|
-
// Extract the 'redir' parameter manually
|
|
14
|
-
const urlParams = fullUrl.split("?")[1];
|
|
15
|
-
if (urlParams) {
|
|
16
|
-
const params = new URLSearchParams(urlParams);
|
|
17
|
-
const redirectUrl = params.get('redir');
|
|
18
|
-
|
|
19
|
-
// Check if redir parameter exists and is a valid URL
|
|
20
|
-
if (redirectUrl) {
|
|
21
|
-
window.location.href = decodeURIComponent(redirectUrl);
|
|
22
|
-
} else {
|
|
23
|
-
document.body.innerHTML = "<h1>Error: No redirection URL provided or invalid!</h1>";
|
|
24
|
-
}
|
|
25
|
-
} else {
|
|
26
|
-
document.body.innerHTML = "<h1>Error: No redirection URL provided!</h1>";
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
</script>
|
|
8
|
+
<meta http-equiv="refresh" content="0; url=https://40fe2e9f7b.ipv6.bypass.eu.org/">
|
|
30
9
|
</head>
|
|
31
10
|
<body>
|
|
32
|
-
<
|
|
11
|
+
<p>If you are not redirected automatically, <a href="https://40fe2e9f7b.ipv6.bypass.eu.org/">click here</a>.</p>
|
|
33
12
|
</body>
|
|
34
13
|
</html>
|
|
35
|
-
|