Domain speedtest.en1.eu
Germany
netcup GmbH
Software information

Apache Apache

tcp/443

  • Git configuration and history exposed
    First seen 2024-04-10 08:06
    Last seen 2026-01-02 00:49
    Open for 631 days
    • Severity: medium
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a65224091182f

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://github.com/librespeed/speedtest.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "master"]
      	remote = origin
      	merge = refs/heads/master
      
      Found on 2026-01-02 00:49
      268 Bytes
  • Git configuration and history exposed
    First seen 2024-04-10 08:06
    Last seen 2026-01-01 19:39
    Open for 631 days
    • Severity: medium
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a65224091182f

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://github.com/librespeed/speedtest.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "master"]
      	remote = origin
      	merge = refs/heads/master
      
      Found on 2026-01-01 19:39
      268 Bytes
  • Open service 46.38.234.57:443 · speedtest.en1.eu

    2026-01-09 02:30

    HTTP/1.1 200 OK
    Date: Fri, 09 Jan 2026 02:30:27 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found one day ago by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · v4.speedtest.en1.eu

    2026-01-09 01:59

    HTTP/1.1 200 OK
    Date: Fri, 09 Jan 2026 01:59:06 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found one day ago by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · speedtest.en1.eu

    2026-01-02 00:49

    HTTP/1.1 200 OK
    Date: Fri, 02 Jan 2026 00:49:44 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · v4.speedtest.en1.eu

    2026-01-01 19:39

    HTTP/1.1 200 OK
    Date: Thu, 01 Jan 2026 19:39:08 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2026-01-01 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · speedtest.en1.eu

    2025-12-30 07:40

    HTTP/1.1 200 OK
    Date: Tue, 30 Dec 2025 07:40:15 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · v4.speedtest.en1.eu

    2025-12-22 21:59

    HTTP/1.1 200 OK
    Date: Mon, 22 Dec 2025 21:59:45 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · speedtest.en1.eu

    2025-12-22 06:32

    HTTP/1.1 200 OK
    Date: Mon, 22 Dec 2025 06:32:38 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · v4.speedtest.en1.eu

    2025-12-21 09:54

    HTTP/1.1 200 OK
    Date: Sun, 21 Dec 2025 09:54:52 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2025-12-21 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · speedtest.en1.eu

    2025-12-20 18:26

    HTTP/1.1 200 OK
    Date: Sat, 20 Dec 2025 18:26:46 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · v4.speedtest.en1.eu

    2025-12-19 10:55

    HTTP/1.1 200 OK
    Date: Fri, 19 Dec 2025 10:55:20 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 46.38.234.57:443 · speedtest.en1.eu

    2025-12-19 02:29

    HTTP/1.1 200 OK
    Date: Fri, 19 Dec 2025 02:29:49 GMT
    Server: Apache
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Frame-Options: SAMEORIGIN
    Upgrade: h2
    Connection: Upgrade, close
    Last-Modified: Mon, 17 Feb 2025 13:07:25 GMT
    Accept-Ranges: bytes
    Content-Length: 18061
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src https://v6.speedtest.en1.eu https://v4.speedtest.en1.eu 'self' 'unsafe-inline'; img-src 'self' data:;
    Content-Type: text/html; charset=UTF-8
    
    Page title: Speedtest
    
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="shortcut icon" href="favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
    <meta charset="UTF-8" />
    <script type="text/javascript" src="speedtest.js"></script>
    <script type="text/javascript">
    function I(i){return document.getElementById(i);}
    
    //LIST OF TEST SERVERS. Leave empty if you're doing a standalone installation. See documentation for details
    //var SPEEDTEST_SERVERS=[
    	/*{	//this server doesn't actually exist, remove it
    		name:"Example Server 1", //user friendly name for the server
    		server:"//test1.mydomain.com/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    //LIST OF TEST SERVERS. See documentation for details if needed
    		*/
    var SPEEDTEST_SERVERS=[
    	{	
    		name:"speedtest.en1.eu", //user friendly name for the server
    		server:"//speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v6.speedtest.en1.eu (ipv6)", //user friendly name for the server
    		server:"//v6.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	},
    	{	
    		name:"v4.speedtest.en1.eu (ipv4)", //user friendly name for the server
    		server:"//v4.speedtest.en1.eu/", //URL to the server. // at the beginning will be replaced with http:// or https:// automatically
    		dlURL:"backend/garbage.php",  //path to download test on this server (garbage.php or replacement)
    		ulURL:"backend/empty.php",  //path to upload test on this server (empty.php or replacement)
    		pingURL:"backend/empty.php",  //path to ping/jitter test on this server (empty.php or replacement)
    		getIpURL:"backend/getIP.php"  //path to getIP on this server (getIP.php or replacement)
    	}
    	//add other servers here, comma separated
    ];
    
    //INITIALIZE SPEEDTEST
    var s=new Speedtest(); //create speed test object
    s.setParameter("telemetry_level","basic"); //enable basic telemetry (for results sharing)
    
    //SERVER AUTO SELECTION
    function initServers(){
    	if(SPEEDTEST_SERVERS.length==0){ //standalone installation
    		//just make the UI visible
    		I("loading").className="hidden";
    		I("serverArea").style.display="none";
    		I("testWrapper").className="visible";
    		initUI();
    	}else{ //multiple servers
    		var noServersAvailable=function(){
    			I("message").innerHTML="No servers available";
    		}
    		var runServerSelect=function(){
    			s.selectServer(function(server){
    				if(server!=null){ //at least 1 server is available
    					I("loading").className="hidden"; //hide loading message
    					//populate server list for manual selection
    					for(var i=0;i<SPEEDTEST_SERVERS.length;i++){
    						if(SPEEDTEST_SERVERS[i].pingT==-1) continue;
    						var option=document.createElement("option");
    						option.value=i;
    						option.textContent=SPEEDTEST_SERVERS[i].name;
    						if(SPEEDTEST_SERVERS[i]===server) option.selected=true;
    						I("server").appendChild(option);
    					}
    					//show test UI
    					I("testWrapper").className="visible";
    					initUI();
    				}else{ //no servers are available, the test cannot proceed
    					noServersAvailable();
    				}
    			});
    		}
    		if(typeof SPEEDTEST_SERVERS === "string"){
    			//need to fetch list of servers from specified URL
    			s.loadServerList(SPEEDTEST_SERVERS,functi
    Found 2025-12-19 by HttpPlugin
    Create report
speedtest.en1.euv4.speedtest.en1.euv6.speedtest.en1.eu
CN:
speedtest.en1.eu
Key:
ECDSA-256
Issuer:
E8
Not before:
2025-12-09 04:37
Not after:
2026-03-09 04:37
Domain summary
IP summary