Add files via upload
This commit is contained in:
parent
3672c3bc70
commit
0ac1a7d1ee
|
@ -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>
|
Loading…
Reference in New Issue