Host 194.36.90.164
Israel
O.m.c. Computers & Communications Ltd
Amazon
  • Open service 194.36.90.164:8087

    2025-01-03 22:15

    HTTP/1.1 200 OK
    content-type: text/html; charset=UTF-8
    content-length: 8
    connection: close
    
    
     /webui 
    Found 2025-01-03 by HttpPlugin
    Create report
  • Open service 194.36.90.164:11443

    2024-12-31 21:55

    HTTP/1.1 502 Bad Gateway
    content-length: 107
    cache-control: no-cache
    content-type: text/html
    connection: close
    
    
    <html><body><h1>502 Bad Gateway</h1>
    The server returned an invalid or incomplete response.
    </body></html>
    
    Found 2024-12-31 by HttpPlugin
    Create report
  • Open service 194.36.90.164:85

    2024-12-24 00:25

    HTTP/1.1 200 OK
    content-type: text/html; charset=UTF-8
    content-length: 8
    connection: close
    
    
     /webui 
    Found 2024-12-24 by HttpPlugin
    Create report
  • Open service 194.36.90.164:9568

    2024-12-23 22:47

    HTTP/1.1 200 OK
    content-type: text/html; charset=UTF-8
    content-length: 26945
    connection: close
    
    
    <html>
    <head>
    	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    
    	<link rel="stylesheet" type="text/css" href="res/ext/resources/css/ext-all.css" />
    	<link rel="stylesheet" type="text/css" href="css/ext-override.css" />
    	<link rel="stylesheet" type="text/css" href="css/desktop.css" />
    	
    	<link type="text/css" rel="stylesheet" href="res/jquery_api/dist/css/jquery-entropizer.min.css" />
    
    	<script type="text/javascript" src="res/ext/ext-all.js"></script>
    	<script type="text/javascript" src="utility/flag.js"></script>
    	
    	<script type="text/javascript" src="res/jquery_api/lib/jquery.js"></script>
        <script type="text/javascript" src="res/jquery_api/lib/entropizer.js"></script>
        <script type="text/javascript" src="res/jquery_api/lib/demo/bootstrap.min.js"></script>
        <script type="text/javascript" src="res/jquery_api/dist/js/jquery-entropizer.min.js"></script>
    	
    	<style type="text/css">
    		#newPwdStrength .entropizer-track {
                background-color: #e8e8e8;
                border-radius: 2px;
                height: 4px;
            }
            #newPwdStrength .entropizer-bar {
                height: 4px;
            }
    	</style>
    	
    	<script type="text/javascript">
    		var countDownId = null;
    		var lastSeconds = 60;
    		var loadMask = null;
    		document.title= modeFlag.company + " " + modeFlag.modelName;
    
    		function createXMLHttpRequest() {
    			try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
    			try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
    			try { return new XMLHttpRequest(); } catch(e) {}
    			return null;
    		}
    	
    		function sendCmd(cmd) {
    			var objHTTP;
    			objHTTP = createXMLHttpRequest();
    			objHTTP.open("GET", cmd , false);
    			objHTTP.send(null);
    			return objHTTP.responseText;
    		}
    
    		var setLan = Ext.util.Cookies.get('language');
    		var map = false;
    		
    		if (setLan == null) {
    			if (Ext.isIE || /trident\/7\.0/.test(Ext.userAgent)) {
    				setLan = navigator.userLanguage.toLowerCase();
    			}else {
    				setLan = navigator.language.toLowerCase();
    			}
    			if(setLan != "zh-tw")
    				setLan = setLan.split("-")[0];
    		}
    		
    		for (var countryCode in modeFlag.languageMap) {
    			if (setLan == countryCode) {
    				map = true;
    				break;
    			}
    		}
    		
    		if (!map) {
    			setLan = "en";
    		}
    
    		Ext.util.Cookies.set('language', setLan, new Date(new Date().getTime()+(1000*60*60*24*365*5)));
    
    		eval("language="+sendCmd('res/i18n/nls/'+setLan+'/nsa.js'));
    
    		function getText (str,args) {
    			var map = {};
    			var text = "";
    			if (args) {
    				map = (Ext.isObject(args) ? args : Ext.toArray(arguments, 1));
    			}
    
    			if(language.hasOwnProperty(str))
    				text = language[str];
    			else
    				text = str;
    
    			if (text){
    				text = text.replace(/\%\{(\w+)\}/g, function(match, key) {
    					if (map[key]) {
    						return map[key];
    					}
    					else if (language[key]) {
    						return language[key];
    					}
    					else {
    						return key;
    					}
    				});
    			}
    			return text;
    		}
    		if (Ext.isIE || /Trident\/7\.0/.test(navigator.userAgent)) {
    			link = document.createElement("link");
    			link.href = "css/iefont.css";
    			link.type = "text/css";
    			link.rel = "stylesheet";
    			document.getElementsByTagName("head")[0].appendChild(link);
    		}
    
    		Ext.onReady(function () {
    			if(Ext.get('noteText'))
    				Ext.get('noteText').dom.innerHTML = getText('Note') + " : " + getText('Please turn on the Javascript and ActiveX control setting on Internet Explorer.');
    			var utf8_encode = function(text) {
    				str = text.replace(/\r\n/g,"\n");
    				var utftext = [];
    	
    				for (var n = 0; n < str.length; n++) {
    					var c = str.charCodeAt(n);
    	
    					if (c < 128) {
    						utftext.push(String.fromCharCode(c));
    					}
    					else if((c > 127) && (c < 2048)) {
    						utftext.push(String.fromCharCode((c >> 6) | 192));
    						utftext.push(String.fromCharCode((c & 63) | 128));
    					}
    					else {
    						utftext.push(String.fromCharCode((c >> 12) | 224));
    						utftext.push(String.fromCharCode(((c >> 6) & 63) | 128));
    						utftext.push(String.fromCharCode((c & 63) | 128));
    					}
    				}
    				return utftext.join("");
    			};
    Found 2024-12-23 by HttpPlugin
    Create report
  • Open service 194.36.90.164:5984

    2024-12-21 23:18

    HTTP/1.1 200 OK
    content-type: text/html;charset=UTF-8
    content-length: 42287
    connection: close
    
    
    <!DOCTYPE html>
    <html dir="ltr" lang="en">
    <meta charset="utf-8" />
    
    <p hidden>
      <!--
      Server:
      Server: 360 web server
      Server: 792/71644  HTTP Server version 2.0 - TELDAT S.A.
      Server: A10WS/1.00
      Server: ADB Broadband HTTP Server
      Server: AR
      Server: ASUSTeK UPnP/1.0 MiniUPnPd/1.4
      Server: ATS/5.3.0
      Server: Adaptec ASM 1.1
      Server: AirTies/ASP 1.0 UPnP/1.0 miniupnpd/1.0
      Server: Allegro-Software-RomPager/4.06
      Server: AmirHossein Server v1.0
      Server: AnWeb/1.42p
      Server: AnyStor-E
      Server: Apache-Coyote/1.1
      Server: App-webs/
      Server: ArGoSoft Mail Server Pro for WinNT/2000/XP, Version 1.8 (1.8.9.4)
      Server: AvigilonGateway/1.0 Microsoft-HTTPAPI/2.0
      Server: Baby Web Server
      Server: BigIP
      Server: Boa/0.93.15
      Server: Boa/0.94.7
      Server: Boa/0.94.13
      Server: Boa/0.94.14rc20
      Server: Boa/0.94.14rc21
      Server: BolidXMLRPC/1.10 (Windows NT) ORION-BOLID v1.10
      Server: BroadWorks
      Server: Brovotech/2.0.0
      Server: CJServer/1.1
      Server: CPWS
      Server: CVM
      Server: Caddy
      Server: Cambium HTTP Server
      Server: Camera Web Server
      Server: CentOS WebPanel: Protected by Mod Security
      Server: Check Point SVN foundation
      Server: Cherokee/1.2.101 (Ubuntu)
      Server: CherryPy/2.3.0
      Server: CherryPy/3.1.0beta3 WSGI Server
      Server: CherryPy/8.1.2
      Server: Cisco AWARE 2.0
      Server: Citrix Web PN Server
      Server: Commvault WebServer
      Server: Control4 Web Server
      Server: CouchDB/1.6.1 (Erlang OTP/18)
      Server: CouchDB/2.0.0 (Erlang OTP/17)
      Server: Cougar/9.01.01.3841
      Server: Cougar/9.01.01.5001
      Server: Cowboy
      Server: Cross Web Server
      Server: D-Link Web Server 0.01
      Server: DNVRS-Webs
      Server: DVR-HttpServer/1.0
      Server: DVRDVS-Webs
      Server: DWS
      Server: DasanNetwork Solution
      Server: Debian/4.0 UPnP/1.0 miniupnpd/1.0
      Server: Deluxe Beauty Office
      Server: Destiny
      Server: DpmptspKarawangkab_HTTP_SERVER
      Server: E2EE Server 1.0
      Server: EBox
      Server: EShare Http Server/1.0
      Server: Easy-Web Server/1.0
      Server: Embedded HTTP Server.
      Server: Embedthis-Appweb/3.2.3
      Server: Embedthis-Appweb/3.3.1
      Server: Embedthis-http
      Server: Ericom Access Server
      Server: Ericom Access Server x64
      Server: FN-Httpd 1.0 [HTTP/1.1]
      Server: FUJITSU ServerView iRMC S4 Webserver
      Server: FileMakerPro/6.0Fv4 WebCompanion/6.0v3
      Server: Flussonic
      Server: GSHD/3.0
      Server: GeoHttpServer
      Server: GeoWebServer 4.4.1.0
      Server: Ginatex-HTTPServer
      Server: GlassFish Server Open Source Edition  4.0
      Server: GoAhead-Webs
      Server: GoAhead-Webs/2.5.0
      Server: GoAhead-http
      Server: GoTTY
      Server: H3C-Miniware-Webs
      Server: HFS 2.2f
      Server: HFS 2.3 beta
      Server: HFS 2.3e
      Server: HFS 2.3i
      Server: HFS 2.3k
      Server: HFS 2.3m
      Server: HTTP Server
      Server: HTTP Server 1.0
      Server: HTTP Software 1.1
      Server: HTTPD
      Server: HTTPD Web Server
      Server: HTTPD-HR Server powered by Apache
      Server: HTTPD_gw 1.0
      Server: Hikvision-Webs
      Server: Hipcam
      Server: HostGW.com EnterpriseServer built fo SMKN 1 Kaligondang
      Server: Http Server
      Server: Httpd
      Server: Httpd/1.0
      Server: Hydra/0.1.8
      Server: IBM_HTTP_Server
      Server: IIS
      Server: IPC@CHIP
      Server: IPCamera-Webs
      Server: IPCamera-Webs/2.5.0
      Server: IPOffice/
      Server: IceWarp/9.4.2
      Server: IceWarp/12.1.1.4 x64
      Server: IdeaWebServer/0.83.292
      Server: If you want know, you can ask me
      Server: Indy/9.0.11
      Server: Intoto Http Server v1.0
      Server: InvalidPanda/1.0.0
      Server: JAWS/1.0
      Server: JAWS/1.0 Jan 21 2017
      Server: JBoss-EAP/7
      Server: JDVR/4.0
      Server: JFinal 4.5
      Server: JWS
      Server: Jetty(6.1.19)
      Server: KMS_ACCESS
      Server: Keil-EWEB/2.1
      Server: Kerio MailServer 6.5.2
      Server: Kestrel
      Server: LINUX-2.6 UPnP/1.0 MiniUPnPd/1.5
      Server: LTE Router Webs
      Server: Lanswitch - V100R003 HttpServer 1.1
      Server: Linux, HTTP/1.1, DIR-860L Ver 1.01
      Server: Linux/2.6.18 UPnP/1.0 miniupnpd/1.0
      Server: Linux/2.x UPnP/1.0 Avtech/1.0
      Server: Linux/3.4.39 UPnP/1.0 Cling/2.0
      Server: Linux/3.10.0 eHomeMediaCenter/1.0
      Server: Linux/3.10.33 UPnP/1.0 Teleal-Cling/1.0
      Server: Linux/3.10.104 eHomeMediaC
    Found 2024-12-21 by HttpPlugin
    Create report
  • Open service 194.36.90.164:5011

    2024-12-21 21:21

    HTTP/1.1 200 OK
    content-type: text/html;charset=UTF-8
    content-length: 1
    server: cisco-IOS BlueServer/4.8.6.3 GoAhead-http mini_httpd/1.21 18oct2014 openresty bks400 fasthttp webserver alphapd/2.1.8 TOS/1.12.1 web server TwistedWeb/12.1.0 Boa/0.94.14rc19 Asterisk/1.8.9 Xavante 2.2.0 embeded lwIP/1.4.0 (http://savannah.nongnu.org/projects/lwip) ATS/7.0.0 Webs MoxaHttp/1.0 openresty/1.19.9.1 4D/18.3.0 SimpleHTTPWithUpload/0.1 Python/2.7.5 CUPS/2.2 IPP/2.1 thttpd/2.29 23May2018 yawcam/0.6.0 WCY_WEBServer/1.0 Henry/1.1 CherryPy/3.1.2 WSGI Server ZK Web Server VIAWEB system/1.0.0 (http://www.viawebsystem.com.br) httpd websocket-sharp/1.0 Cowboy HTTPD Hanlong Unicron v1.0 Microsoft-HTTPAPI/2.0 TRMB/1.2 sslvpn 1.0 beegoServer:2.0.0 AvigilonGateway/1.0 Microsoft-HTTPAPI/2.0 Boa/0.94.14 openresty/1.11.2.5 TwistedWeb/14.0.0 webswing.org Lotus-Domino SRS/3.0.85(OuXuli) Resin/4.0.40 PRTG oatpp/1.2.5 Resin/3.1.8 Intel(R) Active Management Technology 9.1.30 openresty/1.13.6.2 Java Composer Server 2.1 Xfinity Broadband Router Server Microsoft-IIS/7.5 RemObjects SDK for .NET HTTP Server/5.0 BaseHTTP/0.3 Python/2.7.5 gunicorn MiniServ/1.610 CuteBi Network Tunnel, (%>w<%) openresty/1.15.8.3 Indy/10.0.52 TornadoServer/5.1 awselb/2.0 Apache/1.3.28 (Unix) mod_ssl/2.8.15 OpenSSL/0.9.8d phpiis.com SOYAL Technology WebServer 2.0 lighttpd/1.4.55 KWS-1043N-Svr gSOAP/2.7 lwIP/1.4.0 (http://savannah.nongnu.org/projects/lwip) Apache/2.4.12 (Win32) OpenSSL/1.0.1l PHP/5.6.8 Webio Embedded server v1.0 PRTG/13.1.2.1462 Jetty(9.4.9.v20180320) TOS/1.12.1 lighttpd/1.4.54 IS2 Web Server 1.36 nginx/1.0.15 success web server/1.0.0 Polycom SoundPoint IP Telephone HTTPd BlueServer/4.8.6.3 MS-MFC-321-1/1.1 BaseHTTP/0.3 Python/2.7.17 Oracle XML DB/Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production t1-httpd/1.4.43 Virata-EmWeb/R6_0_1 Resin/3.1.12 Indy/9.0.11 lighttpd/1.4.19 Jetty/5.1.10 (Windows Server 2008 R2/6.1 amd64 java/1.6.0_31 Mini web server 1.0 ZXIC corp 2005. mongo/2.0 TornadoServer/4.4.3 Niagara Web Server/1.1 wts/1.2 Nexus/3.9.0-01 (OSS) Java Composer Server 2.1 MAGI 1.0 Beaver Oracle-Application-Server-11g swoole-http-server Boa/0.94.14 TwistedWeb/13.2.0 Mongoose/6.11 Intel(R) Active Management Technology 9.1.30 xxxxxxxx-xxxxx Virata-EmWeb/R6_2_1 Nexus/3.13.0-01 (OSS) Nexus/3.0.1-01 (OSS) ZLMediaKit(git hash:b4207240,branch:master,build time:Nov  2 2021 11:36:02) HTTP Server 1.0 avtech/1.0 Coruscant Resin/3.1.8 HFS 2.4.0 RC7 gSOAP/2.8 webserver/0.0.0 mcdhttpd/1.2 E2EE WebSocket Server/0.7.0 Ruijie Server Nexus/3.0.0-03 (OSS) cisco-IOS SP-XML Web Server Boa/0.94.14rc20 SimpleHTTPWithUpload/0.1 Python/2.7.5 Docker/19.03.8 (linux) GlassFish Server Open Source Edition  4.0 nginx/1.14.2 TwistedWeb/19.7.0 ZLMediaKit-5.0(build in Apr  8 2021 03:17:35) squid/2.7.STABLE9 openresty/1.9.3.1 JAWS/1.0 Aug 26 2015 OPNsense JAWS/1.0 Aug 21 2013 Router streamserver WEB SERVER Indy/9.00.10 Kestrel Docker/19.03.9 (linux) RG/Device 10.x Jetty(6.1.11) Linux UPnP/1.0 Huawei-ATP-IGD WildFly/8 thttpd/2.29 23May2018 Keil-EWEB/2.0 Linux/2.x.x, UPnP/1.0, pvConnect UPnP SDK/1.0, Twonky UPnP SDK/1.1 CherryPy/4.0.0 yealink embed httpd RainLoop
    set-cookie: SESSID=da122263a2bd; sessionid=ff122263a2bf; webvpnLang=webvpnLang; webvpn=; webvpncontext=00000@SSLContext
    x-cache: MISS from Hello
    x-cache-lookup: MISS from Hello:8080
    x-content-powered-by: K2 v2.8.0 (by JoomlaWor
    x-content-type-options: nosniff
    x-drupal-cache: xHIT
    x-drupal-dynamic-cache: MISS
    x-generator: Drupal 8 (https://www.drupal.org)
    x-jenkins: 2.121.3
    x-jenkins-session: f72d6619
    x-xss-protection: 1; mode=block
    connection: close
    
    Found 2024-12-21 by HttpPlugin
    Create report
  • Open service 194.36.90.164:8084

    2024-12-20 00:26

    HTTP/1.1 200 OK
    content-type: text/html;charset=UTF-8
    content-length: 1
    server: cisco-IOS BlueServer/4.8.6.3 GoAhead-http mini_httpd/1.21 18oct2014 openresty bks400 fasthttp webserver alphapd/2.1.8 TOS/1.12.1 web server TwistedWeb/12.1.0 Boa/0.94.14rc19 Asterisk/1.8.9 Xavante 2.2.0 embeded lwIP/1.4.0 (http://savannah.nongnu.org/projects/lwip) ATS/7.0.0 Webs MoxaHttp/1.0 openresty/1.19.9.1 4D/18.3.0 SimpleHTTPWithUpload/0.1 Python/2.7.5 CUPS/2.2 IPP/2.1 thttpd/2.29 23May2018 yawcam/0.6.0 WCY_WEBServer/1.0 Henry/1.1 CherryPy/3.1.2 WSGI Server ZK Web Server VIAWEB system/1.0.0 (http://www.viawebsystem.com.br) httpd websocket-sharp/1.0 Cowboy HTTPD Hanlong Unicron v1.0 Microsoft-HTTPAPI/2.0 TRMB/1.2 sslvpn 1.0 beegoServer:2.0.0 AvigilonGateway/1.0 Microsoft-HTTPAPI/2.0 Boa/0.94.14 openresty/1.11.2.5 TwistedWeb/14.0.0 webswing.org Lotus-Domino SRS/3.0.85(OuXuli) Resin/4.0.40 PRTG oatpp/1.2.5 Resin/3.1.8 Intel(R) Active Management Technology 9.1.30 openresty/1.13.6.2 Java Composer Server 2.1 Xfinity Broadband Router Server Microsoft-IIS/7.5 RemObjects SDK for .NET HTTP Server/5.0 BaseHTTP/0.3 Python/2.7.5 gunicorn MiniServ/1.610 CuteBi Network Tunnel, (%>w<%) openresty/1.15.8.3 Indy/10.0.52 TornadoServer/5.1 awselb/2.0 Apache/1.3.28 (Unix) mod_ssl/2.8.15 OpenSSL/0.9.8d phpiis.com SOYAL Technology WebServer 2.0 lighttpd/1.4.55 KWS-1043N-Svr gSOAP/2.7 lwIP/1.4.0 (http://savannah.nongnu.org/projects/lwip) Apache/2.4.12 (Win32) OpenSSL/1.0.1l PHP/5.6.8 Webio Embedded server v1.0 PRTG/13.1.2.1462 Jetty(9.4.9.v20180320) TOS/1.12.1 lighttpd/1.4.54 IS2 Web Server 1.36 nginx/1.0.15 success web server/1.0.0 Polycom SoundPoint IP Telephone HTTPd BlueServer/4.8.6.3 MS-MFC-321-1/1.1 BaseHTTP/0.3 Python/2.7.17 Oracle XML DB/Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production t1-httpd/1.4.43 Virata-EmWeb/R6_0_1 Resin/3.1.12 Indy/9.0.11 lighttpd/1.4.19 Jetty/5.1.10 (Windows Server 2008 R2/6.1 amd64 java/1.6.0_31 Mini web server 1.0 ZXIC corp 2005. mongo/2.0 TornadoServer/4.4.3 Niagara Web Server/1.1 wts/1.2 Nexus/3.9.0-01 (OSS) Java Composer Server 2.1 MAGI 1.0 Beaver Oracle-Application-Server-11g swoole-http-server Boa/0.94.14 TwistedWeb/13.2.0 Mongoose/6.11 Intel(R) Active Management Technology 9.1.30 xxxxxxxx-xxxxx Virata-EmWeb/R6_2_1 Nexus/3.13.0-01 (OSS) Nexus/3.0.1-01 (OSS) ZLMediaKit(git hash:b4207240,branch:master,build time:Nov  2 2021 11:36:02) HTTP Server 1.0 avtech/1.0 Coruscant Resin/3.1.8 HFS 2.4.0 RC7 gSOAP/2.8 webserver/0.0.0 mcdhttpd/1.2 E2EE WebSocket Server/0.7.0 Ruijie Server Nexus/3.0.0-03 (OSS) cisco-IOS SP-XML Web Server Boa/0.94.14rc20 SimpleHTTPWithUpload/0.1 Python/2.7.5 Docker/19.03.8 (linux) GlassFish Server Open Source Edition  4.0 nginx/1.14.2 TwistedWeb/19.7.0 ZLMediaKit-5.0(build in Apr  8 2021 03:17:35) squid/2.7.STABLE9 openresty/1.9.3.1 JAWS/1.0 Aug 26 2015 OPNsense JAWS/1.0 Aug 21 2013 Router streamserver WEB SERVER Indy/9.00.10 Kestrel Docker/19.03.9 (linux) RG/Device 10.x Jetty(6.1.11) Linux UPnP/1.0 Huawei-ATP-IGD WildFly/8 thttpd/2.29 23May2018 Keil-EWEB/2.0 Linux/2.x.x, UPnP/1.0, pvConnect UPnP SDK/1.0, Twonky UPnP SDK/1.1 CherryPy/4.0.0 yealink embed httpd RainLoop
    set-cookie: SESSID=da122263a2bd; sessionid=ff122263a2bf; webvpnLang=webvpnLang; webvpn=; webvpncontext=00000@SSLContext
    x-cache: MISS from Hello
    x-cache-lookup: MISS from Hello:8080
    x-content-powered-by: K2 v2.8.0 (by JoomlaWor
    x-content-type-options: nosniff
    x-drupal-cache: xHIT
    x-drupal-dynamic-cache: MISS
    x-generator: Drupal 8 (https://www.drupal.org)
    x-jenkins: 2.121.3
    x-jenkins-session: f72d6619
    x-xss-protection: 1; mode=block
    connection: close
    
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 194.36.90.164:11443

    2024-12-20 00:04

    HTTP/1.1 200 OK
    content-type: text/html; charset=UTF-8
    content-length: 8
    connection: close
    
    
     /webui 
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 194.36.90.164:9219

    2024-12-19 22:15

    HTTP/1.1 200 OK
    content-type: text/html; charset=UTF-8
    transfer-encoding: chunked
    connection: close
    
    Found 2024-12-19 by HttpPlugin
    Create report
  • Open service 194.36.90.164:9565

    2024-12-17 22:41

    HTTP/1.1 200 OK
    content-type: text/html;charset=UTF-8
    content-length: 1
    server: Start HTTP-Server/1.1 Embedded HTTP Server. Web Server 1.1 darkstat/3.0.718 gunicorn/19.7.0 PRAVIS/1.0 JAWS/1.0 Apr  8 2014 K3 WCY_WEBServer/1.0 Gnway Web Server tsbox nws/1.0 Web Server/2.1.0 PeerSec-MatrixSSL/3.9.5-OPEN thttpd/2.25b 29dec2003 nginx-upupw/1.8.0 Oracle XML DB/Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production MQCache/2.1.0 Docker/1.11.1 (linux) B&R Web Server  Ver. {2-250416-25} Keil-EWEB/2.0 Prometheus Kestrel gunicorn/19.4.5 Web Hosting by Dot Enterprise Co.,Ltd (http://www.de.co.th/) ulwsd/1.0.1-20140331 Jetty(8.2.0.v20160908) ************ Jetty(winstone-2.9) router webs kangle/3.5.8.2 lighttpd HtNanoHttpd MochiWeb/1.0 (Any of you quaids got a smint?) udpxy 1.0-23.10 (prod) standard [Linux 3.18.67 x86_64] nginx/0.7.64 Embedthis-http/4.0.0 JFinal 4.9.17 DGuard Center 7.1.6.9 nhttpd/3.4.0 (yhttpd_core/1.3.2) HID-Web ZLMediaKit(git hash:b4207240,branch:master,build time:Nov  2 2021 11:36:02) dcs-lig-httpd Huawei Auth-Http Server 1.0 appnode/ccenter squid/3.1.20 MiniServ/1.610 Ruijie Server MobileSMARTS/5.2.46.14758 Microsoft-HTTPAPI/2.0 secure Apache Transmission 4D/18.3.0 Docker/19.03.9 (linux) LIVE555 Streaming Media v2020.04.24 thttpd SEPM Jetty(9.4.43.v20210629) gunicorn AirTunes/377.30.01 SinforHttpd/1.0 DWS X-Web Tableau CloudFront Sanoil Bayi Portal MiniServ/1.941 RomPager/4.51 UPnP/1.0 DasanNetwork Solution GoOryx/1.0.5 websocket-sharp/1.0 SimpleHTTP/0.6 Python/3.5.3 Unkown airCube HFS 2.2e WebServer(ipcamera) TwistedWeb/17.9.0 Hanlong Unicron v1.0 nPerf/2.2.0 2019-04-02 http server 1.0 Docker/20.10.2 (linux) Tengine/2.3.3 ZK Web Server webfs/1.21 Resin/3.0.19 SY8045 BaseHTTP/0.3 Python/2.7.5 Boa/0.94.14rc19 mORMot (Windows) Microsoft-HTTPAPI/2.0 SRS/5.0.12(Leo) Jetty(6.1.26.hwx) SOYAL Technology WebServer 2.0 TOS/1.12.1 Nexus/3.13.0-01 (OSS) Tieline phpiis.com WebServer HP-iLO-Server/1.30 TRMB/1.2 Output-Streamer/0.2 K2P Cougar/9.01.01.3841 httpd Embedthis-Appweb/3.3.1 beegoServer:1.11.1 Cloud Jetty(7.6.13.v20130916) Wildfly 8 openresty/1.15.8.2 MiniServ/1.530 VDNServer/2017 cPanel squid/3.5.25 squid/3.5.12 adong Linux, HTTP/1.1, DIR-850L Ver 1.13 WebServer/1.0 UPnP/1.0 openresty/1.19.3.1 2.2.23 Mini web server 1.0 Skyworth corp 2017. AvigilonGateway/1.0 Microsoft-HTTPAPI/2.0 NVR EXT SERVER webswing.org thttpd/2.25b-lxc 29dec2003 Seeyon-Server/1.0 fibjs CVM d45964bf-d48c-477c-8655-56bb369797b6 Http Server nPerf/2.2.6 2021-05-08 Safedog WAF K2 CherryPy/10.2.2 SY8033 Nexus/3.19.1-01 (OSS) Clayster.Library.Internet/1.1 app07 SRS/4.0.198(Leo) Microsoft-IIS/7.0 RemObjects SDK for .NET HTTP Server/5.0 VA Web Server Jetty/5.1.10 (Windows Server 2008/6.1 amd64 java/1.6.0_07 GoAhead-http Xavante 2.2.0 embeded KWS-1043N-Svr Web Server/2.1.0 PeerSec-MatrixSSL/3.1.3-OPEN openresty/1.17.8.2 iSpy lighttpd/1.4.32 Easy-html TornadoServer/6.0.3 uhttpd/1.0.0 openresty/1.11.2.1 axhttpd/1.4.0 WebSockify Python/2.7.12 PDR-M800/1.0 istio-envoy BlueServer/5.1.0.4 Jetty(6.1.14) SDK 4.2.0.0 UPnP/1.0 MiniUPnPd/1.6 Microsoft-IIS/5.1 Nexus/3.0.1-01 (OSS) avtech/1.0 ZLMediaKit-5.0(build in Apr  8 2021 03:17:35) Snorkel/02.03.00.04 Asterisk/1.8.9
    set-cookie: SESSID=da122263a2bd; sessionid=ff122263a2bf; webvpnLang=webvpnLang; webvpn=; webvpncontext=00000@SSLContext
    x-cache: MISS from Hello
    x-cache-lookup: MISS from Hello:8080
    x-content-powered-by: K2 v2.8.0 (by JoomlaWor
    x-content-type-options: nosniff
    x-drupal-cache: xHIT
    x-drupal-dynamic-cache: MISS
    x-generator: Drupal 8 (https://www.drupal.org)
    x-jenkins: 2.121.3
    x-jenkins-session: f72d6619
    x-xss-protection: 1; mode=block
    connection: close
    
    Found 2024-12-17 by HttpPlugin
    Create report
Domain summary
No record