Add files via upload

This commit is contained in:
Adil Sadqi 2023-05-25 01:57:44 +01:00 committed by GitHub
parent 3672c3bc70
commit 0ac1a7d1ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 0 deletions

31
index.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<title>Subdomain Checker</title>
<script>
// Array of subdomains to check
var subdomains = ['asadqi.eu.org', 'ferox.eu.org', 'sadqi.eu.org', 'linod.eu.org', 'cerus.eu.org', 'clouda.eu.org'];
// Function to open subdomains
function openSubdomains() {
for (var i = 0; i < subdomains.length; i++) {
var url = 'http://' + subdomains[i];
window.open(url);
}
}
// Function to check and open subdomains periodically
function checkSubdomains() {
openSubdomains();
setTimeout(checkSubdomains, 60 * 60 * 1000); // 1 hour (in milliseconds)
}
// Start checking subdomains
checkSubdomains();
</script>
</head>
<body>
<h1>Subdomain Checker</h1>
<p>This page will automatically open your eu.org subdomains every hour.</p>
</body>
</html>