32 lines
927 B
HTML
32 lines
927 B
HTML
<!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>
|