Analiza nagłówka HTTP Server z sieci 1.0.0.0/8 – 5.0.0.0/8
Napisał: Patryk Krawaczyński
05/05/2015 w Bezpieczeństwo Brak komentarzy. (artykuł nr 477, ilość słów: 31836)
Z
a pomocą HTTPsrvREAPER (uruchomionego w pięciu wątkach) oraz pracującego dzień i noc Raspberry Pi udało się przeskanować przeanalizować w czasie od sierpnia 2014 r. do kwietnia 2015 r. sieci z zakresu: 1.0.0.0/8 – 5.0.0.0/8. Razem powstało 1.312.618 wpisów zawierających informacje o używanej (bądź nie – Undefined
) wersji oprogramowania serwera httpd przez dany adres IP.
Wszystkie logi poszczególnych podsieci zostały zebrane w jeden plik from1to5.log.jsons
i zaimportowane do silnika bazy danych rethinkdb:
darkstar:~$ rethinkdb import -f from1to5.log.jsons --table httpservers.from1to5 --force 1312618 rows imported in 1 table Done (230 seconds)
Następnie prostym skryptem korzystającym z API tej bazy zostały policzone wszystkie unikalne wystąpienia poszczególnych nagłówków “Server” i wrzucone do osobnej tabeli stats:
#!/usr/bin/env python # -*- coding: utf-8 -*- import rethinkdb as r import json net = r.connect(db='httpservers') servers = r.table('5th').pluck('Server').distinct().run(net) # clean = r.table("stats").delete().run(net) # print len(servers) for s in servers: srv = unicode(s['Server']) cnt = r.table('5th').filter({"Server": srv}).count().run(net) print "Server: " + srv + " in count " + str(cnt) r.table('stats').insert({ "Server": srv, "Number": cnt }).run(net)
Według zapytania .distinct w bazie znalazło się 7331 unikalnych nagłówków HTTP, które wystarczyło posortować po największej liczbie wystąpień danego serwera:
#!/usr/bin/env python # -*- coding: utf-8 -*- import rethinkdb as r import json net = r.connect(db='httpservers') stats = r.table('stats').order_by(index=r.desc('Number')).run(net)
a wyniki przedstawić w formie tabeli:
Nazwa serwera: | Liczba wystąpień: |
---|---|
AkamaiGHost | 376886 |
Undefined | 213283 |
RomPager/4.07 UPnP/1.0 | 135836 |
Apache | 117468 |
mini_httpd/1.19 19dec2003 | 53802 |
micro_httpd | 29117 |
nginx/1.0.11 | 28401 |
Microsoft-IIS/7.5 | 21420 |
Apache/2.2.15 (CentOS) | 15874 |
nginx | 15423 |
GoAhead-Webs | 13427 |
Apache/2.2.22 (Debian) | 13244 |
lighttpd/1.4.31 | 11861 |
Apache/2.2.22 (Ubuntu) | 9700 |
httpd | 9297 |
Apache-Coyote/1.1 | 9135 |
Apache/2.2.16 (Debian) | 7648 |
Boa/0.94.14rc21 | 6616 |
Boa/0.94.13 | 6516 |
Microsoft-IIS/6.0 | 6408 |
WebProxy/6.0 | 5969 |
Cross Web Server | 5892 |
uc-httpd 1.0.0 | 5735 |
Apache/2.2.3 (CentOS) | 5702 |
Virtual Web 0.9 | 5508 |
squid/3.1.10 | 5416 |
lighttpd/1.4.28 | 5374 |
RomPager/4.51 UPnP/1.0 | 5335 |
Microsoft-HTTPAPI/2.0 | 5130 |
Apache/2.4.7 (Ubuntu) | 4491 |
gws | 4356 |
Mini web server 1.0 ZTE corp 2005. | 4251 |
nginx/1.2.1 | 4208 |
Apache/2 | 4134 |
nginx/1.4.6 (Ubuntu) | 4125 |
Microsoft-IIS/8.5 | 4008 |
cisco-IOS | 3689 |
Router Webserver | 3533 |
DVRDVS-Webs | 2881 |
thttpd/2.25b 29dec2003 | 2464 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 | 2373 |
Microsoft-IIS/7.0 | 2331 |
Footprint 4.8/FPMCP | 2278 |
Microsoft-IIS/8.0 | 2255 |
nginx/1.0.15 | 2095 |
nginx/1.6.2 | 2007 |
nginx/0.7.67 | 1912 |
alphapd | 1838 |
LiteSpeed | 1838 |
nginx/1.1.19 | 1835 |
Netwave IP Camera | 1778 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 | 1766 |
nginx/1.4.7 | 1731 |
SonicWALL | 1722 |
uc-httpd/1.0.0 | 1654 |
nginx/1.6.0 | 1588 |
lighttpd/1.4.26 | 1565 |
lighttpd/1.4.35 | 1405 |
Hikvision-Webs | 1401 |
Apache/2.2.24 (Amazon) | 1338 |
Apache/2.4.6 (Ubuntu) | 1249 |
Boa/0.94.14rc20 | 1223 |
DNVRS-Webs | 1202 |
Apache/2.2.14 (Ubuntu) | 1198 |
Apache/2.2.15 | 1082 |
Web Server | 1025 |
lighttpd/1.4.30 | 1000 |
Boa/0.93.15 | 964 |
Apache/1.3.42 (Unix) mod_scgi/1.14 mod_fastcgi/2.4.6 | 962 |
Linux/2.x UPnP/1.0 Avtech/1.0 | 949 |
squid | 945 |
nginx/1.6.1 | 901 |
Apache/2.2.22 | 840 |
lighttpd/1.4.32-devel-Zoro_20140305_V10b | 800 |
Microsoft-IIS/5.1 | 729 |
nginx/1.4.4 | 706 |
App-webs/ | 631 |
lighttpd/1.4.23 | 628 |
dcs-lig-httpd | 620 |
Realtron WebServer 1.1 | 614 |
nginx/1.4.1 | 608 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 583 |
Apache/2.2.15 (Red Hat) | 554 |
WebServer | 538 |
GeoHttpServer | 537 |
Swift1.0 | 530 |
ATS | 514 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8o | 476 |
Virata-EmWeb/R6_0_1 | 473 |
Router | 457 |
Apache/2.2.23 (Amazon) | 437 |
Lotus-Domino | 436 |
nginx/1.2.9 | 435 |
Httpd | 425 |
Apache/2.4.10 (Ubuntu) | 424 |
cloudflare-nginx | 421 |
lighttpd/1.4.28-devel-7497 | 398 |
lighttpd/1.4.20 | 387 |
nginx/1.4.2 | 379 |
thttpd/2.25b-lxc 29dec2003 | 352 |
lighttpd/1.4.32 | 351 |
Apache/2.2.8 (Win32) PHP/5.2.6 | 349 |
Mbedthis-AppWeb/2.0.4 | 348 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 | 337 |
http server 1.0 | 335 |
Httpd/1.0 | 327 |
ADTRAN, Inc. | 315 |
nginx/0.7.65 | 314 |
nginx/1.2.4 | 312 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 | 309 |
nginx admin | 309 |
Microsoft-IIS/5.0 | 304 |
Ag [47] | 299 |
lighttpd/1.4.28-devel-4979 | 296 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 292 |
Apache/2.2.3 (Red Hat) | 285 |
antid | 278 |
BWS/1.0 | 278 |
nginx/1.2.3 | 272 |
TwistedWeb/12.0.0 | 272 |
squid/2.6.STABLE21 | 270 |
WebServerX | 270 |
nginx/1.2.6 | 261 |
Unknown/0.0 UPnP/1.0 Conexant-EmWeb/R6_1_0 | 258 |
Webs | 258 |
Apache/2.4.6 (Ubuntu) mod_mono/2.11 OpenSSL/1.0.1e mod_wsgi/3.4 Python/2.7.5+ | 255 |
WCY_WEBServer/2.0 | 253 |
nginx/0.8.54 | 251 |
Apache/2.2.20 (Ubuntu) | 249 |
uhttpd/1.0.0 | 244 |
ReeCam IP Camera | 240 |
AR | 236 |
nginx/1.2.8 | 218 |
FlashCom/3.5.7 | 215 |
Mathopd/1.5p6 | 208 |
Apache/2.4.10 (Debian) | 207 |
Apache/2.2.26 (CentOS) | 202 |
Ubicom/1.1 | 202 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8o DAV/2 PHP/5.2.11 with Suhosin-Patch mod_wsgi/3.3 Python/2.7.1+ | 202 |
WindWeb/2.0 | 198 |
Apache/2.2.19 (Win32) PHP/5.2.9-1 | 195 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 | 193 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8o mod_wsgi/2.4 Python/2.6.2 | 189 |
TwistedWeb/8.2.0 | 189 |
lighttpd | 187 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 186 |
Apache/2.4.6 (CentOS) PHP/5.4.16 | 179 |
WCY_WEBServer/1.0 | 178 |
teldat/1.0 (BOSS) | 178 |
Sunny WebBox | 178 |
lighttpd/1.4.29 | 177 |
nginx/1.2.7 | 177 |
Apache/2.2.16 | 174 |
IIS | 171 |
Apache/2.2.27 (CentOS) | 171 |
TP-LINK Router | 171 |
Apache/2.2.23 (Unix) | 170 |
Apache/2.4.6 (Debian) | 169 |
nginx/1.4.3 | 169 |
Eudemon Server 1.0 | 167 |
nginx/1.4.5 | 163 |
Apache/2.2.22 (Linux/SUSE) | 161 |
lighttpd/1.4.28-devel-4975 | 159 |
lighttpd/1.4.28-devel-4984M | 156 |
lighttpd/1.4.28-devel-4998M | 155 |
lighttpd/1.4.28 atos/5.6.23 (server0) | 154 |
GoAhead-Webs/2.5.0 | 153 |
HTTPServer | 150 |
AV-TECH AV787 Video Web Server | 150 |
HTTP Server | 150 |
lighttpd/1.4.33 | 150 |
Switch | 149 |
lighttpd/1.4.32-devel-zoro_20140123_V10a_final | 149 |
Apache/2.2.15 (CentOS) DAV/2 | 148 |
Footprint 4.10/FPMCP | 147 |
ALPHA-WebServer/1.0 | 145 |
MS-MFC-HttpSvr/1.0 | 145 |
MS-SDK-HttpServer/1.0 | 144 |
IBM_HTTP_Server | 144 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 143 |
nginx/1.7.7 | 142 |
Mbedthis-Appweb/2.4.0 | 137 |
USI/1.0 | 135 |
Apache/2.2.23 (CentOS) | 133 |
HTTP Server 1.0 | 131 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 | 131 |
Apache/2.4.7 | 125 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.11 | 124 |
IPC@CHIP | 123 |
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 | 123 |
WEB SERVER | 121 |
Rapid Logic/1.1 | 121 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 119 |
fec/1.0 (Funkwerk BOSS) | 118 |
Embedthis-Appweb/3.2.3 | 116 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 114 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.3.28 | 114 |
nginx/1.4.1 (Ubuntu) | 113 |
lighttpd/1.4.25-devel-fb150ff | 110 |
PDR-M800/1.0 | 110 |
Apache/2.2.25 (Win32) | 109 |
Varnish | 108 |
Rogatkin’s JWS based on Acme.Serve/$Revision: 1.39 $ | 107 |
Allegro-Software-RomPager/4.01 | 107 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16 | 106 |
Apache/2.2.17 (Ubuntu) | 103 |
Microsoft-WinCE/6.00 | 101 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.5.15 | 101 |
Apache/2.4.6 (Linux/SUSE) | 101 |
build-in http server | 100 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3 | 99 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze19 with Suhosin-Patch | 98 |
lwIP/1.4.0 (http://savannah.nongnu.org/projects/lwip) | 98 |
Virata-EmWeb/R6_2_1 | 96 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 | 96 |
wildix-http-server | 96 |
Indy/8.0.25 | 95 |
Apache/1.3.33 (Debian GNU/Linux) mod_gzip/1.3.26.1a mod_python/2.7.10 Python/2.3.4 | 95 |
nginx/1.7.4 | 95 |
MiCS 9.0.0.3 | 94 |
Reblaze Secure Web Gateway | 94 |
lighttpd/1.4.19 | 94 |
nginx/1.2.2 | 92 |
nginx/1.2.0 | 91 |
Apache/2.2.9 (Debian) mod_python/3.3.1 Python/2.5.2 | 90 |
MSOS/2.0 mawebserver/1.1 | 90 |
Apache/2.2.22 (Unix) | 90 |
Apache/2.2 | 89 |
Sig/3.00 | 89 |
Apache/2.4.9 (Win64) PHP/5.5.12 | 88 |
nginx/1.5.7 | 87 |
Boa/0.94.14rc19 | 86 |
nginx/1.6.2 (Ubuntu) | 86 |
lighttpd/1.4.28-devel-9051 | 86 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips Phusion_Passenger/4.0.10 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 85 |
JDVR/4.0 | 83 |
Hydra/0.1.8 | 83 |
nekil | 82 |
Maipu-Webs | 81 |
nginx/1.7.6 | 80 |
nginx/1.0.5 | 80 |
Apache/2.2.22 (CentOS) | 80 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_bwlimited/1.4 | 79 |
FUHO-DVR | 79 |
Apache/2.2.22 (@RELEASE@) | 79 |
Jetty/5.1.1 (Linux/2.6.18-128.7.1.el5 amd64 java/1.7.0_21 | 78 |
AcIDSoftWebServer/0.1b | 78 |
Apache/2.2.29 (CentOS) | 76 |
gwiseguy/2.0 | 76 |
Apache Phusion_Passenger/4.0.10 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 76 |
lighttpd/1.4.34 | 75 |
Apache/2.2.6 (Win32) DAV/2 mod_ssl/2.2.6 OpenSSL/0.9.8e mod_autoindex_color PHP/5.2.4 | 75 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1 | 75 |
thttpd/2.04 10aug98 | 74 |
Z-World Rabbit | 74 |
Apache/2.2.0 (Fedora) | 74 |
WindRiver-WebServer/4.7 | 73 |
– Web acceleration by http://www.unixy.net/varnish | 73 |
Keil-EWEB/2.1 | 73 |
Apache/2.2.22 (Win32) | 73 |
Nginx | 73 |
WindWeb/1.0 | 72 |
Vitesse Web Server | 71 |
Cambium HTTP Server | 70 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 | 70 |
Apache/2.2.16 (Ubuntu) | 70 |
Apache/2.2.3 (ClearOS) | 69 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 68 |
GSCDN/G-Platform/1.1.7 (Unix) DAV/2 | 68 |
Apache/2.2.23 (Fedora) | 68 |
Apache/1.3.31 (Unix) | 67 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 67 |
nginx/1.7.0 | 67 |
JAWS/1.0 Nov 19 2013 | 66 |
Apache/2.2.8 (Win32) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8g mod_autoindex_color PHP/5.2.5 | 66 |
LANCOM | 66 |
access to tenda | 66 |
Apache/2.4.9 (Ubuntu) | 65 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1e PHP/5.5.9 | 65 |
Apache/2.2.25-8-beget (Unix) | 65 |
Nucleus/4.3 UPnP/1.0 Virata-EmWeb/R6_2_0 | 64 |
Apache/2.2.22 (Fedora) | 64 |
iDVRhttpSvr | 64 |
nginx/1.2.5 | 63 |
boss/1.0 (BOSS) | 63 |
nginx/0.6.32 | 63 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8g DAV/2 PHP/5.2.11 with Suhosin-Patch | 63 |
Apache/2.2.29 (Unix) | 62 |
eWON | 62 |
nginx/1.4.6 | 62 |
TwistedWeb/13.2.0 | 62 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips | 61 |
JAWS/1.0 Aug 21 2013 | 61 |
nginx/0.8.55 | 61 |
ADH-Web | 59 |
EPSON_Linux UPnP/1.0 Epson UPnP SDK/1.0 | 59 |
nginx centminmod | 59 |
ECAcc (arn/46B7) | 59 |
Apache/2.2.4 (Win32) | 59 |
SinforHttpd/1.0 | 59 |
MiniWeb | 58 |
Web-Server/3.0 | 58 |
DnionOS/1.2.1.3 | 57 |
Apache/1.3.41 (Unix) PHP/5.2.9 | 57 |
Apache/2.2.9 (Fedora) | 57 |
IPWEBS/1.4.0 | 56 |
Apache/2.2.12 (Linux/SUSE) | 56 |
ECAcc (vie/4405) | 56 |
Rumpus | 55 |
This is webserver | 55 |
lighttpd/1.4.13 | 55 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips PHP/5.3.29 Phusion_Passenger/4.0.45 | 54 |
Apache/2.2.17 (Win32) PHP/5.3.5 | 54 |
/ | 54 |
Microsoft-HTTPAPI/1.0 | 54 |
ver2.4 rev0 | 54 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 54 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9 | 53 |
nginx/1.0.14 | 53 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 53 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4 | 53 |
Embedded HTTP Server. | 53 |
Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 52 |
Kerio Control Embedded Web Server | 52 |
eCos Embedded Web Server | 52 |
lighttpd/1.4.23-devel-161999 | 52 |
httpd/1.0 | 52 |
Apache/2.4.6 (Unix) OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 52 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 51 |
Interlogix-Webs | 51 |
debut/1.20 | 51 |
FP5.6.0.14.2 | 51 |
eHTTP v2.0 | 51 |
Apache/2.4.6 (CentOS) | 51 |
GoAhead-Webs/2.5.0 PeerSec-MatrixSSL/3.1.3-OPEN | 51 |
lighttpd/1.4.28-devel-6584 | 51 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 mod_perl/2.0.6 Perl/v5.10.1 | 50 |
nginx/1.0.9 | 50 |
Apache/2.2.18 (Unix) mod_ssl/2.2.18 OpenSSL/1.0.0-fips DAV/2 PHP/5.3.4 | 49 |
Microsoft-WinCE/5.0 | 49 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch | 49 |
nginx/1.5.12 | 49 |
Apache/2.2.21 (Linux/SUSE) | 49 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 48 |
Sig/2.01 | 48 |
Apache/2.2.17 (Fedora) | 48 |
Apache/0.6.5 | 48 |
httpserver | 47 |
YAMAHA-RT | 47 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9 | 47 |
nginx/1.0.4 | 47 |
Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.9 | 47 |
nginx/1.4.0 | 46 |
CAMEO-httpd | 46 |
Apache/2.4.10 | 46 |
Apache/2.0.52 (CentOS) | 46 |
MA5600 | 46 |
Apache/1.3.41 (Unix) PHP/5.2.17 mod_ssl/2.8.31 OpenSSL/0.9.8e-fips-rhel5 | 46 |
gSOAP/2.7 | 46 |
TibetSystem Server 2.0 | 45 |
EBox | 45 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 PHP/5.4.31 | 45 |
OwnServer1.0 | 45 |
ZK Web Server | 45 |
Apache/2.4.9 (Debian) | 45 |
webfs/1.21 | 45 |
WebBox-20 | 44 |
WebServer(IPCamera_Logo) | 44 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 | 44 |
lighttpd/1.4.28 atos/5.6.13.2 (server0) | 44 |
JAWS/1.0 May 13 2013 | 44 |
Apache/2.2.15 (Scientific Linux) | 43 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 43 |
NWS_X2_MID | 43 |
lighttpd/1.4.25-devel-f93da54 | 43 |
Apache/2.4.9 (Win32) PHP/5.5.12 | 42 |
Apache mod_fcgid/2.3.7 mod_auth_pgsql/2.0.3 | 42 |
Apache/2.4.10-0-beget (Unix) | 42 |
Apache/2.2.22 (EL) | 42 |
Apache/2.4.9-0-beget (Unix) | 42 |
squid/3.1.19 | 42 |
Apache/2.2.10 (Linux/SUSE) | 41 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 PHP/5.4.31 | 41 |
Apache/2.2.4 (Win32) PHP/5.2.3 | 40 |
JAWS/1.0 Feb 19 2014 | 40 |
GoAhead-Webs/2.5.0 PeerSec-MatrixSSL/3.4.2-OPEN | 40 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8o PHP/5.4.12 mod_wsgi/2.4 Python/2.6.2 | 40 |
nginx/1.7.5 | 40 |
APN HTTPD V1.4 | 40 |
Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 40 |
Cougar/9.6.7600.16564 | 39 |
lighttpd/1.4.28 atos/5.6.18 (server0) | 39 |
NetPort Software 1.1 | 39 |
Apache/2.4.4 (Win32) OpenSSL/0.9.8y PHP/5.4.19 | 39 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8g DAV/2 | 39 |
Mbedthis-Appweb/2.4.2 | 39 |
lighttpd/1.4.18 | 38 |
openresty | 38 |
thttpd/2.23beta1 26may2002 | 38 |
Boa/0.94.11 | 38 |
WANFlex HTTP Daemon v2.0 | 38 |
Apache/2.2.25 (Win32) PHP/5.4.23 | 38 |
nginx/1.2.6 (Ubuntu) | 38 |
Apache/2.2.9 (Debian) | 37 |
Apache/2.4.4 (Win64) PHP/5.4.12 | 37 |
Start HTTP-Server/1.1 | 37 |
Apache/2.2.3 (Linux/SUSE) | 37 |
Allegro-Software-RomPager/4.61 | 37 |
squid/3.0.STABLE25 | 37 |
Apache/2.2.9 (Win32) PHP/5.2.6 | 37 |
Apache/2.2.24 (Unix) DAV/2 mod_ssl/2.2.24 OpenSSL/0.9.8y | 37 |
wg_httpd/1.0(based Boa/0.92q) | 36 |
nginx/1.5.8 | 36 |
Apache/2.2.16 (Unix) | 36 |
nginx/1.7.3 | 36 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1 | 36 |
thttpd | 36 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.32 | 36 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_perl/2.0.8 Perl/v5.10.1 | 36 |
Apache/2.2.26 (Unix) DAV/2 mod_ssl/2.2.26 OpenSSL/0.9.8y | 35 |
Apache/2.2.12 (Ubuntu) | 35 |
lighttpd/1.4.28 atos/5.6.13 (server0) | 35 |
webserver | 35 |
nginx/1.7.1 | 35 |
Apache/2.2.18 (CentOS) | 35 |
nginx/1.5.13 | 35 |
Apache/2.4.6 | 35 |
IocpServer | 34 |
Apache/2.2.26 (Unix) DAV/2 mod_ssl/2.2.26 OpenSSL/0.9.8za | 34 |
Apache/2.2.26 (Unix) | 34 |
DVSS-HttpServer/1.0 | 34 |
IPCamera-Web | 34 |
Apache/2.0.52 (Red Hat) | 34 |
Apache/2.2.16 (Debian) PHP/5.3.28-1~dotdeb.0 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 34 |
KS_HTTP/1.0 | 34 |
Apache/2.4.6 (Win32) | 33 |
Apache/2.0.46 (Red Hat) | 33 |
Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_jk mod_ssl/2.8.12 OpenSSL/0.9.6m | 33 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1b DAV/2 PHP/5.3.5 | 33 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.0 | 33 |
Jetty(9.1.5.v20140505) | 33 |
MoxaHttp/2.2 | 32 |
nginx/1.5.1 | 32 |
Allegro-Software-RomPager/3.10 | 32 |
nginx/1.7.9 | 31 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.18 mod_perl/2.0.6 Perl/v5.8.8 | 31 |
JAWS/1.0 Sep 22 2013 | 31 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8g PHP/5.2.11 with Suhosin-Patch | 31 |
mcdhttpd/1.0 | 31 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 31 |
Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 | 31 |
Apache/2.4.6 (Debian) PHP/5.5.8-2 | 31 |
ise GmbH HTTP-Server v2.0 | 30 |
Apache/2.2.15 (Fedora) | 30 |
Apache/2.2.15 (Oracle) | 30 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny16 with Suhosin-Patch | 30 |
Apache 1.3.29 | 30 |
TinyWeb/1.93 | 29 |
Apache/1.3.33 (Win32) | 29 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_wsgi/3.5 Python/2.7.1 | 29 |
JAWS/1.0 Jun 25 2013 | 29 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 | 29 |
Apache/2.2.25 (CentOS) | 29 |
Web Server/2.1.0 | 29 |
Gemtek/0.899 | 29 |
·ÓÉÆ÷WEBÅäÖÃϵͳ | 29 |
Hiawatha v5.7 | 29 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.27 mod_ssl/2.2.22 OpenSSL/1.0.1h | 29 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_fcgid/2.3.6 | 28 |
Apache/2.2.23 (Unix) DAV/2 mod_jk/1.2.28 | 28 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1h PHP/5.4.31 | 28 |
ECS (vie/F3AB) | 28 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips | 28 |
Apache/2.2.22 (Win32) PHP/5.3.13 | 28 |
JAWS/1.0 Jun 13 2013 | 28 |
KM-MFP-http/V0.0.1 | 28 |
Resin/2.1.16 | 28 |
Siemens Switzerland Ltd. | 28 |
JAWS/1.0 May 26 2014 | 28 |
Apache/2.2.14 | 28 |
Apache/2.2.11 (Win32) PHP/5.3.0 | 27 |
Apache/2.4.9 (Win32) OpenSSL/0.9.8y PHP/5.4.27 | 27 |
InterNiche Technologies WebServer 2.0 | 27 |
FC | 27 |
Apache/2.2.21 | 27 |
diycdn.com | 27 |
Apache/2.2.22 (Win64) PHP/5.3.13 | 27 |
Apache/2.4.9 (Win32) OpenSSL/0.9.8y PHP/5.3.28 | 27 |
Apache/2.2.17 (Linux/SUSE) | 27 |
lighttpd/1.4.22 | 27 |
nginx/1.7.2 | 27 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.5.19 | 27 |
Tengine | 27 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 PHP/5.4.31 SVN/1.6.5 | 26 |
nginx/1.5.6 | 26 |
Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 | 26 |
Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7 | 26 |
Sucuri/Cloudproxy | 26 |
IPCamera-Webs | 26 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1e PHP/5.5.6 | 26 |
Allegro-Software-RomPager/4.06 | 26 |
Apache/2.4.4 (Win32) PHP/5.4.16 | 26 |
HFS 2.3d | 25 |
sky_router | 25 |
nginx/1.5.10 | 25 |
lighttpd/1.4.28-devel-7273 | 25 |
Linux, HTTP/1.1, DIR-600 Ver 2.10 | 25 |
uClinux-httpd 0.2.2 | 25 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 | 25 |
nginx/1.5.2 | 25 |
AVT1100 | 25 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 25 |
Apache/2.2.8 (Win32) | 25 |
Linux, HTTP/1.1, DIR-600 Ver 2.12 | 25 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9 | 24 |
Jetty(6.1.x) | 24 |
Oracle HTTP Server Powered by Apache/1.3.22 (Win32) mod_plsql/3.0.9.8.3b mod_ssl/2.8.5 OpenSSL/0.9.6b mod_fastcgi/2.2.12 mod_oprocmgr/1.0 mod_perl/1.25 | 24 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.24 mod_ssl/2.2.26 OpenSSL/0.9.8y | 24 |
r00tProxy | 24 |
nginx/1.0.12 | 24 |
SHS | 24 |
Apache/2.4.7 (Win32) OpenSSL/0.9.8y PHP/5.4.22 | 24 |
VB | 24 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_fcgid/2.3.6 | 24 |
Apache/2.2.22 (Unix) PHP/5.3.15 | 23 |
Web/2.0 | 23 |
Apache/1.3.42 (Unix) mod_auth_pam/1.1.1 DAV/1.0.3 mod_ssl/2.8.31 OpenSSL/0.9.8g | 23 |
HTTPD | 23 |
GlassFish Server Open Source Edition 3.1.2.2 | 23 |
Werkzeug/0.9.4 Python/2.7.6 | 23 |
Cougar/9.5.6001.18223 | 23 |
Apache/2.2.14 (Unix) mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.8.7 | 23 |
nginx/1.0.10 | 23 |
ECS (vie/F3A9) | 23 |
ECS (vie/44B6) | 23 |
lighttpd/1.4.28-devel-8306 | 23 |
mhttpd v1.1 | 23 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e | 22 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 SVN/1.6.5 PHP/5.4.31 | 22 |
Apache/2.2.16 (Unix) PHP/5.3.3 | 22 |
Transmission | 22 |
Kerio Connect 8.3.2 | 22 |
squid/2.7.STABLE9 | 22 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 22 |
Boa/0.94.14rc19-pek | 22 |
nginx/1.0.6 | 22 |
Jetty(8.y.z-SNAPSHOT) | 22 |
Apache mod_bwlimited/1.4 | 22 |
Allegro-Software-RomPager/5.20 | 22 |
IP_SHARER WEB 1.0 | 22 |
Mikrotik HttpProxy | 22 |
Mbedthis-AppWeb/2.2.2 | 21 |
HFS 2.3 | 21 |
Apache/2.2.22 (Win32) PHP/5.2.17 | 21 |
Apache/1.3.41 (Unix) PHP/5.0.3 | 21 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips DAV/2 mod_bwlimited/1.4 | 21 |
WYM/1.0 | 21 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/1.0.0d mod_jk/1.2.28 | 21 |
JAWS/1.0 Oct 8 2013 | 21 |
Apache/2.2.26 (Unix) DAV/2 | 21 |
ECD (arn/46D9) | 21 |
Henry/1.1 | 21 |
Jetty(7.6.12.v20130726) | 21 |
Allegro-Software-RomPager/3.03 | 21 |
Apache/2.2.4 (Win32) PHP/5.2.4 | 21 |
JAWS/1.0 May 31 2013 | 21 |
thttpd/2.24 26oct2003 | 21 |
JAWS/1.0 Jul 11 2013 | 21 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.15 | 21 |
TAS-Tech IPCam | 21 |
HP-ChaiSOE/1.0 | 20 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8o | 20 |
lighttpd/1.4.28 atos/5.6.16 (server0) | 20 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 | 20 |
IQ3 | 20 |
FlashCom/3.5.5 | 20 |
gSOAP/2.8 | 20 |
AvigilonGateway/1.0 Microsoft-HTTPAPI/2.0 | 20 |
Jetty(7.0.2-SNAPSHOT) | 20 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_qos/10.10 | 20 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.1e-fips | 20 |
nginx/1.2.2 + Phusion Passenger 3.0.14 (mod_rails/mod_rack) | 20 |
AOLserver/4.5.1 | 20 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.4.16 | 20 |
JAWS/1.0 Jul 9 2013 | 20 |
Apache/1.3.41 (Unix) | 20 |
Apache/2.2.17 (Win32) | 20 |
Level-3 Origin Storage 1.6.2 | 20 |
mini_httpd | 20 |
Apache/2.2.25 (FreeBSD) mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 | 20 |
Allegro-Software-RomPager/3.12 | 19 |
thin 1.3.1 codename Triple Espresso | 19 |
Apache/2.2.21 (Unix) DAV/2 | 19 |
LocalAccess | 19 |
Apache/2.2.21 (Unix) | 19 |
Apache/2.0.65 (Win32) | 19 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.3.26 mod_ssl/2.2.24 OpenSSL/0.9.8y | 19 |
ettcl | 19 |
Apache/1.3.41 (Unix) PHP/4.4.9 | 19 |
Apache/1.3.23 (Unix) PHP/4.4.9 | 19 |
Apache/2.2.21 (Win32) PHP/5.3.8 | 19 |
Apache/2.0.64 (Win32) | 19 |
Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 | 19 |
Bomgar | 19 |
Apache/2.4.9 (Unix) | 19 |
lighttpd/1.4.28-devel-12793 | 19 |
Apache/2.2.8 (Win32) PHP/6.0.0-dev | 19 |
SolusVM | 19 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.30 | 19 |
Thy/0.9.4 GnuTLS/1.0.16 zlib/1.2.1.2 | 18 |
Jetty/5.1.1 (Linux/2.6.18-128.el5 amd64 java/1.7.0_21 | 18 |
lighttpd/1.4.32-devel-12165M | 18 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 18 |
hlhttpd/1.1 | 18 |
WebMARA | 18 |
thttpd/2.25b PHP/20030920 | 18 |
squid/3.3.4 | 18 |
CenteHTTPd/1.1 | 18 |
Oracle-Application-Server-11g | 18 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.3.29 | 18 |
Apache/2.4.10 (Win32) PHP/5.3.28 | 18 |
Apache/2.2.3 | 18 |
Network Camera | 18 |
Apache/2.2.21 (Win32) | 18 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8o DAV/2 | 18 |
Apache/2.4.4 (Win32) OpenSSL/0.9.8y PHP/5.4.16 | 18 |
Kerio Connect 8.3.1 | 18 |
Apache/2.4.12 (Ubuntu) | 18 |
nginx/0.8.53 | 18 |
lighttpd/1.4.28-devel-9087 | 18 |
nginx/1.7.10 | 18 |
siyou server | 18 |
ECS (arn/45A2) | 18 |
Apache/2.2.22 (Win32) PHP/5.4.3 | 18 |
Sparkred/1.0 | 18 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.27 mod_ssl/2.2.22 OpenSSL/1.0.1j | 17 |
Cubitech V.1.0.0 | 17 |
Boa/0.92o | 17 |
lighttpd/1.4.28 atos/5.6.24 (server0) | 17 |
Axigen-Webmail | 17 |
Apache/2.2.19 (Win32) | 17 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.30 mod_ssl/2.2.26 OpenSSL/0.9.8za | 17 |
Apache/2.2.9 (Debian) DAV/2 mod_fcgid/2.3.6 Phusion_Passenger/2.2.11 mod_ssl/2.2.9 OpenSSL/0.9.8o | 17 |
Jetty/5.1.x (Linux/2.6.33.5-iR4-1.0.4.3 arm java/1.6.0_21 | 17 |
Apache/2.4.10 (Unix) | 17 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.34 | 17 |
Apache/2.2.2 (Unix) PHP/5.2.3 | 17 |
debut/1.08 | 17 |
TAC/Xenta911 1.20 | 17 |
Linux, HTTP/1.1, DIR-850L Ver 1.10WW | 17 |
ADB Broadband HTTP Server | 17 |
GlassFish Server Open Source Edition 4.0 | 17 |
BlueIris-HTTP/1.1 | 17 |
ECS (arn/45A6) | 17 |
Apache/1.3.27 (Win32) | 17 |
nginx/1.5.0 | 17 |
sw-cp-server | 17 |
Httpd v1.0 05may2008 | 17 |
QRATOR | 16 |
Cougar/9.01.01.5001 | 16 |
WowzaStreamingEngine/4.0.4 | 16 |
Linux, HTTP/1.1, DIR-850L Ver 1.07 | 16 |
Apache/1.3.41 (Unix) PHP/5.3.27 mod_ssl/2.8.31 OpenSSL/0.9.8e-fips-rhel5 | 16 |
Apache/2.2.21 (Win32) DAV/2 | 16 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips Phusion_Passenger/4.0.10 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 16 |
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.3.20 | 16 |
WWW Server/1.1 | 16 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_qos/10.10 mod_fcgid/2.3.6 | 16 |
Httpd | 16 |
Intoto Http Server v1.0 | 16 |
Citrix Web PN Server | 16 |
Apache/2.2.6 (Win32) PHP/5.2.5 | 16 |
Apache/2.4 | 16 |
Apache/2.2.15 (Linux/SUSE) | 16 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.15 | 16 |
Apache/2.2.17 (Unix) DAV/2 mod_ssl/2.2.17 OpenSSL/1.0.0c PHP/5.3.5 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 16 |
Linux, HTTP/1.1, DIR-868L Ver 1.07 | 16 |
Apache/2.4.6 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.4.21 | 16 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/1.0.1c PHP/5.3.13 | 15 |
lighttpd/1.5.0 | 15 |
nginx/1.2.0 + Phusion Passenger 3.0.12 (mod_rails/mod_rack) | 15 |
Apache/2.2.21 (Win64) PHP/5.3.8 | 15 |
Waveplus HTTPD | 15 |
David-WebBox/12.00a (0964) WIN32 | 15 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8o PHP/5.3.27 | 15 |
Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i mod_autoindex_color PHP/5.2.8 | 15 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1h | 15 |
Corrigo Webserver | 15 |
Apache/2.4.7 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 15 |
Apache/2.4.4 (Win32) OpenSSL/1.0.1e PHP/5.5.3 | 15 |
dptech server | 15 |
ECS (arn/459E) | 15 |
Spaced/0.1 | 15 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8m | 15 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 15 |
Apache/2.2.14 (Win32) | 15 |
IP CAMERA | 15 |
WebServer/4.6.2.0 | 15 |
Apache/2.2.22 (Unix) PHP/5.4.3 mod_jk/1.2.37 | 15 |
X-Radio | 15 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1g mod_bwlimited/1.4 mod_fastcgi/2.4.6 mod_fcgid/2.3.9 | 15 |
mkz-cdn | 15 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips PHP/5.2.10 | 15 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.10 | 15 |
nginx/1.0.8 | 15 |
ExtremeWare/7.8 | 14 |
kangle/3.1.8 | 14 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips Phusion_Passenger/4.0.53 mod_bwlimited/1.4 | 14 |
Apache/2.2.21 (Unix) DAV/2 mod_ssl/2.2.21 OpenSSL/1.0.0c PHP/5.3.8 mod_apreq2-20090110/2.7.1 mod_perl/2.0.5 Perl/v5.10.1 | 14 |
lighttpd/1.4.28 atos/5.6.21 (server0) | 14 |
Web r | 14 |
IceWarp/10.4.5 | 14 |
ImgHttp3.0.0 | 14 |
nginx/1.5.5 | 14 |
gunicorn/18.0 | 14 |
[Apr 22 2014 06:00:50] | 14 |
embedded http dameon | 14 |
WMI V5 | 14 |
Apache/1.3.23 (Unix) PHP/4.1.2 | 14 |
Apache/2.0.53 (Fedora) | 14 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch | 14 |
Unknown/0.0 UPnP/1.0 GlobespanVirata-EmWeb/R6_1_0 | 14 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1c-fips | 14 |
lighttpd/1.4.28-devel-4866 | 14 |
GSE | 14 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch | 14 |
ECS (fra/D4EA) | 14 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 | 14 |
Apache/2.2.14 (Fedora) | 14 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_fcgid/2.3.6 | 14 |
Kerio Connect 8.3.4 patch 1 | 14 |
HTTPD 1.0 | 14 |
Werkzeug/0.9.4 Python/2.7.3 | 14 |
lighttpd/1.4.26-devel-163573 | 14 |
Apache/2.2.11 (Win32) PHP/5.2.9-2 | 14 |
82170290@qq.com | 13 |
Apache/2.2.15 (FreeBSD) mod_ssl/2.2.15 OpenSSL/0.9.8n PHP/5.3.2 with Suhosin-Patch | 13 |
MiniServ/0.01 | 13 |
webserver/1.0 | 13 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.2.17 | 13 |
nginx/1.1.11 | 13 |
Apache/1.3.33 (Win32) PHP/4.3.10 | 13 |
Apache/2.2.22 (Debian) PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1e | 13 |
Apache/2.2.21 (CentOS) | 13 |
Apache/2.2.25 (Unix) | 13 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_fcgid/2.3.6 | 13 |
MoxaHttp/1.0 | 13 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.7b PHP/5.1.4 | 13 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 13 |
Radware-web-server | 13 |
ECS (lhr/4BC0) | 13 |
nginx/0.8.32 | 13 |
Apache/2.2.26 (Unix) PHP/5.4.24 mod_wsgi/3.3 Python/2.7.5 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 13 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.6 | 13 |
Web Server X-UA-Compatible: IE=EmulateIE7 |
13 |
httpd_gargoyle/1.0 14mar2008 | 13 |
WindWeb/4.00 | 13 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8h DAV/2 PHP/5.2.6 mod_scgi/1.14 | 13 |
LightTPD/1.4.19 (Win32) | 13 |
Apache/2.4.10 (Win64) | 13 |
Boa/0.94.14rc18 | 13 |
JAWS/1.0 Jan 26 2014 | 13 |
MQX HTTP – Freescale Embedded Web Server | 13 |
Resin/3.1.8 | 13 |
PBX/4.5.0.1090 Epsilon Geminids (Debian32) | 13 |
Jetty(8.1.7.v20120910) | 13 |
JAWS/1.0 Sep 2 2013 | 13 |
Apache/2.4.3 (Unix) SVN/1.7.9 PHP/5.4.8 | 13 |
Apache/2.2.25 (Win32) PHP/5.3.28 | 13 |
mhttpd v1.0 | 13 |
nginx/1.4.4 + Phusion Passenger 4.0.37 | 13 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 13 |
thttpd/2.19-MX Jul 1 2010 | 13 |
Start HTTP-Server/1.0 | 13 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny13 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 13 |
httpd_four-faith | 13 |
Apache/2.2.21 (EL) | 13 |
server | 13 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 13 |
Techno Vision Security System Ver. 2.0 | 13 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1g PHP/5.5.11 mod_perl/2.0.8-dev Perl/v5.16.3 | 12 |
Microsoft-WinCE/4.20 | 12 |
Apache/2.2.22 (Ubuntu) mod_ssl/2.2.22 OpenSSL/1.0.1 | 12 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.2.17 | 12 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8l mod_perl/2.0.4 Perl/v5.10.0 | 12 |
Indy/10.0.52 | 12 |
Panasonic AVC Server/1.00 | 12 |
ECS (lhr/4BB0) | 12 |
Apache/2.2.22 (Win32) mod_jk/1.2.37 | 12 |
fnord/1.9 | 12 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8o | 12 |
WSGIServer/0.1 Python/2.7.3 | 12 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.32 | 12 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.3.27 | 12 |
G-WAN | 12 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 12 |
FlexWATCH-Webs | 12 |
Apache/2.2.27 | 12 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1i PHP/5.4.31 | 12 |
ECS (vie/44AF) | 12 |
nginx/1.6.2 + Phusion Passenger 4.0.53 | 12 |
BarracudaServer.com (WindowsCE) | 12 |
lighttpd/1.4.31-devel-31521 | 12 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_jk2/2.0.4 | 12 |
nginx/1.3.8 | 12 |
Indy/9.0.11 | 12 |
Loxone 5.66.4.23 | 12 |
Apache/1.3.28 (Unix) mod_ssl/2.8.15 OpenSSL/0.9.8d | 12 |
Apache/2.2.13 (Unix) PHP/5.2.6 | 12 |
TeleEye/1.1 | 12 |
OBi110 | 12 |
cc-web/1.2.9 | 12 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.7a mod_jk2/2.0.4 | 12 |
OPS-Device | 12 |
Apache/2.2.16 (Win32) PHP/5.2.14 | 12 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 12 |
Apache/2.0.64 (Win32) PHP/5.2.17 | 12 |
Apache/2.2.13 (Linux/SUSE) | 12 |
WowzaStreamingEngine/4.1.0 | 12 |
Boa/0.94.14rc18-ipcam | 12 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.6.3 mod_perl/2.0.8-dev Perl/v5.16.3 | 12 |
Oktell LS | 12 |
Apache Tomcat | 12 |
Apache/2.0.54 (Fedora) | 12 |
Apache/2.2.4 (Linux/SUSE) | 12 |
CompuOffice Webserver/2.0.0.0 | 11 |
thin 1.6.2 codename Doc Brown | 11 |
Apache/2.0.63 (Win32) PHP/5.2.14 | 11 |
thttpd/2.21b PHP/20030920 | 11 |
ECS (arn/46FA) | 11 |
Agranat-EmWeb/R5_2_4 | 11 |
Linux, HTTP/1.1, DIR-850L Ver 1.09 | 11 |
Embedded Web Server | 11 |
spanner/1.0.6 | 11 |
Camera Web Server/1.0 | 11 |
gateway | 11 |
Apache/2.2.4 (Fedora) | 11 |
Kerio Connect 8.3.0 | 11 |
WatchGuard Firewall | 11 |
Apache/2.2.27 (Unix) | 11 |
HyNetOS/2.0 | 11 |
axt_httpd | 11 |
GlassFish Server Open Source Edition 3.1.2 | 11 |
HeiTel GmbH Web Server [V1.33/V1.15/V1.9] | 11 |
Apache/1.3.34 (Unix) mod_fastcgi/2.4.2 | 11 |
Apache/2.2.21 (Win32) PHP/5.2.17 | 11 |
Apache/1.3.34 (Win32) PHP/4.4.2 | 11 |
Allegro-Software-RomPager/3.02 | 11 |
ACOS HTTPD/1.1.4 | 11 |
JRun Web Server | 11 |
Apache/2.4.9 | 11 |
IS2 Web Server 1.68 | 11 |
Apache/2.4.7 (Debian) | 11 |
Apache/2.2.25 (Win32) PHP/5.4.34 | 11 |
Apache/2.0.40 (Red Hat Linux) | 11 |
CrushFTP HTTP Server | 11 |
Apache/2.2.11 (Win32) | 11 |
thttpd/2.19-MX Oct 29 2013 | 11 |
cswebserver 1.7 | 11 |
Apache/2.2.8 (Fedora) | 11 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 11 |
Apache/2.2.17 (Win32) PHP/5.3.4 | 11 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.4 | 11 |
nginx/0.7.64 | 11 |
Apache/2.2.3 (Oracle) | 11 |
nginx/1.5.4 | 11 |
nginx/1.6.0 + Phusion Passenger 4.0.45 | 11 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_qos/10.10 | 11 |
Apache/2.4.6 (Win64) PHP/5.5.3 | 11 |
Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4 with Suhosin-Patch | 11 |
Apache/2.2.29 (Linux/SUSE) | 11 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.28 | 11 |
RAC_ONE_HTTP 1.0 | 11 |
nginx/1.7.8 | 10 |
Linqhost HPW | 10 |
http server/everfocus | 10 |
Apache/2.2.17 (Unix) | 10 |
lighttpd/1.4.28-devel-7077 | 10 |
Apache/2.2.9 | 10 |
letv/2014-08-28/5.41/letv | 10 |
***************** | 10 |
Server | 10 |
Video server | 10 |
Cowboy | 10 |
Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.5 | 10 |
Apache/2.4.9 (Unix) PHP/5.2.17 | 10 |
Apache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 | 10 |
ECS (lhr/4BEB) | 10 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_qos/10.10 | 10 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_fastcgi/mod_fastcgi-SNAP-0910052141 | 10 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.17 | 10 |
Apache/2.2.25 (Win32) mod_jk/1.2.32 | 10 |
Apache/2.2.19 (Win32) PHP/5.2.17 | 10 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8k | 10 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 10 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t | 10 |
thttpd/2.20c 21nov01 | 10 |
Apache/2.2.17 (Win32) mod_aspdotnet/2.2 | 10 |
Mrvl-R1_0 | 10 |
Apache/2.2.6 (Fedora) | 10 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1i PHP/5.3.28 | 10 |
NS9.3.54.4 | 10 |
HFS 2.3 beta | 10 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.17 | 10 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y | 10 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.8.8 | 10 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.2.17 | 10 |
IPCamera HTTP/ONVIF/P2P/RTSP/VOD Multi-Server | 10 |
sbcache/3.5.5 | 10 |
Apache/2.4.6 (Unix) OpenSSL/1.0.0-fips mod_bwlimited/1.4 | 10 |
NetBox Version 2.8 Build 4128 | 10 |
Mini Embedded Web Server | 10 |
Apache/1.3.37 Ben-SSL/1.48 (Unix) | 10 |
Apache/2.2.17 (Unix) DAV/2 | 10 |
Apache/2.2.16 (Debian) mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.16 OpenSSL/0.9.8o | 10 |
Apache/2.2.27 (Win32) | 10 |
Apache/2.2.26 (Win32) mod_ssl/2.2.26 OpenSSL/0.9.8y mod_fcgid/2.3.6 | 10 |
Apache/2.2.24 (Unix) PHP/5.3.26 | 10 |
Apache/2.2.9 (Win32) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8h mod_autoindex_color PHP/5.2.6 | 10 |
CDNedge Server v3 | 10 |
HydraIP | 10 |
Apache/2.2.15 (CentOS) DAV/2 mod_python/3.3.1 Python/2.6.6 | 10 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_apreq2-20090110/2.7.1 | 10 |
Apache/2.2.9 (Win32) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8i mod_autoindex_color PHP/5.2.6 | 10 |
lighttpd/1.4.28 atos/5.6.13.3 (server0) | 10 |
Jetty/5.1.x (Linux/2.6.10_mvl401-monahans_P arm java/J2ME Foundation Specification v1.1 | 10 |
marco/0.1 | 10 |
Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.6 with Suhosin-Patch | 10 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.5.15 mod_perl/2.0.8-dev Perl/v5.16.3 | 10 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 10 |
aicache6x | 10 |
Apache/2.2.21 (Fedora) | 10 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny13 with Suhosin-Patch | 10 |
IS2 Web Server 1.74 | 10 |
Apache/2.2.22 (FreeBSD) PHP/5.3.14 mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 10 |
Apache/1.3.27 (Unix) Debian GNU/Linux mod_gzip/1.3.26.1a mod_python/2.7.8 Python/2.2.2 | 10 |
nginx/1.3.9 | 10 |
Apache/2.4.10 (Win64) PHP/5.6.0 | 10 |
emBetter | 10 |
Apache/2.2.24 (CentOS) | 10 |
lighttpd/1.4.28-devel-7930 | 10 |
Apache/2.2.23 (Unix) PHP/5.3.21 | 10 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.31 | 10 |
David-WebBox/12.00a (0781) WIN32 | 10 |
Apache/2.4.9 (Unix) PHP/5.5.14 | 10 |
APDM(MPEG-4) | 9 |
Apache/1.3.31 (Unix) PHP/4.3.9 mod_ssl/2.8.20 OpenSSL/0.9.7e | 9 |
thin | 9 |
Apache/2.2.13 (Win32) PHP/5.2.10 | 9 |
Indy/9.00.10 | 9 |
openresty/1.7.2.1 | 9 |
GlassFish Server Open Source Edition 4.1 | 9 |
Mini ASP Web Server | 9 |
2wire Gateway | 9 |
EWS-NIC5/16.41 | 9 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips PHP/5.3.10 | 9 |
Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.1 with Suhosin-Patch | 9 |
WindWeb/1.0.2 | 9 |
Ximotech-Webs | 9 |
Razuna Application Server | 9 |
Apache/2.2.14 (Unix) | 9 |
Apache/1.3.41 (Unix) PHP/5.3.10 mod_ssl/2.8.31 OpenSSL/0.9.7a | 9 |
Apache/2.4.10 (Fedora) | 9 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.0c PHP/5.3.3 | 9 |
WowzaStreamingEngine/4.0.6 | 9 |
ContinuumTransfunctioner/42.0 | 9 |
Apache/2.4.9 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 9 |
Jetty(6.1.24) | 9 |
ZGS | 9 |
CANON HTTP Server | 9 |
Embedthis-Appweb/3.3.1 | 9 |
Apache/2.2.6 (Win32) | 9 |
Linux, HTTP/1.1, DIR-868L Ver 1.04 | 9 |
Apache/2.2.22 (Unix) DAV/2 | 9 |
W3MFC/1.68 | 9 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 9 |
Apache/2.2.15 (Win32) | 9 |
ngx_openresty | 9 |
ECS (lhr/4BC7) | 9 |
thttpd/2.19-MX Sep 9 2013 | 9 |
JAWS/1.0 Mar 22 2014 | 9 |
Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8k PHP/5.3.0 | 9 |
Apache/2.2.8 (Win32) PHP/5.2.5 | 9 |
Apache/2.2.23 (FreeBSD) mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 9 |
nginx/1.3.15 | 9 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.25 | 9 |
nginx/1.2.4 + Phusion Passenger 3.0.18 (mod_rails/mod_rack) | 9 |
Apache/2.4.9 (Win64) | 9 |
Jetty(6.1.26) | 9 |
Powred by RSWS v3.5 – BlackOpsEdition | 9 |
BW HTTP Server | 9 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 9 |
Apache/2.2.22 (FreeBSD) DAV/2 mod_ssl/2.2.22 OpenSSL/0.9.8y | 9 |
nginx/0.8.38 | 9 |
Apache/2.0.54 | 9 |
Apache/2.2.17 (Win32) PHP/5.2.17 | 9 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 9 |
LANCOM 1611+ 8.82.0100 / 28.08.2013 | 9 |
nginx/1.3.7 | 9 |
Apache/2.0.63 (CentOS) | 9 |
– Web acceleration by http://www.unixy.net/advanced-hosting/varnish-litespeed-cpanel/ | 9 |
MasterWS | 9 |
avtech/1.0 | 9 |
Apache/2.2.21 (Win32) PHP/5.3.9 | 9 |
nginx/1.2.6 + Phusion Passenger 3.0.19 | 9 |
Resin/3.1.12 | 8 |
thttpd/2.19-MX Jun 11 2013 | 8 |
ECS (lhr/4787) | 8 |
Apache/2.2.26 | 8 |
Netgem/1.0 (HTTPserver) | 8 |
TAC/Xenta511 1.20 | 8 |
WebSphere Application Server/7.0 | 8 |
Apache/2.2.15 (Win32) PHP/5.2.13 | 8 |
ESERV-10/1.0 | 8 |
Zope/(2.13.22, python 2.7.8, linux2) ZServer/1.1 | 8 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_perl/2.0.8 Perl/v5.10.1 | 8 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 8 |
Apache/2.2.27 (FreeBSD) PHP/5.3.28 with Suhosin-Patch mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 8 |
Apache/2.4.7 (Unix) PHP/5.3.27 OpenSSL/0.9.8o | 8 |
Apache/1.3.34 (Unix) | 8 |
Lancam Server | 8 |
Apache/2.2.22 (Win32) PHP/5.3.18 | 8 |
Apache/2.2.24 (Unix) | 8 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8o PHP/5.2.8 mod_wsgi/2.4 Python/2.6.2 | 8 |
TSEWS | 8 |
nginx/1.6.0 + Phusion Passenger 4.0.48 | 8 |
JAWS/1.0 Sep 16 2014 | 8 |
Apache/2.2.11 (Fedora) | 8 |
nginx + Phusion Passenger 4.0.45 | 8 |
Ingelabs-httpd/1.0 | 8 |
nginx/1.0.0 | 8 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.4.19 | 8 |
Serv-U/15.1.0.480 | 8 |
Apache/2.2.11 (Win32) mod_jk/1.2.20 mod_ssl/2.2.11 OpenSSL/0.9.8i | 8 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 PHP/5.3.28 | 8 |
Apache/2.4.6 (Fedora) OpenSSL/1.0.0-fips mod_jk/1.2.37 | 8 |
go1984 | 8 |
Apache/1.3.34 (Unix) mod_ssl/2.8.25 OpenSSL/0.9.7g PHP/4.4.1 | 8 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.29 | 8 |
JAWS/1.0 Jun 19 2013 | 8 |
Apache/2.0.63 (NETWARE) mod_jk/1.2.23 | 8 |
Apache/2.2.15 (CentOS) DAV/2 mod_fastcgi/2.4.6 | 8 |
IPOffice/ | 8 |
Tableau | 8 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 8 |
Web Server 1.1 | 8 |
Apache/2.2.21 (Win32) PHP/5.3.10 | 8 |
Apache/2.4.10 (FreeBSD) | 8 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.37 mod_bwlimited/1.4 | 8 |
WowzaStreamingEngine/4.0.5 | 8 |
Multimedia Phone | 8 |
squid/3.3.8 | 8 |
Apache/2.2.15 (CentOS) PHP/5.3.23 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 8 |
Cougar/9.5.6001.18281 | 8 |
Webserver | 8 |
Apache/2.2.16 (Fedora) | 8 |
nginx/1.5.11 | 8 |
Apache/2.2.25 | 8 |
Apache/2.4.7 (Win32) OpenSSL/0.9.8y PHP/5.4.25 | 8 |
IPShare6.0 | 8 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e PHP/5.3.28 | 8 |
Apache/2.4.6 (Unix) PHP/5.4.20 | 8 |
HTTP server | 8 |
Apache/2.2.11 (Win32) PHP/5.2.8 | 8 |
Linux, HTTP/1.1, DIR-456U Ver 1.00ONG | 8 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server | 8 |
Apache/2.4.3 (Unix) PHP/5.4.7 | 8 |
GitHub.com | 8 |
David-WebBox/11.00a (0717) | 8 |
IceWarp/11.0.1.2 | 8 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9 mod_perl/2.0.8 Perl/v5.10.1 | 8 |
cisco-IOS/12.1 HTTP-server/1.0(1) | 8 |
Jetty/4.2.x (Linux/2.6.34 arm java/1.6.0_21) | 8 |
Google Search Appliance | 8 |
DCS-2120 | 8 |
JAWS/1.0 May 11 2013 | 8 |
Conexant-EmWeb/R6_1_0 | 8 |
Werkzeug/0.8.3 Python/2.7.3 | 8 |
FM Web Publishing | 8 |
Apache/2.0.61 (Unix) | 8 |
taunton | 8 |
Apache/2.2.15 (SLES Expanded Support) | 8 |
PWS/8.0.25 | 8 |
nginx/1.5.9 | 8 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k PHP/5.2.6 | 8 |
JC-HTTPD/1.12.16 | 7 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 7 |
Apache/2.2.22 (Win32) mod_fcgid/2.3.6 | 7 |
SOYAL Technology WebServer 2.0 | 7 |
OPENAPI Server | 7 |
Allegro-Software-RomPager/4.04 | 7 |
Apache/2.2.27 (Unix) PHP/5.2.17 with Suhosin-Patch mod_fastcgi/2.4.6 | 7 |
GlassFish Server Open Source Edition 3.0.1 | 7 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16 | 7 |
ZyCfg | 7 |
nginx/1.4.7 + Phusion Passenger 4.0.41 | 7 |
Kerio Connect 8.4.0 | 7 |
Apache/2.0.63 (Unix) | 7 |
Linux, HTTP/1.1, DIR-600 Ver 2.15 | 7 |
Ginatex-HTTPServer | 7 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 7 |
Kerio Connect 8.2.4 | 7 |
Werkzeug/0.9.6 Python/2.7.6 | 7 |
Apache/1.3.27 (Unix) mod_ssl/2.8.12 OpenSSL/0.9.7c | 7 |
JAWS/1.0 Oct 11 2013 | 7 |
Apache/2.2.17 (Unix) PHP/5.2.17 | 7 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 PHP/5.3.29 | 7 |
This is server | 7 |
KMI ROCK HTTPConfig | 7 |
lighttpd/1.4.24-devel-16978 | 7 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips DAV/2 mod_bwlimited/1.4 SVN/1.6.11 PHP/5.3.27 | 7 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.25 with Suhosin-Patch | 7 |
Digiweb | 7 |
ioLogik Web Server/1.0 | 7 |
ISS-HttpMod/1.0 | 7 |
Jetty(winstone-2.8) | 7 |
Apache/2.2.11 (Unix) | 7 |
DManager | 7 |
BISW_SDR | 7 |
PanWeb Server/ – | 7 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 with Suhosin-Patch | 7 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1c-fips PHP/5.3.15 | 7 |
Apache/1.3.41 (Unix) mod_perl/1.30 PHP/5.2.10 mod_ssl/2.8.31 OpenSSL/0.9.8e-fips-rhel5 | 7 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.7l DAV/2 | 7 |
Serv-U/14.0.1.0 | 7 |
Apache/2.2.22 (Win64) PHP/5.4.3 | 7 |
Sun GlassFish Enterprise Server v2.1 | 7 |
www.vortexcommerce.com | 7 |
Baby Web Server | 7 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 | 7 |
Jetty(6.1.22) | 7 |
Apache/1.3.27 (Unix) | 7 |
Jetty(9.1.3.v20140225) | 7 |
Apache/2.0.61 (Win32) | 7 |
Apache/2.2.4 (Ubuntu) | 7 |
nginx/1.4.1 + Phusion Passenger 4.0.5 | 7 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.5 | 7 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.1d-fips | 7 |
kangle/3.2.5 | 7 |
Canon Http Server 1.00 | 7 |
Cirrus CDN | 7 |
FlashCom/3.5.4 | 7 |
Apache/2.2.22 (Win32) PHP/5.3.10 | 7 |
Wireless Network Camera | 7 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 7 |
eboo server | 7 |
JAWS/1.0 Jun 24 2014 | 7 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 7 |
BI eXcellence Web Server | 7 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.8.8 | 7 |
Sun GlassFish Enterprise Server v2.1.1 | 7 |
Apache/2.2.25 (Win32) PHP/5.3.27 | 7 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u5 mod_ssl/2.2.22 OpenSSL/1.0.1e | 7 |
Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4.6 with Suhosin-Patch | 7 |
Apache/2.0.47 (Linux/SuSE) | 7 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i | 7 |
wfaxd/2.2.1 | 7 |
Kerio Connect 8.1.1 | 7 |
codns.com ddns server | 7 |
GlassFish Server Open Source Edition 4.0 | 7 |
BAS920 HTTPserv:00002 | 7 |
ImagiaTek | 7 |
lighttpd/1.4.29-devel-6565 | 7 |
Apache/1.3.26 (Unix) | 7 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u14 | 7 |
Cougar/9.01.01.3841 | 7 |
CANON HTTP Server Ver2.30 | 7 |
lighttpd/1.4.28-devel-97M | 7 |
Apache/2.2.27 (Unix) mod_hive/3.6 mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fastcgi/2.4.6 | 7 |
CJServer/1.1, CJServer/1.1 | 7 |
BigIP | 7 |
nginx/1.0.2 | 7 |
gunicorn/0.16.1 | 7 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0h | 7 |
Level-3 Origin Storage/1.5 | 7 |
Apache/2.4.6 (Unix) | 7 |
Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8n mod_auth_sspi/1.0.4 | 7 |
WebServer/4.5.0.0 | 7 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 7 |
Linux, HTTP/1.1, DIR-600 Ver 2.16 | 7 |
ATR-HTTP-Server/2.9.1 | 7 |
KM-httpd/1.2.0 | 7 |
Apache/2.0.59 (Win32) | 7 |
Apache/2.2.13 (Fedora) | 6 |
Microsoft-WinCE/7.00 | 6 |
Apache/2.2.9 (Debian) mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 6 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 6 |
Apache/2.0.50 (Win32) | 6 |
AmazonS3 | 6 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 6 |
MicroWeb/1.0 | 6 |
PBX/4.5.0.1075 Delta Aurigids (Debian32) | 6 |
Aterm(HT)/1.0.0 | 6 |
Ipswitch 1.0 | 6 |
WindRiver-WebServer/4.4 | 6 |
webs | 6 |
Apache/2.2.17 (Win32) DAV/2 | 6 |
Apache/2.0.59 (Win32) PHP/4.4.7 | 6 |
Abyss/2.9.0.1-X1-Win32 AbyssLib/2.9.0.0 | 6 |
Apache/2.4.9 (Fedora) PHP/5.5.14 | 6 |
IST OIS | 6 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 | 6 |
Apache/2.2.26 (Unix) DAV/2 mod_ssl/2.2.26 OpenSSL/0.9.8zc | 6 |
Http Server | 6 |
Apache/2.4.10 (Fedora) PHP/5.5.16 | 6 |
Apache/2.2.24 (FreeBSD) PHP/5.4.14 mod_ssl/2.2.24 OpenSSL/0.9.8x DAV/2 | 6 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.0 PHP/5.2.17 | 6 |
David-WebBox/12.00a (0910) WIN32 | 6 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 6 |
mini_httpd/1.17beta1 26may2002 | 6 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.9 with Suhosin-Patch | 6 |
thttpd/2.19-MX Jun 4 2013 | 6 |
Cherokee/1.2.101 (UNIX) | 6 |
Apache/2.2.3 (Fedora) | 6 |
Apache/2.2.22 (Debian) mod_ssl/2.2.22 OpenSSL/1.0.1e | 6 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 6 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.3 | 6 |
BaseHTTP/0.3 Python/2.6.6 | 6 |
Zope/(2.13.16, python 2.6.4, linux2) ZServer/1.1 | 6 |
AnWeb/1.42p | 6 |
lighttpd/1.4.32-devel-20015M | 6 |
– Web acceleration by Simple Servers | 6 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 6 |
Micro-Web | 6 |
nginx/1.3.4 | 6 |
SNOS-HTTP-SERVER | 6 |
TOSHIBA TEC CORPORATION | 6 |
The Knopflerfish HTTP Server | 6 |
Kerio Connect 8.0.0 | 6 |
Linux, HTTP/1.1, DIR-600 Ver 2.11 | 6 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 | 6 |
Apache/2.2.15 (Unix) DAV/2 PHP/4.4.6 | 6 |
Hikvision-webs/ | 6 |
Apache/2.2.16 (Univention) | 6 |
Apache/2.2.23 (FreeBSD) mod_ssl/2.2.23 OpenSSL/0.9.8x DAV/2 | 6 |
TornadoServer/4.0.2 | 6 |
Apache/1.3.31 (Unix) PHP/4.3.8 mod_ssl/2.8.19 OpenSSL/0.9.7g | 6 |
ATR-HTTP-Server/2.9.2 | 6 |
Electrex YoctoNet | 6 |
Resin/4.0.36 | 6 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.14 | 6 |
lighttpd-1.4.6 | 6 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.3.27 | 6 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8x | 6 |
TwistedWeb/10.2.0 | 6 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.4.26 | 6 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_jk/1.2.35 PHP/5.3.24 | 6 |
Virata-EmWeb/R6_1_0 | 6 |
Apache/2.2.14 (Debian) | 6 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8y | 6 |
IBM Mobile Connect | 6 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.26 | 6 |
nginx/1.6.0 + Phusion Passenger 4.0.44 | 6 |
nginx/0.8.51 | 6 |
Apache/2.2.3 (Win32) PHP/5.1.6 | 6 |
CouchDB/1.0.2 (Erlang OTP/R14B) | 6 |
Apache/2.2.26 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8za | 6 |
Advanced Hosting by http://www.unixy.net/advanced-hosting/varnish-nginx-cpanel/ | 6 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.7a PHP/5.1.6 | 6 |
Apache/2.2.10 (Win32) | 6 |
Werkzeug/0.8.1 Python/2.7.3 | 6 |
nginx/1.5.3 | 6 |
Apache/1.1.3 | 6 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t PHP/5.3.16 mod_wsgi/3.3 Python/2.7.2 | 6 |
Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_python/2.7.8 Python/1.5.2 mod_ssl/2.8.12 OpenSSL/0.9.6b DAV/1.0.3 PHP/4.1.2 mod_perl/1.26 mod_throttle/3.1.2 | 6 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.4 OpenSSL/1.0.1f | 6 |
Gnway Web Server | 6 |
SAMBAR | 6 |
streamer-a.puzz.me | 6 |
VCS-VideoJet-Webserver | 6 |
H264WebCam | 6 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.24 | 6 |
lighttpd/1.4.28 atos/5.6.25 (server0) | 6 |
Apache/2.2.25 (Win32) PHP/5.3.29 | 6 |
Linux, HTTP/1.1, DIR-860L Ver 1.08 | 6 |
Allegro-Software-RomPager/4.34 | 6 |
Apache/1.3.35 (Unix) PHP/4.4.2 | 6 |
http | 6 |
Apache/2.2.22 (FreeBSD) PHP/5.2.17 | 6 |
Apache/2.2.17 (Win32) mod_fastcgi/2.4.6 | 6 |
Apache/2.2.21 (Win64) PHP/5.3.10 | 6 |
Apache/2.2.24 (FreeBSD) mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 6 |
Microsoft-IIS/7.5, Microsoft-IIS/7.5 | 6 |
Apache/2.4.9 (Win64) OpenSSL/1.0.1g PHP/5.5.12 | 6 |
Apache/2.2.17 (Win32) PHP/5.3.3 | 6 |
EPSON-HTTP/1.0 | 6 |
GoAhead/2.1.5 | 6 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.0-fips mod_bwlimited/1.4 | 6 |
Control4 Web Server | 6 |
Apache/1.3.37 (Unix) mod_fastcgi/2.4.2 | 6 |
Opentracker Server | 6 |
Velazquez 6.2 | 6 |
4D_v13/13.5 | 6 |
APMS | 6 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_fcgid/2.3.7 PHP/5.4.7 | 6 |
Apache/2.0.52 (Fedora) | 6 |
thin 1.5.0 codename Knife | 6 |
Apache/2.2.3 (Debian) | 6 |
TDTWS | 6 |
Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.5.3 mod_perl/2.0.8-dev Perl/v5.16.3 | 6 |
YxlinkWAF | 6 |
squid/3.1.20 | 6 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.8 | 6 |
frames.puzz.me | 6 |
Cisco-CDS | 6 |
David-WebBox/12.00a (0954) WIN32 | 6 |
Apache/2.4.10 (Unix) PHP/5.5.15 | 6 |
Apache/2.0.47 (Win32) | 6 |
Apache/2.2.22 (Unix) DAV/2 mod_mono/2.10 PHP/5.3.27 mod_ssl/2.2.22 OpenSSL/1.0.1h | 6 |
Apache/2.2.4 (Win32) PHP/5.2.0 | 6 |
tinyproxy/1.6.3 | 6 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch | 6 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 CiscoSSL/1.0.1h.4.4 | 6 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.3.28 | 6 |
HFS 2.2f | 6 |
Restlet-Framework/2.0.8 | 6 |
HTTP/1.0 | 6 |
Apache/2.4.9 (Fedora) | 6 |
Router Web Config System | 6 |
nginx/1.1.4 | 6 |
Apache/2.2.22 (Unix) PHP/5.3.10 | 6 |
Kerio Connect 7.4.3 | 6 |
Apache/1.3b42cb | 6 |
Unknown | 6 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 6 |
nginx + Phusion Passenger | 6 |
Oracle-Application-Server-10g/10.1.2.2.0 Oracle-HTTP-Server | 6 |
Apache/2.4.2 | 6 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.8g | 6 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t mod_antiloris/0.5.2 | 6 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.6 | 6 |
Apache/2.4.10 (Unix) PHP/5.6.3 | 6 |
Apache/2.2.25 (Win32) PHP/5.2.17 | 6 |
nginx/1.4.4 + Phusion Passenger 4.0.35 | 6 |
nginx/0.8.22 | 6 |
Virata-EmWeb/R5_3_0 | 6 |
nginx/1.3.1 | 6 |
Apache/2.2.22 (FreeBSD) mod_fcgid/2.3.6 mod_ssl/2.2.22 OpenSSL/0.9.8q | 6 |
broker/8.7.0.3 | 6 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k | 6 |
thin 1.5.1 codename Straight Razor | 6 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.20 | 5 |
Linux, HTTP/1.1, DIR-868L Ver 1.08 | 5 |
ADTRAN | 5 |
Apache/2.2.25 (FreeBSD) PHP/5.4.19 mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 | 5 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.31 | 5 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips PHP/5.3.29 | 5 |
Apache/2.2.3 (Win32) PHP/5.2.0 | 5 |
thttpd/2.19-MX Nov 6 2014 | 5 |
squid/3.2.6 | 5 |
Apache/2.2.19 (Win32) PHP/5.3.6 | 5 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.25 | 5 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.2.9 | 5 |
zws/0.0.1 | 5 |
Apache/1.3.27 (Unix) (Red-Hat/Linux) PHP/4.1.2 mod_perl/1.26 | 5 |
Jetty(8.1.15.v20140411) | 5 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.20 | 5 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7e mod_wsgi/2.4 Python/2.6.2 | 5 |
Apache/1.3.41 (Debian GNU/Linux) (Unix) PHP/5.2.13 | 5 |
TwistedWeb/12.1.0 | 5 |
Apache/2.2.8 (CentOS) | 5 |
Xojo HTTP Server 2014.021 | 5 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8g PHP/5.2.6 | 5 |
Rogatkin’s JWS based on Acme.Serve/$Revision: 1.36.2.1 $ | 5 |
Viavideo-Web | 5 |
Apache/2.4.2 (Win32) PHP/5.4.6 | 5 |
WebSphere Application Server/6.1 | 5 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u8 | 5 |
thttpd/2.19-MX Jan 24 2006 | 5 |
Apache/2.2.25 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 | 5 |
Apache/2.0.63 (Win32) PHP/5.2.6 | 5 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1g | 5 |
Apache/2.2.25 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.25 OpenSSL/1.0.1e | 5 |
Apache/2.2.3 (Debian) mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch16 mod_ssl/2.2.3 OpenSSL/0.9.8c | 5 |
nginx/1.3.13 | 5 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e PHP/5.2.17 | 5 |
GRC/IIS Hybrid Application Webserver | 5 |
Apache/1.3.33 (Unix) PHP/4.3.9 mod_ssl/2.8.22 OpenSSL/0.9.7e | 5 |
lighttpd/1.4.25 | 5 |
Serv-U/14.0.2.0 | 5 |
nginx/1.1.0 | 5 |
IBM_HTTP_Server/6.0.2.25 Apache/2.0.47 (Win32) | 5 |
PRTG/13.1.2.1462 | 5 |
Apache/1.3.41 (Unix) PHP/5.2.6 mod_log_bytes/1.2 mod_bwlimited/1.4 mod_auth_passthrough/1.8 FrontPage/5.0.2.2635 mod_ssl/2.8.31 OpenSSL/0.9.7a | 5 |
Apache/2.4.7 (Unix) PHP/5.4.24 OpenSSL/1.0.1e | 5 |
Apache/2.2.9 (Debian) mod_ssl/2.2.9 OpenSSL/0.9.8g | 5 |
Serv-U/15.0.0.0 | 5 |
gunicorn/19.0.0 | 5 |
Sun-Java-System-Web-Server/7.0 | 5 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e PHP/5.5.6 mod_perl/2.0.8-dev Perl/v5.16.3 | 5 |
KasperskyLabs | 5 |
Allegro-Software-RomPager/4.30b3 | 5 |
JAWS/1.0 Apr 8 2014 | 5 |
WebServer(ipcamera) | 5 |
Apache/2.4.4 (Unix) | 5 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.25 | 5 |
Linux, HTTP/1.1, DIR-850L Ver 1.11WW | 5 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 5 |
ezHttpServer | 5 |
lighttpd/1.4.28-devel-6797 | 5 |
Apache/2.2.9 (Unix) DAV/2 | 5 |
eDevice SmartStack /0.1 | 5 |
JAWS/1.0 | 5 |
ISC2100 HTTPserv:00002 | 5 |
Apache/2.4.6 (Ubuntu) PHP/5.5.3-1ubuntu2.6 | 5 |
nginx/1.4.7 + Phusion Passenger 4.0.40 | 5 |
Web Server/1.0 | 5 |
Goahead/2.5.0 PeerSec-MatrixSSL/3.2.1-OPEN | 5 |
Apache/2.2.9 (Debian) PHP/4.4.4-8+etch6 | 5 |
Apache/2.2.26 (FreeBSD) PHP/5.4.23 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 5 |
Apache/1.3.39 (Unix) PHP/4.4.7 mod_auth_passthrough/1.8 mod_bwlimited/1.4 mod_log_bytes/1.2 FrontPage/5.0.2.2635 mod_ssl/2.8.30 OpenSSL/0.9.8b | 5 |
FWS/7.0 | 5 |
Allegro-Software-RomPager/4.03 | 5 |
STAR-NET | 5 |
Apache/2.2.3 (Unix) | 5 |
thttpd/2.19-MX Feb 27 2009 | 5 |
CNIX HTTP Server 1.0 | 5 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.0-fips PHP/5.3.6 | 5 |
Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 5 |
follow-webserver | 5 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips PHP/5.2.10 | 5 |
Loxone 6.0.9.29 | 5 |
Apache/2.2.15 (Scientific Linux) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_wsgi/3.2 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 5 |
Diwanee Server | 5 |
thttpd/2.19-MX Oct 19 2011 | 5 |
Serv-U/15.0.1.20 | 5 |
Apache/2.2.8 (Linux/SUSE) | 5 |
Apache/2.4.3 (Unix) | 5 |
squid/3.1.22 | 5 |
nginx/1.4.2 + Phusion Passenger 4.0.14 | 5 |
Oracle-iPlanet-Web-Server/7.0 | 5 |
CherryPy/3.1.0 | 5 |
Apache/1.3.19 (Unix) (Red-Hat/Linux) PHP/4.3.0 | 5 |
thttpd/2.19-MX Jul 11 2012 | 5 |
Slinger/1.1a | 5 |
Tengine/2.0.3 | 5 |
WildFly/8 | 5 |
FridayCDN (info@fridaycdn.com) | 5 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips DAV/2 mod_bwlimited/1.4 | 5 |
Xitami | 5 |
GS-Webs | 5 |
Apache/2.4.2 (Unix) OpenSSL/0.9.8o | 5 |
Apache/2.2.10 (Fedora) | 5 |
CCProxy | 5 |
Apache/2.2.24 (PowerStack) | 5 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TG;max-age=300+0;age=0;ecid=13699733932953204,0:1) | 5 |
Zope/(2.13.21, python 2.7.5, linux2) ZServer/1.1 | 5 |
Occluded | 5 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8g | 5 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8za | 5 |
Apache/2.2.9 (Debian) mod_fcgid/2.3.6 Phusion_Passenger/2.2.15 mod_ssl/2.2.9 OpenSSL/0.9.8o | 5 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.11 with Suhosin-Patch | 5 |
Lanaccess Web Server 1.1 | 5 |
yealink embed httpd | 5 |
Apache/2.0.53 (Win32) PHP/4.3.9 | 5 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 | 5 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.2.17 | 5 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.5 | 5 |
Kerio Connect 8.0.2 | 5 |
Apache/2.0.50 | 5 |
ABB RTU560 | 5 |
Lightstreamer | 5 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips DAV/2 PHP/5.3.28 | 5 |
AVR_Small_Webserver | 5 |
Apache/2.4.10 (Fedora) PHP/5.5.18 | 5 |
XA-Webs | 5 |
LANCOM 1781A 8.62.0050 / 07.08.2012 | 5 |
Apache/2.2.3 (CentOS) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 | 5 |
ARC-8C 1.13 | 5 |
Apache/1.3.33 (Win32) PHP/4.3.11 | 5 |
nginx lowprotect | 5 |
undisclosed | 5 |
Jetty/5.1.x (Linux/2.6.21.1-iR4-1.0.3 arm java/1.6.0_21 | 5 |
Apache/1.3.41 (Unix) PHP/5.4.19 mod_ssl/2.8.31 OpenSSL/0.9.8e-fips-rhel5 | 5 |
Apache/1.3.37 (Unix) PHP/4.4.2 | 5 |
Apache/2.2.8 (Unix) PHP/4.4.8 | 5 |
WEBrick/1.3.1 (Ruby/1.9.3/2012-04-20) | 5 |
Apache/2.0.48 (Unix) mod_jk/1.2.5 | 5 |
Apache/2.2.17 (Unix) DAV/2 PHP/5.3.6 | 5 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.4.16 mod_python/3.5.0- Python/2.7.5 | 5 |
Apache/2.0.55 (Win32) | 5 |
Werkzeug/0.9.6 Python/2.7.8 | 5 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_jk/1.2.37 | 5 |
TwistedWeb/13.0.0 | 5 |
Niagara Web Server/3.5.34 | 5 |
Apache/1.3.41 (Darwin) | 5 |
ECS (lhr/47AC) | 5 |
BaseHTTP/0.3 Python/2.7.6 | 5 |
Indy/10.1.5 | 5 |
Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.5 with Suhosin-Patch | 5 |
Apache/2.2.26 (FreeBSD) mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 5 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips DAV/2 PHP/5.2.17 | 5 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny4 with Suhosin-Patch | 5 |
Apache/2.2.27 (Gentoo) mod_ssl/2.2.27 OpenSSL/1.0.1k PHP/5.5.21-pl0-gentoo mod_wsgi/3.5 Python/2.7.9 | 5 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_perl/2.0.6 Perl/v5.8.8 | 5 |
Alpha Anywhere Application Server Application Server/12.0 Build/2323-4335 | 5 |
Apache/2.0.55 (Win32) PHP/5.1.1 | 5 |
nginx/0.7.62 | 5 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.12 | 5 |
Embedthis-http/4.0.0 | 5 |
Tiny WebServer | 5 |
Apache/2.4.10 (Unix) mod_fcgid/2.3.9 | 5 |
Jetty(9.0.4.v20130625) | 5 |
ip-camera | 5 |
TMW | 5 |
iCanWebServer/1.1 | 5 |
awweb/1.0 | 5 |
Oracle GlassFish Server 3.1.2.2 | 5 |
PipeGuard | 5 |
Apache/2.2.14 (Win32) PHP/5.2.9-2 | 5 |
nginx/1.0.13 | 5 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.3.28 | 5 |
Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o | 5 |
TwistedWeb/9.0.0 | 5 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_perl/2.0.5 Perl/v5.8.8 | 5 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 5 |
XGATE-Webs | 5 |
Apache/2.2.10 (Win32) mod_fastcgi/2.4.6 | 5 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.4.16 SVN/1.7.14 | 5 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 5 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16 mod_ssl/2.2.3 OpenSSL/0.9.8c | 5 |
HeiTel GmbH Web Server [V1.32/V1.15/V1.8] | 5 |
lighttpd/1.4.28-devel-7497M | 5 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch | 5 |
BarracudaHTTP 3.0 | 5 |
nginx/1.6.0 + Phusion Passenger 4.0.46 | 5 |
Allegro-Software-RomPager/4.31 | 5 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_wsgi/4.2.8 Python/2.7.8 | 5 |
Cherokee/1.2.101 (Debian GNU/Linux) | 5 |
JAWS/1.0 Jun 27 2014 | 5 |
HTTPsrv | 5 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 mod_jk/1.2.37 | 5 |
thttpd/2.19-MX May 3 2013 | 5 |
Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 mod_perl/2.0.4 Perl/v5.10.1 | 5 |
Abyss/2.6.0.0-X1-Win32 AbyssLib/2.6.0.0 | 5 |
Apache/2.2.21 (FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.8q PHP/5.4.10 | 5 |
Apache/2.2.21 (Win32) PHP/5.4.11 | 5 |
FlashCom/3.5.2 | 5 |
thttpd/2.19-MX Apr 26 2011 | 5 |
RainLoop | 5 |
Apache/2.4.2 (Win64) PHP/5.4.3 | 5 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.3.27 | 4 |
Apache/1.3.33 (Unix) PHP/4.3.10 | 4 |
Apache/1.3.33 (Debian GNU/Linux) PHP/4.3.10-22 | 4 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_antiloris/0.4 | 4 |
Apache 2.2.112 mod_fcgid/2.3.6 Phusion_Passenger/2.2.11 proxy_html/3.0.1 mod_vhs/1.1.0 | 4 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1g PHP/5.4.27 mod_perl/2.0.8-dev Perl/v5.16.3 | 4 |
Apache/2.4.10 (FreeBSD) PHP/5.4.35 OpenSSL/1.0.1e-freebsd | 4 |
Apache/2.4.4 (Unix) OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 4 |
Apache/2.4.4 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.17 | 4 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.4 | 4 |
Apache/1.3.37 (Unix) PHP/4.4.7 mod_ssl/2.8.28 OpenSSL/0.9.8d | 4 |
Apache/2.2.22 (Unix) PHP/5.3.27 mod_ssl/2.2.22 OpenSSL/0.9.8y | 4 |
Null httpd 0.5.1 | 4 |
NexGenWEB v1.4 | 4 |
Apache/2.2.27 (FreeBSD) mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 4 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0g | 4 |
webcamXP 5 | 4 |
KFWebServer/3.2.0 Windows XP | 4 |
Apache/2.2.26 (Unix) PHP/5.3.29 mod_ssl/2.2.26 OpenSSL/0.9.8i | 4 |
JAWS/1.0 Aug 26 2013 | 4 |
Apache/2.2.27 (Win32) mod_ssl/2.2.27 OpenSSL/1.0.1g | 4 |
Secured By FS4HOST.COM | 4 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.5 | 4 |
squid/2.5.STABLE6 | 4 |
Apache/2.4.4 (Unix) PHP/5.4.13 | 4 |
RaidenHTTPD/2.0.39 (Core) | 4 |
nginx/1.1.13 | 4 |
IWeb/1.0 | 4 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.3 OpenSSL/1.0.1f | 4 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 4 |
TwistedWeb/10.0.0 | 4 |
Apache/2.2.22 (Unix) PHP/5.3.13 mod_ssl/2.2.22 OpenSSL/0.9.8q | 4 |
thttpd-alphanetworks/2.23 | 4 |
Apache/2.2.9 (Win32) PHP/5.2.4 mod_ssl/2.2.9 OpenSSL/0.9.8h | 4 |
Apache/2.2.22 (Unix) DAV/2 mod_mono/2.10 PHP/5.3.27 mod_ssl/2.2.22 OpenSSL/1.0.1j | 4 |
SNVR Web Server v1.0 | 4 |
nginx/1.6.1 + Phusion Passenger 4.0.50 | 4 |
CommuniGatePro/6.0.9 | 4 |
Aragorn | 4 |
nginx/1.4.1 + Phusion Passenger 4.0.10 | 4 |
Oracle HTTP Server Powered by Apache/1.3.22 (Win32) mod_plsql/3.0.9.8.5d mod_ssl/2.8.5 OpenSSL/0.9.6b mod_fastcgi/2.2.12 mod_oprocmgr/1.0 mod_perl/1.25 | 4 |
David-WebBox/12.00a (0921) WIN32 | 4 |
Apache/2.2.25 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.25 OpenSSL/1.0.1e DAV/2 | 4 |
Apache/2.2.4 (Win32) PHP/5.2.1 | 4 |
Apache/2.0.49 (Unix) PHP/4.3.6 | 4 |
Microsoft-IIS/4.0 | 4 |
Apache/2.2.15 (Cloud Linux) | 4 |
nginx/1.2.3 + Phusion Passenger 3.0.17 (mod_rails/mod_rack) | 4 |
Apache/2.0.52 (Win32) PHP/5.2.6 | 4 |
SAP NetWeaver Application Server 7.20 / AS Java 7.30 | 4 |
Jetty(6.1.8) | 4 |
Jetty(8.1.3.v20120416) | 4 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 4 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze15 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 4 |
Apache/2.4.9 (Unix) PHP/5.5.13 | 4 |
VWebServer | 4 |
Cassini/4.0.1.6 | 4 |
ProCurve Web Server | 4 |
Apache/2.4.6 (Fedora) PHP/5.4.23 | 4 |
Http/1.0 | 4 |
Apache/2.2.3 (Scientific Linux) | 4 |
Apache/2.0.54 (Unix) | 4 |
Apache/2.2.22 (Win32) PHP/5.3.14 | 4 |
SAP J2EE Engine/7.01 | 4 |
webserv | 4 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.9 | 4 |
Apache/2.4.9 (Win64) PHP/5.5.14 | 4 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_qos/10.10 mod_perl/2.0.6 Perl/v5.10.1 | 4 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.8 with Suhosin-Patch | 4 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.23 | 4 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.17 | 4 |
Apache/2.2.2 (Fedora) | 4 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.2.17 | 4 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.7d mod_jk/1.2.32 | 4 |
Linux, HTTP/1.1, DIR-850L Ver 1.13 | 4 |
HFS 2.3c | 4 |
Apache/2.2.22 (Debian) PHP/5.4.36-0+deb7u3 | 4 |
Apache/2.2.15 (CentOS) DAV/2 SVN/1.6.11 | 4 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.1g PHP/5.3.17 | 4 |
Resin/3.0.26 | 4 |
JAWS/1.0 Sep 9 2013 | 4 |
openresty/1.5.8.1 | 4 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.2.17 | 4 |
nginx/1.4.4 + Phusion Passenger 4.0.25 | 4 |
GR-HTTPD Server/2.10 | 4 |
Eltex TAU-1.IP | 4 |
Apache/2.2.25 (Win32) mod_jk/1.2.31 | 4 |
Apache/2.2.11 (Unix) mod_jk/1.2.27 | 4 |
PowerAlert HTTP server, powered by Allegro-Software-RomPager | 4 |
Diffusion 4.5.3_01 | 4 |
Apache/2.4.3 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.37 | 4 |
nginx/1.1.14 | 4 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.0-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 4 |
Apache/2.2.15 (Red Hat) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 4 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t mod_fcgid/2.3.6 | 4 |
Abyss/2.7.0.0-X1-Win32 AbyssLib/2.7.0.0 | 4 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0d DAV/2 PHP/5.3.15 | 4 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 4 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.20 mod_perl/2.0.9-dev Perl/v5.18.4 | 4 |
Apache/2.2.16 (Debian) mod_ssl/2.2.16 OpenSSL/0.9.8o | 4 |
nginx/0.6.35 | 4 |
BarracudaHTTP 4.0 | 4 |
IWS/1.2.4 | 4 |
Apache/2.2.11 (Unix) PHP/5.2.6 | 4 |
(null) | 4 |
Cherokee/0.99.9 (UNIX) | 4 |
Sun-ONE-Web-Server/6.1 | 4 |
Linux, HTTP/1.1, DIR-860L Ver 1.01 | 4 |
Apache/2.2.14 (Win32) PHP/5.3.1 | 4 |
LANTIME | 4 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 4 |
Apache/2.2.9 (Unix) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 mod_apreq2-20051231/2.6.0 mod_perl/2.0.4 Perl/v5.10.0 | 4 |
Cluster Controller | 4 |
squid/2.7.STABLE7 | 4 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.1d-fips PHP/5.3.21 | 4 |
Apache Coyote/1.0 | 4 |
Apache/1.3.36 Ben-SSL/1.48 (Unix) | 4 |
Apache/2.4.10 (Ubuntu) PHP/5.5.16-1+deb.sury.org~precise+1 OpenSSL/1.0.1 | 4 |
nginx/1.3.11 | 4 |
Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.2 with Suhosin-Patch | 4 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.27 | 4 |
spray-can/1.3.1 | 4 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips PHP/5.5.11 mod_fcgid/2.3.9 | 4 |
FC03-HTTPS | 4 |
Apache mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 4 |
zhengv@gmail.com | 4 |
Apache/2.0.53 (OpenNA Linux) | 4 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.11 | 4 |
Apache/2.0.52 (Lineox) | 4 |
Apache/2.2.22 (Ubuntu) DAV/2 SVN/1.6.17 mod_fcgid/2.3.6 PHP/5.4.35-1+deb.sury.org~precise+1 mod_python/3.3.1 Python/2.7.3 mod_ruby/1.2.6 Ruby/1.8.7(2011-06-30) mod_ssl/2.2.22 OpenSSL/1.0.1 mod_perl/2.0.5 Perl/v5.14.2 | 4 |
Apache/1.3.37 (Unix) mod_gzip/1.3.19.1a PHP/4.4.4 mod_ssl/2.8.28 OpenSSL/0.9.6m | 4 |
Hiawatha v6.19 | 4 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 | 4 |
Apache/2.2.26 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8y | 4 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 | 4 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.9 | 4 |
Hooger SAS | 4 |
kx-ns1000 | 4 |
nginx/0.5.17 | 4 |
E-StaX Web Server | 4 |
Apache/2.4.10 (Unix) PHP/5.6.0 | 4 |
Mongrel 1.1.5 | 4 |
IdeaWebServer/v0.80 | 4 |
gunicorn/17.5 | 4 |
Advanced Hosting by http://www.unixy.net/varnish | 4 |
Apache/2.2.29 (Debian) | 4 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.31 | 4 |
Apache/2.0.54 (Unix) PHP/5.2.8 | 4 |
Linux, HTTP/1.1, DIR-850L Ver 1.05 | 4 |
Apache/2.2.26 (Unix) PHP/5.4.24 mod_wsgi/3.3 Python/2.7.5 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 4 |
linux | 4 |
nginx/1.6.0 + Phusion Passenger 4.0.42 | 4 |
LANCOM 1721 VPN (Annex A) 8.00.0221 / 07.10.2010 | 4 |
Apache/2.2.16 (Win32) PHP/5.3.3 | 4 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 4 |
DCS-5220 | 4 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1g mod_bwlimited/1.4 | 4 |
Werkzeug/0.9.6 Python/2.7.3 | 4 |
Apache/2.2.21 (Unix) PHP/5.3.8 | 4 |
MageStack-MagentoOS | 4 |
orbis | 4 |
Tomcat Web Server/3.3.1 Final ( JSP 1.1; Servlet 2.2 ) | 4 |
AnyLink | 4 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k PHP/5.3.0 | 4 |
squid/3.4.4 | 4 |
openresty/1.5.12.1 | 4 |
Apache/2.2.21 (Win32) PHP/5.3.5 mod_jk/1.2.32 | 4 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.21 | 4 |
FoxiServer | 4 |
Rabbit/10.70 | 4 |
Alpha_webserv | 4 |
Apache/2.2.16 (Debian) mod_jk/1.2.30 PHP/5.3.3-7+squeeze20 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 4 |
RStudio | 4 |
Apache/2.0.53 (Linux/SUSE) | 4 |
Apache/2.2.22 (Debian) PHP/5.4.36-0+deb7u1 mod_ssl/2.2.22 OpenSSL/1.0.1e mod_perl/2.0.7 Perl/v5.14.2 | 4 |
Apache/1.3.37 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 PHP/4.4.7 FrontPage/5.0.2.2635.SR1.2 mod_ssl/2.8.28 OpenSSL/0.9.7a | 4 |
Apache/2.2.26 (Unix) PHP/5.4.30 mod_wsgi/3.3 Python/2.7.5 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 | 4 |
Microsoft IIS | 4 |
Kerio Connect 7.3.1 patch 2 | 4 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Phusion_Passenger/3.0.12 | 4 |
Hiawatha v9.7 | 4 |
thttpd/2.19-MX Aug 28 2014 | 4 |
VOIP | 4 |
Linux, HTTP/1.1, WBR-2200 Ver WBR2200.R3.TR069.20140423 | 4 |
Repeatit | 4 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.13 with Suhosin-Patch | 4 |
Blueeyes Stream Server | 4 |
PowerStudio v3.4 BETA | 4 |
Apache/1.3.41 (Unix) mod_ssl/2.8.31 OpenSSL/0.9.7a PHP/4.4.9 | 4 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.5 OpenSSL/1.0.1f | 4 |
Apache/2.0.59 (Unix) PHP/5.1.0 mod_ssl/2.0.59 OpenSSL/0.9.8h DAV/2 | 4 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.6.3 | 4 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 4 |
Apache/2.2.21 (FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.8q DAV/2 PHP/5.3.8 with Suhosin-Patch | 4 |
Apache/2.4.7 (Unix) mod_jk/1.2.37 | 4 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0d | 4 |
kangle/3.3.10.1 | 4 |
Apache/2.2.0 (Linux/SUSE) | 4 |
rad1.3 | 4 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.14 | 4 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.27 | 4 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.29 | 4 |
SQ-WEBCAM | 4 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.11 | 4 |
Apache/1.3.42 (Unix) | 4 |
Grandstream GXP280 1.2.5.3 | 4 |
JAWS/1.0 Sep 24 2013 | 4 |
Kerio Connect 8.2.2 | 4 |
Maverick/2.1.8 | 4 |
Apache/2.4.9 (Unix) PHP/5.5.12 | 4 |
streamer.puzz.me | 4 |
CDN_NWS | 4 |
Apache/2.2.20 (Win32) | 4 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (H;max-age=300+0;age=75;ecid=42533567392108265,0:1) | 4 |
IBM_HTTP_Server/7.0.0.7 (Unix) | 4 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.18 | 4 |
David-WebBox/12.00a (0944) WIN32 | 4 |
XWeb 1.0 | 4 |
nws 1.2.15 | 4 |
SimpleHelp/SSuite-4-1-20130913-221349 | 4 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.14 | 4 |
Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 4 |
Apache/2.2.8 (Win32) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8g PHP/5.2.5 | 4 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.37 | 4 |
Apache/1.3.42 (Unix) PHP/4.4.9 | 4 |
HeiTel GmbH Web Server [V1.24/V1.15/V1.5] | 4 |
gwaprotection | 4 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_bwlimited/1.4 | 4 |
JAWS/1.0 Oct 13 2014 | 4 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_mono/2.6.3 mod_bwlimited/1.4 | 4 |
RealVNC/4.0 | 4 |
kangle/3.0.3 | 4 |
Apache/1.3.29 (Unix) mod_perl/1.29 PHP/4.4.1 mod_ssl/2.8.16 OpenSSL/0.9.7g F | 4 |
Resin/3.1.9 | 4 |
CommuniGatePro/6.0.8 | 4 |
CherryPy/3.2.2 | 4 |
Apache/2.2.16 (Debian) mod_fcgid/2.3.6 mod_ssl/2.2.16 OpenSSL/0.9.8o | 4 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 mod_fastcgi/2.4.6 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g | 4 |
Apache/2.2.17 (Win32) mod_jk/1.2.31 | 4 |
Jetty(8.1.13.v20130916) | 4 |
NWS_SSD_MID | 4 |
Apache/2.2.11 (Win32) mod_jk/1.2.30 | 4 |
Apache/2.4.10-0-beget-cgroups (Unix) | 4 |
Apache/2.2.17 (Unix) PHP5/5.2.14 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.4 | 4 |
Oracle XML DB/Oracle Database | 4 |
LPC Http Server/V1.0 | 4 |
Apache/1.3.33 (Unix) mod_ssl/2.8.22 OpenSSL/0.9.7c-p1 | 4 |
Indy/9.0.18 | 4 |
CR2 3.1.0.380 | 4 |
Apache/2.2.27 (FreeBSD) PHP/5.4.28 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 4 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.6 with Suhosin-Patch | 4 |
Apache/2.2.29 | 4 |
Apache/2.2.24 (Unix) PHP/5.3.26 mod_ssl/2.2.24 OpenSSL/0.9.8y | 4 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.3.26 | 4 |
Apache/2.4.10 (Fedora) PHP/5.5.17 | 4 |
lighttpd/1.4.28-devel-6949 | 4 |
Apache/2.0.64 (Unix) | 4 |
Ajouda Server | 4 |
Apache/2.4.4 (Unix) OpenSSL/1.0.0-fips mod_jk/1.2.37 | 4 |
GSA Captcha Breaker | 4 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.4.29 | 4 |
Apache/2.4.4 (Win32) OpenSSL/1.0.1e PHP/5.5.1 | 4 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.29 | 4 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze15 with Suhosin-Patch | 4 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 mod_jk/1.2.40 | 4 |
Apache/2.4.10 (Fedora) PHP/5.5.20 | 4 |
Apache on econome.ch | 4 |
Apache | 4 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 | 4 |
Apache/2.2.18 (Unix) mod_jk/1.2.31 | 4 |
Apache/2.2.16 (Debian) mod_fcgid/2.3.6 Phusion_Passenger/4.0.3 PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.7(2010-08-16) mod_ssl/2.2.16 OpenSSL/0.9.8o | 4 |
VPON Server/1.0 | 4 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.17 | 4 |
NeptuneLabs – Stielaugen Server | 4 |
Apache/2.2.10 (Unix) mod_ssl/2.2.10 OpenSSL/0.9.8b PHP/5.2.6 mod_jk/1.2.31 | 4 |
thttpd/2.19-MX May 22 2014 | 4 |
squid/3.1.23 | 4 |
Apache/2.2.23 (FreeBSD) PHP/5.4.11 mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 4 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.15 | 4 |
Kerio Connect 7.0.1 | 4 |
Apache/2.2.25 (FreeBSD) mod_ssl/2.2.25 OpenSSL/1.0.1c DAV/2 | 4 |
Apache/2.2.26 (Unix) PHP/5.3.28 with Suhosin-Patch mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 | 4 |
Jetty(6.0.x) | 3 |
Apache/2.0.59 (CentOS) | 3 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_jk/1.2.35 | 3 |
Apache/1.3.33 (Unix) mod_ssl/2.8.22 OpenSSL/0.9.7c PHP/4.4.1 | 3 |
Kerio Connect 8.1.3 | 3 |
Allegro-Software-RomPager/2.10 | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.10 | 3 |
nginx_moded_by_kam/1.5.3 | 3 |
PRTG/13.4.7.3532 | 3 |
DefendorWEB Server v2.0 | 3 |
Some server and some version | 3 |
Apache/2.2.8 (Ubuntu) | 3 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 PHP/5.1.6 | 3 |
Apache/2.2.24 | 3 |
Apache/1.3.34 (Unix) PHP/4.4.4 mod_ssl/2.8.16 OpenSSL/0.9.7a | 3 |
Apache/2.4.9 (FreeBSD) PHP/5.5.12 | 3 |
IBM-PROXY-WTE/6.1 | 3 |
Apache/2.4.4 (Unix) mod_jk/1.2.37 | 3 |
JAWS/1.0 Aug 18 2014 | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_jk/1.2.35 | 3 |
Apache/2.4.4 (Win64) PHP/5.4.9 | 3 |
Apache/2.2.25 (Win32) PHP/5.3.5 | 3 |
nginx/0.8.15 | 3 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.23 | 3 |
Apache/2.2.14 (Win32) PHP/5.2.6 | 3 |
Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.8 | 3 |
Apache/2.4.7 (Unix) PHP/5.5.10 | 3 |
Jetty(7.3.1.v20110307) | 3 |
Apache/2.2.17 (Win32) PHP/5.3.8 | 3 |
Apache/2.4.9 (Unix) PHP/5.5.11 | 3 |
MayGion WebServer(www.maygion.com) | 3 |
nginx/0.4.13 | 3 |
EWS-NIC4/13.42 | 3 |
Apache/2.0.59 (Win32) PHP/4.4.4 | 3 |
Icecast 2.3.3-kh10 | 3 |
Apache/2.2.9 (Unix) | 3 |
Apache/2.2.27 (FreeBSD) DAV/2 | 3 |
Apache/2.4.12 (Win64) | 3 |
Alpha Five Application Server/10.0 Build/4369-3712 | 3 |
Apache/1.3.29 (Win32) PHP/4.3.6 | 3 |
WCI/1.1 | 3 |
Apache/2.4.1 (Unix) | 3 |
Apache/2.2.15 (CentOS) mod_perl/2.0.7 Perl/v5.8.9 | 3 |
nhttpd/3.1.8 (yhttpd_core/1.2.0) | 3 |
Apache/2.2.0 (Win32) DAV/2 mod_ssl/2.2.0 OpenSSL/0.9.8a mod_autoindex_color PHP/5.1.1 | 3 |
Apache/2.2.0 (Unix) | 3 |
Apache/2.4.1 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.4.0 Phusion_Passenger/3.0.12 | 3 |
microHttpd/2.0 Echelon Corporation | 3 |
Apache/2.2.25 (Win32) PHP/5.3.21 | 3 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.7l DAV/2 PHP/5.2.5 | 3 |
Apache/2.2.22 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 3 |
Barracuda/NGFirewall | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o mod_auth_pgsql/2.0.3 mod_perl/2.0.5 Perl/v5.14.2 | 3 |
i-Catcher Console/3.1.37 | 3 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 | 3 |
Apache/2.4.10 (FreeBSD) PHP/5.4.34 | 3 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_mono/2.6.3 mod_bwlimited/1.4 | 3 |
Apache/1.3.42 (Unix) PHP/5.2.17 mod_log_bytes/1.2 mod_bwlimited/1.4 mod_auth_passthrough/1.8 FrontPage/5.0.2.2635 mod_ssl/2.8.31 OpenSSL/1.0.0-fips | 3 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.14 with Suhosin-Patch | 3 |
Wireless Network Camera with Pan/Tilt | 3 |
Xavante 2.0 Beta | 3 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_bwlimited/1.4 | 3 |
Loxone 5.49.3.4 | 3 |
nginx/1.1.1 | 3 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8d DAV/2 PHP/5.2.9 | 3 |
squid/3.2.1 | 3 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TH;max-age=300+0;age=4;ecid=41389761752392326,0:1) | 3 |
JC-HTTPD/1.14.18 | 3 |
Apache/2.4.6 (Win64) | 3 |
Apache/2.4.7 (Win32) | 3 |
Linux, HTTP/1.1, DIR-850L Ver 1.10 | 3 |
lighttpd/1.4.35-devel-debian/1.4.35-1-6-ga75f781 | 3 |
lighttpd/1.4.28 atos/5.6.13.4 (server0) | 3 |
Netgenie | 3 |
Apache/2.2.11 (FreeBSD) mod_ssl/2.2.11 OpenSSL/0.9.8e DAV/2 | 3 |
Aeria Games & Entertainment | 3 |
Apache/2.2.3 (Debian) PHP/4.4.4-8+etch6 | 3 |
nginx/1.4.5 + Phusion Passenger 4.0.37 | 3 |
Linux, HTTP/1.1, DIR-868L Ver 1.01 | 3 |
Kerio Connect 8.2.3 | 3 |
Saia PCD2.M5540/1.20.25 | 3 |
nginx/1.6.0 + Phusion Passenger 4.0.41 | 3 |
Jetty/5.1.15 (Linux/2.6.27.45-crl i386 java/1.5.0 | 3 |
Apache/2.2.26 (FreeBSD) PHP/5.4.26 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 3 |
CJServer/1.1 | 3 |
mkz-ads | 3 |
eYouWS | 3 |
Apache/2.4.10 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 3 |
Mono-HTTPAPI/1.0 | 3 |
Caspowa | 3 |
e@sy-Pro v5.1.1 02/05/2011 | 3 |
Jetty(9.1.2.v20140210) | 3 |
Apache/2.2.27 (Unix) mod_jk/1.2.40 | 3 |
Apache/2.2.4 (Unix) PHP/5.2.1 | 3 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1g PHP/5.5.6 | 3 |
Apache/2.2.16 (Debian) mod_fastcgi/2.4.6 PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 3 |
JAWS/1.0 Nov 17 2014 | 3 |
Apache/2.2.19 (Unix) mod_jk/1.2.32 | 3 |
Linux, HTTP/1.1, DIR-868L Ver 1.09 | 3 |
Apache/2.2.26 (Unix) PHP/5.4.24 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 3 |
Apache/2.2.2 (Unix) PHP/5.2.0 | 3 |
Newtin | 3 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8y | 3 |
PRTG/12.2.1.1767 | 3 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e PHP/5.4.22 mod_perl/2.0.8-dev Perl/v5.16.3 | 3 |
RapidLogic/1.1 | 3 |
JAWS/1.0 Oct 11 2014 | 3 |
nhttpd/3.4.0 (yhttpd_core/1.3.2) | 3 |
JCLy/15.1a | 3 |
Apache/1.3.33 (Unix) PHP/4.4.0 | 3 |
Apache/2.4.10 (Win32) | 3 |
Apache/2.4.6 (Ubuntu) PHP/5.5.3-1ubuntu2.6 OpenSSL/1.0.1e | 3 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 3 |
ICEFLOW-IOS-HTTPD1.0 | 3 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.10 with Suhosin-Patch | 3 |
Apache/2.2.26 (Unix) PHP/5.3.28 with Suhosin-Patch mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 3 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 3 |
Apache/2.2.15 (Novell) | 3 |
Apache/2.2.26 (Win32) PHP/5.3.27 | 3 |
thttpd/2.19-MX Dec 8 2009 | 3 |
JAWS/1.0 Dec 8 2014 | 3 |
Zope/(Zope 2.10.13-final, python 2.4.6, linux2) ZServer/1.1 Plone/3.3.6 | 3 |
Sphericall WebServer | 3 |
Apache/2.0.59 (Win32) PHP/5.2.17 | 3 |
Apache/2.2.14 (Win32) PHP/5.3.10 | 3 |
JCLy/1.0 | 3 |
Apache/2.0.63 (Win32) | 3 |
EG-Web | 3 |
Resin/4.0.41 | 3 |
FlyNOS_webserver/1.33otp | 3 |
nginx/0.7.69 | 3 |
Etherpad 8c1868f (http://etherpad.org) | 3 |
TornadoServer/3.2 | 3 |
nginx/1.6.2 + Phusion Passenger 4.0.57 | 3 |
Abyss/2.9.3.2-X1-Win32 AbyssLib/2.9.3.2 | 3 |
Apache/2.2.22 (Unix) PHP/5.3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8r DAV/2 | 3 |
nginx/1.4.6 + Phusion Passenger 4.0.38 | 3 |
Apache/2.2.25 (Debian) | 3 |
Apache/2.2.25 (Win32) PHP/5.4.17 | 3 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 | 3 |
Linux, HTTP/1.1, DIR-600 Ver 2.17 | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0j DAV/2 PHP/5.2.17 mod_fcgid/2.3.6 | 3 |
lwIP/1.3.2 (http://www.sics.se/~adam/lwip/) | 3 |
Loxone 4.1.11.21 | 3 |
Apache/1.3.37 (Unix) | 3 |
httpd/1.00 | 3 |
Apache/2.2.17 (CentOS) | 3 |
Apache/2.0.63 (Win32) PHP/5.2.10 | 3 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1i | 3 |
worldcdn | 3 |
Apache/2.2.22 (Win32) PHP/5.3.25 | 3 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1e PHP/5.3.28 | 3 |
Apache/2.2.22 (Win32) PHP/5.3.23 | 3 |
Apache/2.2.22 (Win32) DAV/2 PHP/5.2.9 | 3 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TH;max-age=300+0;age=28;ecid=33440722100675186,0:1) | 3 |
Apache/2.2.11 (FreeBSD) mod_ssl/2.2.11 OpenSSL/0.9.8e PHP/5.2.9 with Suhosin-Patch | 3 |
Apache/2.2.17 (Win32) PHP/5.2.11 | 3 |
Apache/2.4.9 (FreeBSD) PHP/5.5.14 | 3 |
nexg_httpd | 3 |
Apache, nginx/1.2.6 | 3 |
Jana-Server/2.6.0.225 | 3 |
Apache/1.3.39 (Unix) | 3 |
Apache/2.4.7 (Unix) | 3 |
JAWS/1.0 Sep 23 2013 | 3 |
WebtoB/4.1 | 3 |
lighttpd/1.4.28-devel-7924 | 3 |
AVR-NET-IO | 3 |
Cassini/1.1.0.0 | 3 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7e | 3 |
ATS/3.2.5 | 3 |
Apache/2.4.6 (Win32) PHP/5.5.3 | 3 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.17 | 3 |
lighttpd/1.4.29-devel-104 | 3 |
Apache/2.2.21 (Unix) PHP/5.3.6 | 3 |
lighttpd/1.4.28-devel-6965 | 3 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.5.19 mod_perl/2.0.8-dev Perl/v5.16.3 | 3 |
Jetty(7.5.4.v20111024) | 3 |
DnionOS/1.2.1.2 | 3 |
PRTG/13.2.3.2235 | 3 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8za | 3 |
Oversee Turing v1.0.0 | 3 |
Apache/2.2.17 (EL) | 3 |
Apache/2.2.14 (Win32) PHP/5.2.12 | 3 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.2.14 | 3 |
Jetty/5.1.x (Linux/2.4.24-NMX-TAURUS-1.4.8 ppc java/1.5.0 | 3 |
Tieline | 3 |
Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e mod_autoindex_color PHP/5.2.2 | 3 |
Cherokee/1.2.104 (Gentoo Linux) | 3 |
Apache/2.2.22 (Win32) mod_jk/1.2.28 | 3 |
Microsoft/IIS 7.0 | 3 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.0c | 3 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 3 |
Apache/1.3.42 (Unix) mod_throttle/3.1.2 PHP/4.4.8 | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 3 |
vid=easy | 3 |
nginx/1.3.10 | 3 |
Alpha Anywhere Application Server/12.0 Build/1856-4237 | 3 |
RCTTools (SecureSOHO Web configuration Tools) v2 | 3 |
lighttpd/2.0.0 | 3 |
EZproxy | 3 |
WowzaStreamingEngine/4.1.1 | 3 |
Apache/2.2.26 (Win32) mod_ssl/2.2.26 OpenSSL/1.0.1e | 3 |
Apache/2.2.22 (FreeBSD) PHP/5.3.10 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 3 |
EWS-NIC4/11.68 | 3 |
Apache/2.2.8 (Unix) PHP/5.2.9 | 3 |
Apache/2.2.22 (FreeBSD) mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8y DAV/2 | 3 |
Apache/2.2.8 (Unix) PHP/5.2.5 | 3 |
Apache/2.2.15 (Unix) DAV/2 | 3 |
Perlbal | 3 |
Niagara Web Server/3.5.406 | 3 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.6 | 3 |
Apache/2.4.7 (Ubuntu) OpenSSL/1.0.1f | 3 |
Elemental Delta 1.0.3 | 3 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.23 | 3 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/0.9.8q PHP/5.3.10 with Suhosin-Patch | 3 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1f PHP/5.4.25 mod_perl/2.0.8-dev Perl/v5.16.3 | 3 |
Apache/1.3.41 (Unix) Resin/3.0.27 mod_ssl/2.8.31 OpenSSL/0.9.8y | 3 |
verthosting.com/1337 | 3 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips PHP/5.2.17 | 3 |
TCAdmin-2.0 | 3 |
sffe | 3 |
Jetty(9.2.1.v20140609) | 3 |
Apache/2.4.6 (CentOS) PHP/5.4.16 SVN/1.7.14 | 3 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_qos/10.10 | 3 |
David-WebBox/12.00a (0856) WIN32 | 3 |
Jaguar Server Version 5.5.0 | 3 |
Jetty/5.1.x (Linux/3.4.11-2.16-desktop amd64 java/1.7.0_10 | 3 |
Nimbu.io | 3 |
Apache/2.4.10 (Fedora) PHP/5.5.15 | 3 |
Restlet-Framework/2.0.15 | 3 |
Apache/2.0.59 | 3 |
Apache/2.2.26 (FreeBSD) PHP/5.4.25 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 3 |
Footprint Distributor V4.10 | 3 |
QWS | 3 |
Apache/2.4.10 (Unix) PHP/5.6.2 | 3 |
Apache/2.0.58 (Unix) DAV/2 | 3 |
Apache/2.2.9 (APMServ) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 | 3 |
Apache/2.2.19 (Win32) mod_jk/1.2.31 | 3 |
Boa/0.93.15 (with Intersil Extensions) | 3 |
Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9 | 3 |
Apache/2.4.4 (Win64) | 3 |
nginx/1.3.5 | 3 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/0.9.8y DAV/2 | 3 |
nginx/1.4.4 + Phusion Passenger 4.0.29 | 3 |
Apache/2.2.22 (Win32) PHP/5.4.5 | 3 |
Oracle HTTP Server Powered by Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.24 | 3 |
JC-HTTPD/1.14.20 | 3 |
iE-WebArch | 3 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.8c FrontPage/5.0.2.2634 PHP/5.2.0 | 3 |
TwistedWeb/14.0.0 | 3 |
IBM_HTTP_Server/6.1 Apache/2.0.47 (Unix) | 3 |
SAP NetWeaver Application Server / ABAP 731 | 3 |
Kerio Connect 8.4.1 | 3 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.2.17 | 3 |
David-WebBox/12.00a (0880) WIN32 | 3 |
Apache/2.2.25 (Win32) mod_jk/1.2.37 | 3 |
DCS-6620 | 3 |
Apache/2.2.12 (Unix) mod_ssl/2.2.12 OpenSSL/0.9.8c DAV/2 PHP/5.2.17 Phusion_Passenger/3.0.9 SVN/1.7.1 | 3 |
Apache/1.3.41 (Unix) PHP/4.4.9 mod_ssl/2.8.31 OpenSSL/0.9.8g | 3 |
Apache/2.2.15 (Unix) PHP/5.3.6 mod_perl/2.0.3 Perl/v5.8.8 | 3 |
Apache/1.3.37 (Unix) PHP/5.2.11 mod_ssl/2.8.28 OpenSSL/0.9.7e-p1 | 3 |
Microsoft-IIS/9.0 | 3 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 mod_jk/1.2.37 | 3 |
Linux, HTTP/1.1, DIR-300 Ver 2.12 | 3 |
nginx/1.4.3 + Phusion Passenger 4.0.24 | 3 |
Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_ssl/2.8.7 OpenSSL/0.9.6b DAV/1.0.3 PHP/4.1.2 mod_perl/1.26 | 3 |
Jetty/3.1.8 (Windows 2000 5.0 x86) | 3 |
Hughes Technologies Embedded Server | 3 |
abc/222 | 3 |
Embedthis-Appweb/3.4.2 | 3 |
Dimofinf Hosting | 3 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.4.31 mod_perl/2.0.8-dev Perl/v5.16.3 | 3 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8o | 3 |
inets/5.0.15 | 3 |
Saia PCD3.M2330A4T5/1.16.52 | 3 |
TornadoServer/3.1.1 | 3 |
Apache/2.2.22 (Win32) PHP/5.3.5 | 3 |
Apache/2.2.25 (Win32) PHP/5.4.21 | 3 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.7 | 3 |
Apache/2.4.9 (Unix) mod_jk/1.2.40 | 3 |
Apache/2.2.3 (Ubuntu) PHP/5.2.1 | 3 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u9 | 3 |
Apache/2.0.55 (Ubuntu) PHP/5.1.2 mod_ssl/2.0.55 OpenSSL/0.9.8a mod_perl/2.0.2 Perl/v5.8.7 | 3 |
nginx/1.6.2 + Phusion Passenger 4.0.59 | 3 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8o PHP/5.2.17 with Suhosin-Patch mod_fastcgi/2.4.6 | 3 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y mod_cluster/1.2.6.Final | 3 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.4 with Suhosin-Patch | 3 |
EFRWebd | 3 |
TRMB/1.2 | 3 |
Jetty(6.1.9) | 3 |
Embedded Web Server Version 1.3.0 | 3 |
Apache/2.2.24 (FreeBSD) PHP/5.4.27 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 3 |
LANCOM 1821n Wireless 8.62.0086 / 08.11.2012 | 3 |
Resin/3.0.25 | 3 |
Jetty(7.0.0.v20091005) | 3 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 3 |
Apache/2.2.3 (Win32) | 3 |
Winstone Servlet Engine v0.9.10 | 3 |
JAWS/1.0 Sep 5 2013 | 3 |
Apache/2.0.54 (Unix) PHP/5.4.17 | 3 |
Linux, HTTP/1.1, DIR-860L Ver 1.07 | 3 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.33 | 3 |
BarracudaServer.com (Posix) | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 mod_perl/2.0.6 Perl/v5.8.8 | 3 |
Apache/2.4.2 (Unix) OpenSSL/1.0.1c PHP/5.4.4 | 3 |
Apache/2.2.22 (Debian) mod_ssl/2.2.22 OpenSSL/1.0.1e mod_wsgi/3.3 Python/2.7.3 | 3 |
Apache/2.2.19 (Unix) DAV/2 | 3 |
Apache/2.4.7 (Unix) OpenSSL/0.9.8j-fips PHP/5.5.0 mod_jk/1.2.37 | 3 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1f PHP/5.5.9 mod_perl/2.0.8-dev Perl/v5.16.3 | 3 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8x | 3 |
lwIP/1.2.0 (http://www.sics.se/~adam/lwip/) | 3 |
Apache/2.4.10 (Unix) mod_jk/1.2.40 | 3 |
Apache/2.2.11 (Unix) DAV/2 mod_fastcgi/2.4.6 | 3 |
Apache/2.2.25 (FreeBSD) mod_fastcgi/2.4.6 PHP/5.4.24 mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 | 3 |
Intellex-Http Server 1.0 | 3 |
TornadoServer/3.2.1 | 3 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.30 mod_ssl/2.2.26 OpenSSL/0.9.8zc | 3 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 | 3 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_mono/2.6.3 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 3 |
Apache/2.2.24 (Unix) PHP/5.3.25 | 3 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.3 with Suhosin-Patch | 3 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.0a mod_python/3.3.1-ts Python/2.5.4 | 3 |
Jetty/5.1.x (Linux/3.11.10-11-default amd64 java/1.7.0_55 | 3 |
Network Camera with Pan/Tilt | 3 |
Linux, HTTP/1.1, WBR-2200 Ver WBR2200.R1.07.TR069.20130501 | 3 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.0d | 3 |
D-Link Internet Camera | 3 |
Apache/2.2.26 (Unix) mod_wsgi/3.3 Python/2.7.5 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 PHP/5.4.30 | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.15 | 3 |
Apache/2.2.9 (Debian) mod_ssl/2.2.9 OpenSSL/0.9.8g mod_jk/1.2.26 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 3 |
Apache/2.4.4 (Win64) OpenSSL/1.0.1d PHP/5.4.12 | 3 |
Apache/2.2.22 (Unix) DAV/2 mod_ssl/2.2.22 OpenSSL/0.9.8r | 3 |
Mono.WebServer2/0.2.0.0 Unix | 3 |
Apache/1.3.29 (Unix) PHP/4.3.4 | 3 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.13 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 3 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9 | 3 |
4D_v11_SQL/11.9.0 | 3 |
IQinVision Embedded 1.0 | 3 |
Web Switch | 3 |
UnifiedServer:US1 US1 | 3 |
Camera Web Server | 3 |
Unknown/0.0 UPnP/1.0 Web Server | 3 |
ProdysWebServer/0.1b | 3 |
rchttpd/1.0 | 3 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.13 | 3 |
Apache/2.2.11 (Win32) PHP/5.2.9-2 mod_aspdotnet/2.2 | 3 |
Apache/2.4.7 (Win64) mod_fcgid/2.3.9 | 3 |
Apache/2.2.15 (CentOS) PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 3 |
IS2 Web Server 1.78 | 3 |
httpsrv | 3 |
Apache/2.0.58 (Win32) PHP/5.1.4 | 3 |
MiniServ/1.690 | 3 |
nginxweb/1.7.4 | 3 |
aidex/1.3 (Win32) | 3 |
H3C-Miniware-Webs | 3 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.9 | 3 |
Apache/2.2.22 (Win64) mod_ssl/2.2.22 OpenSSL/1.0.1c PHP/5.3.13 | 3 |
David-WebBox/11.00a (0636) | 3 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8k PHP/5.2.12 | 3 |
Apache/2.2.16 (Debian) mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 3 |
gunicorn/0.17.4 | 3 |
Phoenix-Contact/1.02 (powered by SpiderControl TM) | 3 |
Apache/1.3.41 (Unix) PHP/5.2.17 | 3 |
Zku | 3 |
Zope/(2.13.20, python 2.7.3, linux2) ZServer/1.1 | 3 |
nginx/1.6.3 | 3 |
Apache/2.4.3 (Unix) mod_jk/1.2.37 | 3 |
IS2 Web Server 1.84 | 3 |
Apache/2.4.4 (Win32) | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.10 | 3 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k PHP/5.2.13 | 3 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.26 | 3 |
thttpd/2.23beta1-titan-20031028 | 3 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/1.0.0e DAV/2 mod_jk2/2.0.4 | 3 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips DAV/2 mod_bwlimited/1.4 PHP/5.2.9 | 3 |
lighttpd/1.4.28-devel-7238 | 3 |
Netbiscuits Backend Server | 3 |
Zscaler/4.1 | 3 |
ApacheBooster/1.9 | 3 |
Apache/2.2.3 (Win32) PHP/5.3.1 | 3 |
Apache/2.2.4 (Win32) mod_ssl/2.2.4 OpenSSL/0.9.8k PHP/5.3.3 | 3 |
Apache/1.3.34 (Unix) mod_perl/1.27 mod_ssl/2.8.25 OpenSSL/0.9.7d | 3 |
Apache/1.3.37 (Unix) mod_ssl/2.8.28 OpenSSL/0.9.8e | 3 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.5 | 3 |
ngx_openresty/1.2.6.6 | 3 |
Apache/2.2.8 (Debian) PHP/5.2.5-3 with Suhosin-Patch proxy_html/3.0.0 mod_ssl/2.2.8 OpenSSL/0.9.8g | 3 |
Apache/2.2.11 (Unix) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8k PHP/5.2.9 mod_apreq2-20051231/2.6.0 mod_perl/2.0.4 Perl/v5.10.0 | 3 |
Apache/2.2.27 (FreeBSD) PHP/5.5.13 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 3 |
squid/3.3.12 | 3 |
DWS | 3 |
Apache/2.4.6 (Unix) PHP/5.5.2 | 3 |
Apache/1.3.41 (Unix) mod_perl/1.30 | 3 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e PHP/5.3.29 | 3 |
WebRGC/1.0 (Sicep) | 3 |
Apache/2.2.27 (FreeBSD) PHP/5.4.27 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 3 |
·ÓÉÆ÷ | 3 |
Apache/2.2.14 (Win32) DAV/2 mod_autoindex_color PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 3 |
e@sy-pro v6.2.1 10/12/2012 | 3 |
BarracudaHTTP 2.0 | 3 |
Linux, HTTP/1.1, DIR-865L Ver 1.06 | 3 |
Wing FTP Server() | 3 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.15 with Suhosin-Patch | 3 |
KM_HTTP-Server/0.1.0 | 3 |
Meditech Web Server | 3 |
Apache/2.4.1 (Unix) OpenSSL/0.9.8e-fips-rhel5 | 3 |
Allnet/1.1 | 3 |
TFE | 3 |
Apache/2.2.21 (Unix) DAV/2 PHP/5.3.8 | 3 |
Linux, HTTP/1.1, DIR-300 Ver 2.15 | 3 |
Apache/2.2.15 (ClearOS Core) | 3 |
Apache/2.2.26 (Win32) PHP/5.3.10 | 3 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8l DAV/2 | 3 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.25 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 3 |
Jetty/4.2.x (Linux/2.6.10 arm java/1.3) | 3 |
Viprinet/3.90-SBB | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips PHP/5.2.17 | 3 |
NWS_DAA_FRONT | 3 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.3.28 | 3 |
Vivotek Network Camera | 3 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/1.0.0e mod_jk/1.2.32 | 3 |
TCAdmin-2.0 Microsoft-HTTPAPI/2.0 | 3 |
ANTIDDOS_LLC | 3 |
Apache/2.4.4 (Debian) | 3 |
FilterServer | 3 |
Jetty/4.2.x (Linux/2.6.11.12 i686 java/PERC(R) VM 4.2.0431 Platform: [Linux]) | 3 |
lighttpd/1.4.28 atos/5.6.22 (server0) | 3 |
gunicorn/19.1.1 | 3 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 3 |
Dart WebServer Tool/1.0 | 3 |
gen5th/1.74.01 | 3 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8m | 3 |
HeiTel GmbH Web Server [V1.29/V1.15/V1.8] | 3 |
Jetty(6.1.5) | 3 |
Apache/2.2.26 (Unix) PHP/5.4.30 mod_wsgi/3.3 Python/2.7.5 mod_ssl/2.2.26 OpenSSL/0.9.8zc DAV/2 | 3 |
Apache/2.2.11 (Win32) PHP/5.2.10 | 3 |
Apache/2.2.4 (Unix) DAV/2 | 3 |
Apache/2.4.7 (Ubuntu) mod_jk/1.2.37 OpenSSL/1.0.1f | 3 |
PrHTTPD Ver1.0 | 3 |
Serv-U/15.1.1.108 | 3 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 Phusion_Passenger/4.0.53 | 3 |
Apache/1.3.41 (Unix) PHP/4.4.9 mod_perl/1.31 | 3 |
Apache/2.2.22 (FreeBSD) PHP/5.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8x DAV/2 | 3 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7d PHP/5.2.6 | 3 |
IS2 Web Server 1.36 | 3 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.5 | 3 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny2 with Suhosin-Patch | 3 |
Apache/2.2.14 (Win32) PHP/5.2.11 | 3 |
Apache/2.4.6 (Red Hat) OpenSSL/1.0.1e-fips | 3 |
ENIServer | 3 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8r DAV/2 | 3 |
– | 3 |
Apache/2.4.6 (CentOS) mod_jk/1.2.40 | 3 |
Apache/2.2.17 (Unix) mod_jk/1.2.31 | 3 |
Apache/2.4.9 (Win64) PHP/5.5.13 | 3 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.6 | 3 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_perl/2.0.6 Perl/v5.10.1 | 3 |
ZyXEL-RomPager/3.02 | 3 |
Apache/2.2.22 (Win32) PHP/5.3.17 | 3 |
thttpd/2.19-MX Jan 9 2008 | 3 |
Apache/2.2.26 (Unix) mod_fastcgi/2.4.6 mod_wsgi/3.4 Python/2.7.6 PHP/5.5.10 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 mod_perl/2.0.8 Perl/v5.18.2 | 3 |
Quick ‘n Easy Web Server | 3 |
e@sy-pro v7.0.5 22/07/2014 | 3 |
CANON HTTP Server Ver2.21 | 3 |
Linux, HTTP/1.1, DSL-2890AL Ver AU_1.02.04 | 3 |
Membrane Service Proxy 4.0.16-DIL. See http://membrane-soa.org | 3 |
Apache/2.2.15 (Unix) | 2 |
Edgeware Reflex/0.1 | 2 |
Apache/2.2.21 (FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.8y DAV/2 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips DAV/2 PHP/5.2.17 | 2 |
Apache/2.4.6 (CentOS) PHP/5.4.16 mod_wsgi/3.4 Python/2.7.5 | 2 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.14 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.6(2007-09-24) mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 2 |
Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-16 | 2 |
lighttpd/1.4.28-devel-2422M | 2 |
WebSphere Application Server/8.0 | 2 |
Apache/2.2.8 (Unix) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8e PHP/5.2.5 mod_apreq2-20051231/2.6.0 mod_perl/2.0.2 Perl/v5.10.0 | 2 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch | 2 |
Apache/2.2.21 (Red Hat) | 2 |
lighttpd/1.4.28-devel-8156 | 2 |
Jetty/5.1.4 (Windows XP/5.1 x86 java/1.5.0_22 | 2 |
Apache/2.4.3 (Unix) OpenSSL/1.0.1g PHP/5.4.7 | 2 |
Sentinel | 2 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 2 |
Virata-EmWeb/R6_2_0 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_mono/2.6.3 mod_bwlimited/1.4 | 2 |
Linux, HTTP/1.1, DIR-300 Ver 2.14 | 2 |
Linux, HTTP/1.1, DAP-1522 Ver 2.02 | 2 |
LANCOM 1781EF+ 8.82.0100 / 28.08.2013 | 2 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips | 2 |
Apache/2.4.9 (Unix) OpenSSL/0.9.8zc | 2 |
Apache/2.2.14 (Mandriva Linux/PREFORK-1.2mdv2010.0) | 2 |
EWS-NIC5/99.00 | 2 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8r | 2 |
Apache/2.2.22 (FreeBSD) PHP/5.4.7 mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 2 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/1.0.0c mod_fcgid/2.3.6 | 2 |
PowerStudio v3.2 | 2 |
Apache/2.4.3 (Win64) mod_fcgid/2.3.7 OpenSSL/1.0.1c | 2 |
megadrom@rssagent | 2 |
Apache/2.4.10 (FreeBSD) PHP/5.5.19 | 2 |
Apache/2.2.27 (Unix) PHP/5.5.11 | 2 |
Apache/2.4.9 (Win32) OpenSSL/0.9.8y mod_fcgid/2.3.9 | 2 |
noccdn | 2 |
TornadoServer/3.0.2 | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips PHP/5.2.10 | 2 |
Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.7j | 2 |
CubeCoders-McMyAdmin/IAWS | 2 |
Apache/2.2.17 (Win32) PHP/5.2.8 | 2 |
Kerio Connect 7.1.3 | 2 |
Apache/TTservers mod_fastcgi/2.4.6 | 2 |
David-WebBox/12.00a (0888) WIN32 | 2 |
axhttpd/1.4.9 | 2 |
Apache/2.4.6 (Unix) mod_fcgid/2.3.10-dev OpenSSL/1.0.1e | 2 |
Apache/2.2.8 (Ubuntu) mod_python/3.3.1 Python/2.5.2 PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 2 |
Apache/2.2.21 (Win32) mod_jk/1.2.32 | 2 |
XOS 22nov2004 | 2 |
Apache/2.4.10 (Fedora) mpm-itk/2.4.7-02 PHP/5.4.16 | 2 |
Anonymous-Web-Server | 2 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8o PHP/5.3.21 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 2 |
Apache Tomcat/4.0.6 (HTTP/1.1 Connector) | 2 |
Apache/2.2.11 (Unix) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.8 mod_apreq2-20051231/2.6.0 mod_perl/2.0.4 Perl/v5.10.0 | 2 |
nginx/0.5.35 | 2 |
Apache/2.2.29 (Unix) DAV/2 PHP/5.3.29 mod_jk/1.2.40 | 2 |
CarelDataServer/2.3.0.0 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.4.15 | 2 |
lighttpd/1.4.17 | 2 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 | 2 |
Alexandrie551 (by GBConcept) | 2 |
boreas | 2 |
Apache/2.4.12 (Unix) | 2 |
Apache/2.0.54 (Win32) | 2 |
Apache/2.2.15 (CentOS) PHP/5.2.17 | 2 |
lighttpd/1.4.32-devel-zoro_20140519_V10c | 2 |
Apache/2.0.49 (Unix) DAV/2 mod_jk/1.2.19 | 2 |
nginx/0.8.48 | 2 |
Apache/2.2.4 (Win32) mod_ssl/2.2.4 OpenSSL/0.9.8k PHP/5.2.12 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.13 | 2 |
Apache/2.2.17 (FreeBSD) mod_ssl/2.2.17 OpenSSL/0.9.8q DAV/2 PHP/5.3.5 with Suhosin-Patch | 2 |
Icecast 2.4.1 | 2 |
Apache/2.0.53 (Win32) mod_ssl/2.0.53 OpenSSL/0.9.7e PHP/5.0.3 | 2 |
nginx/1.6.1 + Phusion Passenger 4.0.52 | 2 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TG;max-age=300+0;age=0;ecid=71996772586483895,0:1) | 2 |
X | 2 |
CherryPy/3.2.0 | 2 |
Apache/2.4.2 (Unix) mod_jk/1.2.37 | 2 |
nginx + Phusion Passenger 4.0.53 | 2 |
Undisclosed | 2 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_mono/2.6.3 mod_bwlimited/1.4 | 2 |
Apache/2.2.9 (Debian) DAV/2 | 2 |
Apache/2.2.11 (Mandriva Linux/PREFORK-10mdv2009.1) | 2 |
Apache/2.2.13 (Win32) mod_ssl/2.2.13 OpenSSL/0.9.8k PHP/5.2.13 | 2 |
Apache/2.2.14 (Win32) JRun/4.0 | 2 |
Apache/2.2.11 (Win32) PHP/5.2.9-1 | 2 |
thin 0.7.1 codename Fancy Pants | 2 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.4.27 | 2 |
Apache/2.2.22 (Debian) mod_fastcgi/mod_fastcgi-SNAP-0910052141 | 2 |
Serv-U/14.0.0.6 | 2 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.16 | 2 |
CFS 0623 | 2 |
Apache/2.2.22 (Win32) PHP/5.2.10 | 2 |
TAURON server rel 1.03 | 2 |
Apache/2.2.22 (Win32) DAV/2 | 2 |
Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.6 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.8g | 2 |
public.app36.aus | 2 |
Infoclimat | 2 |
Serv-U/10.5.0.11 | 2 |
Apache/2.2.17 (Win32) PHP/5.2.14 | 2 |
WWW-KODEKS/5.3 | 2 |
XSITE | 2 |
Apache/1.3.33 (Debian GNU/Linux) PHP/4.4.8 mod_ssl/2.8.22 OpenSSL/0.9.7e DAV/1.0.3 | 2 |
nginx/1.4.4 + Phusion Passenger 4.0.27 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_wsgi/3.3 Python/2.6.6 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 2 |
apache | 2 |
Apache/2.2.23 (Unix) PHP/5.3.28 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 2 |
JAWS/1.0 Sep 24 2014 | 2 |
IceWarp/10.3.5 | 2 |
Apache/2.2.27 (FreeBSD) PHP/5.4.30 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.17 | 2 |
HP-ChaiServer/3.0 | 2 |
Apache/2.2.22 (Win32) mod_jk/1.2.31 | 2 |
nginx/1.3.0 | 2 |
Apache/2.2.22 (FreeBSD) PHP/5.3.17 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 2 |
Apache/2.0.63 (Win32) PHP/4.4.9 | 2 |
Apache/2.0.61 (Unix) mod_ssl/2.0.61 pwIDER6b mod_jk/1.2.12 PHP/5.2.4 | 2 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch15 | 2 |
Apache/2.2.6 (Unix) PHP5/5.2.2 with Suhosin-Patch | 2 |
WMI Http Server | 2 |
Apache/2.2.22 (FreeBSD) DAV/2 PHP/5.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8q | 2 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.10 with Suhosin-Patch | 2 |
Jetty/3.1.8 (Windows 7 6.1 x86) | 2 |
Hiawatha v9.6 | 2 |
Boa/0.94.7 | 2 |
Apache/2.2.8 (Ubuntu) mod_jk/1.2.25 PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch | 2 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.3.28 mod_ssl/2.2.26 OpenSSL/0.9.8za | 2 |
Apache/2.2.3 (Debian) mod_jk/1.2.18 mod_wsgi/2.3 Python/2.4.4 | 2 |
Apache/2.2.15 (Debian) mod_scgi/1.13 | 2 |
Apache/2.2.3 (Win32) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8d mod_autoindex_color PHP/5.2.0 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips DAV/2 mod_bwlimited/1.4 PHP/5.3.26 | 2 |
WSGIServer/0.1 Python/2.7.6 | 2 |
Apache/2.4.10 (Fedora) PHP/5.6.5 | 2 |
Apache/1.3.27 (Unix) DAV/1.0.3 PHP/4.2.2 mod_perl/1.27 | 2 |
KOTP/1.0 | 2 |
squid/3.0.STABLE10 | 2 |
e@sy-pro v6.3.1 24/06/2013 | 2 |
Apache/2.2.22 (Win32) mod_jk/1.2.32 | 2 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u12 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 2 |
Virata-EmWeb/R6_0_3 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.28 mod_perl/2.0.6 Perl/v5.10.1 | 2 |
EHTTP/1.1 | 2 |
Apache/1.3.42 (Unix) PHP/5.3.29 | 2 |
Apache/2.2.22 (Win32) PHP/5.2.17 mod_ssl/2.2.22 OpenSSL/0.9.8t | 2 |
Apache/2.2.4 (Ubuntu) PHP/5.2.3-1ubuntu6.5 | 2 |
Apache/2.2.22 (Mandriva Linux/PREFORK-0.1mdv2010.2) | 2 |
Apache/2.2.14 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.22 | 2 |
Apache/2.4.4 (Win32) PHP/5.5.0 | 2 |
AlleHttpd | 2 |
Apache/2.2.24 (FreeBSD) DAV/2 PHP/5.4.13 SVN/1.7.8 mod_ssl/2.2.24 OpenSSL/0.9.8x | 2 |
Apache/2.4.6 (Win32) PHP/5.5.4 | 2 |
ATS/4.1.0 | 2 |
Apache/1.3.37 (Unix) mod_ssl/2.8.28 OpenSSL/0.9.8b PHP/4.4.4 | 2 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o | 2 |
URLManager/1.1 (Linux) | 2 |
LeadBoxer Server | 2 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.37 | 2 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze8 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 2 |
IIS 6.0 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 PHP/5.5.3 | 2 |
Kerio MailServer 6.5.2 | 2 |
username.sasazushi.wixpress.com | 2 |
lighttpd/1.4.28-devel-6887 | 2 |
Apache/2.0.58 (Win32) PHP/4.4.2 | 2 |
EZcontrol | 2 |
Apache/2.2.15 (Unix) DAV/2 PHP/5.2.13 | 2 |
Apache/2.4.9 (FreeBSD) OpenSSL/1.0.1h mod_fastcgi/mod_fastcgi-SNAP-0910052141 | 2 |
Apache/2.2.8 (Ubuntu) mod_jk/1.2.25 mod_ssl/2.2.8 OpenSSL/0.9.8g | 2 |
Embedded-Server/1.0 | 2 |
OpenBSD httpd | 2 |
Server: Jetty(6.0.x) | 2 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 2 |
Apache/2.2.23 (FreeBSD) PHP/5.4.7 mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 2 |
Apache/1.3.17 (Win32) PHP/4.4.0 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips DAV/2 PHP/5.3.27 | 2 |
IceWarp/9.4.2 | 2 |
Play! Framework;1.2.7;prod | 2 |
node1 | 2 |
Apache/2.2.26 (FreeBSD) DAV/2 PHP/5.4.24 mod_ssl/2.2.26 OpenSSL/0.9.8q | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_jk/1.2.35 mod_fcgid/2.3.6 | 2 |
TwistedWeb/11.1.0 | 2 |
Apache/2.2.26 (Unix) PHP/5.4.30 mod_wsgi/3.3 Python/2.7.5 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8zc DAV/2 | 2 |
lighttpd/1.4.24-devel-7345:9323M | 2 |
Apache mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 2 |
Xb2.NET/3.2.07.331 | 2 |
Serv-U/12.1.0.8 | 2 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch | 2 |
Fatek Webserver/1.0 | 2 |
David-WebBox/12.00a (0815) WIN32 | 2 |
RENAE35-01 | 2 |
Apache/2.0.54 (Unix) DAV/2 | 2 |
Apache/2.4.6 (Fedora) PHP/5.5.7 | 2 |
Diwanee Server1 | 2 |
Apache/2.4.7 (Unix) PHP/5.3.27 mod_jk/1.2.37 | 2 |
Apache/2.2.15 (Mandriva Linux/PREFORK-3.1mdv2010.1) | 2 |
Zope/(Zope 2.7.7-final, python 2.4.1, linux2) ZServer/1.1 Plone/2.0.5 | 2 |
IS2 Web Server 1.93 | 2 |
fexsrv | 2 |
PRTG/14.3.11.2661 | 2 |
Apache/2.4.7 (Win64) PHP/5.5.9 | 2 |
Linux/2.x.x, UPnP/1.0, pvConnect UPnP SDK/1.0, Twonky UPnP SDK/1.1 | 2 |
nginx/1.1.17 | 2 |
Apache/2.2.15 (CentOS) DAV/2 mod_jk/1.2.37 mod_python/3.3.1 Python/2.6.6 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 2 |
Apache/2.4.2 (Ubuntu) | 2 |
NGXMP/14.0 | 2 |
Milestone XProtect HTTP Server/1.2 | 2 |
Jetty(7.6.14.v20131031) | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips PHP/5.2.17 | 2 |
LightTPD/1.4.35-1-IPv6 (Win32) | 2 |
Apache/2.2.6 (Win32) PHP/5.2.10 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 2 |
Resin/4.0.40 | 2 |
Apache/2.4.7 (Unix) PHP/5.4.31 OpenSSL/1.0.1e | 2 |
Apache/2.2.24 (Unix) DAV/2 | 2 |
Apache/2.2.11 (Win32) mod_jk/1.2.28 | 2 |
Apache/2.4.6 (Ubuntu) PHP/5.5.3-1ubuntu2.1 | 2 |
Linux, HTTP/1.1, DHP-W310AV Ver 1.04 | 2 |
Kerio Connect 8.0.1 | 2 |
Apache/2.2.16 (Debian) mod_jk/1.2.30 PHP/5.3.3-7+squeeze17 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 2 |
shiva/0.9.20 | 2 |
Alpha Anywhere Application Server Application Server/12.0 Build/2446-4365 | 2 |
SAP J2EE Engine/7.02 | 2 |
Apache/2.2.22 (Unix) mod_jk/1.2.35 | 2 |
Apache/2.2.11 (FreeBSD) mod_ssl/2.2.11 OpenSSL/0.9.8e DAV/2 PHP/5.2.9 with Suhosin-Patch | 2 |
thttpd/2.19-MX Feb 21 2014 | 2 |
nginx + Phusion Passenger 4.0.44 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 FrontPage/5.0.2.2635 mod_bwlimited/1.4 | 2 |
storage.puzz.me | 2 |
Apache/2.4.6 (Unix) OpenSSL/0.9.8e-fips-rhel5 | 2 |
GlassFish v3 | 2 |
Apache/2.0.54 (Win32) PHP/5.0.4 | 2 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (H;max-age=300+0;age=8;ecid=68787873623495268,0:1) | 2 |
Sun Java System Application Server 9.1_02 | 2 |
CarelDataServer/2.2.0.0 | 2 |
Twisted/8.2.0 TwistedWeb/8.2.0 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1j mod_wsgi/4.2.5 Python/2.7.6 | 2 |
Microsoft-IIS/7.5, Microsoft-IIS/6.0 | 2 |
Apache/2.0.52 (Win32) | 2 |
cat factory 1.0 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.1e DAV/2 | 2 |
lighttpd/1.4.28 atos/5.6.20 (server0) | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.19 | 2 |
vividWire | 2 |
Kerio Connect 8.2.1 | 2 |
Apache/1.3.34 (Unix) mod_ssl/2.8.25 OpenSSL/0.9.7e | 2 |
Apache/2.0.63 (Win32) PHP/5.2.12 | 2 |
Apache/2.2.6 (Win32) PHP/5.2.4 | 2 |
Zope/(2.13.13, python 2.7.2, linux2) ZServer/1.1 | 2 |
OpenSA/1.0.3 / Apache/1.3.26 (Win32) ApacheJServ/1.1.2 mod_ssl/2.8.9 OpenSSL/0.9.6g | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 mod_jk/1.2.32 | 2 |
Apache/2.2.26 (FreeBSD) PHP/5.5.9 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 2 |
Apache/2.4.6 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.37 | 2 |
ATR-HTTP-Server/2.8.1 | 2 |
Apache/2.0.63 (Win32) PHP/5.2.11 | 2 |
meteord | 2 |
Apache/2.2.27 (Unix) DAV/2 PHP/5.3.28 | 2 |
openresty/1.5.11.1 | 2 |
Jetty/4.2.27 (Linux/2.6.32-431.11.2.el6.x86_64 amd64 java/1.7.0_04) | 2 |
Apache/2.2.11 (Win32) PHP/5.2.9 | 2 |
Apache/2.2.22 (Win32) mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.12.3 | 2 |
Linux, HTTP/1.1, DIR-615 Ver 1.01VGb57 | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 mod_jk/1.2.32 | 2 |
Keil WEB 1.0 | 2 |
Apache/1.3.31 (Win32) PHP/4.3.6 | 2 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u12 mod_ssl/2.2.22 OpenSSL/1.0.1e | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 PHP/5.2.17 | 2 |
Jetty(8.1.5.v20120716) | 2 |
Apache/2.4.7 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 2 |
FCS-1060 P/T IP Network Camera | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips mod_jk/1.2.32 | 2 |
WDaemon/9.6.1 | 2 |
Niagara Web Server/3.7.106.12 | 2 |
Apache/2.2.29 (Amazon) | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_wsgi/3.4 Python/2.7.6 mod_bwlimited/1.4 | 2 |
Apache/2.2.23 (FreeBSD) mod_ssl/2.2.23 OpenSSL/0.9.8y DAV/2 | 2 |
Apache/2.2.25 (Unix) PHP/5.2.17 | 2 |
Werkzeug/0.6.2 Python/2.6.6 | 2 |
GeoSweep Server 3.4.7-2037 | 2 |
BaseHTTP/0.3 Python/2.7.2 | 2 |
nginx/1.3.12 | 2 |
lighttpd/1.4.28-devel-1344 | 2 |
Allegro-Software-RomPager/4.05 | 2 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TG;max-age=300+0;age=0;ecid=50053088732159666,0:1) | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 2 |
Apache/2.0.58 (Win32) | 2 |
Apache/2.4.6 (FreeBSD) PHP/5.4.23 | 2 |
Apache/2.2.21 (OpenPKG/CURRENT) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 | 2 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 | 2 |
Apache/2.4.7 (Fedora) PHP/5.5.10 | 2 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.4 Basic ECC PHP/5.4.16 | 2 |
Apache/1.3.33 (Debian GNU/Linux) PHP/4.3.10-15 | 2 |
Oracle Containers for J2EE | 2 |
Apache/2.2.25 (FreeBSD) PHP/5.4.17 mod_ssl/2.2.25 OpenSSL/0.9.8x DAV/2 | 2 |
tvWebServer | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_perl/2.0.5 Perl/v5.8.8 | 2 |
Apache/1.3.26 (TurboLinux) mod_throttle/3.1.2 mod_ruby/0.9.7 Ruby/1.6.4 mod_python/2.7.8 Python/2.2.1 mod_perl/1.26 DAV/1.0.3 PHP/4.2.3 mod_jk/1.2.0 | 2 |
Apache/2.2.22 (Win32) PHP/5.2.13 | 2 |
Apache/2.2.19 (Win32) mod_ssl/2.2.19 OpenSSL/0.9.8r PHP/5.2.17 | 2 |
Kerio Connect 8.1.0 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.10 | 2 |
iSpy | 2 |
Apache/2.2.24 (Unix) PHP/5.4.14 mod_jk/1.2.37 | 2 |
Apache/2.2.20 (Unix) PHP/5.3.10 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 PHP/5.3.29 | 2 |
CR1000.Std.26 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.16 | 2 |
Niagara Web Server/3.7.106.5 | 2 |
Apache/2.2.14 (Win32) PHP/5.2.17 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0h PHP/5.3.13 | 2 |
CPF-HTTPD v1.00 | 2 |
NetVista Server/3.0 | 2 |
waitress | 2 |
thin 1.2.7 codename No Hup | 2 |
dhcpsrv | 2 |
Apache/1.3.41 (Unix) PHP/4.4.9 mod_ssl/2.8.31 OpenSSL/0.9.8e-fips-rhel5 | 2 |
Apache/2.2.22 (Debian) mod_fcgid/2.3.6 | 2 |
Apache/1.3.37 (Unix) PHP/5.2.9 mod_ssl/2.8.28 OpenSSL/0.9.8e-fips-rhel5 | 2 |
Apache/2.2.14 (Unix) PHP/5.2.11 | 2 |
Apache/2.4.6 (CentOS) mod_fcgid/2.3.9 | 2 |
Apache/2.2.22 (FreeBSD) mod_klwi/2.4 mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 2 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TG;max-age=300+0;age=0;ecid=42784170147421450,0:1) | 2 |
Web | 2 |
Ralink HTTPD | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8g PHP/5.3.19 | 2 |
Apache/1.3.33 (Unix) PHP/5.1.2 | 2 |
abcdek/111 | 2 |
Apache/2.4.7 (Unix) PHP/5.4.29 OpenSSL/1.0.1e | 2 |
Apache/2.2.26 (FreeBSD) PHP/5.3.28 with Suhosin-Patch mod_ssl/2.2.26 OpenSSL/0.9.8q DAV/2 | 2 |
Jetty(8.0.y.z-SNAPSHOT) | 2 |
Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 | 2 |
Cherokee/1.0.19 (UNIX) | 2 |
uServ/3.2.2 | 2 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.4.16 mod_wsgi/3.4 Python/2.7.5 | 2 |
Loxone 6.2.12.4 | 2 |
Viprinet/3.87-SBB | 2 |
router webs | 2 |
MWS 0.01 | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.1 | 2 |
JAWS/1.0 Aug 30 2013 | 2 |
Apache/2.2.6 (Unix) mod_ssl/2.2.6 OpenSSL/0.9.7a | 2 |
lighttpd/1.4.28-devel-521 | 2 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/5.2.6 | 2 |
public.app35.aus | 2 |
LANCOM 1781A 8.82.0100 / 28.08.2013 | 2 |
Jetty(7.6.8.v20121106) | 2 |
KirkHTTPServer/1.0 | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.1.6 | 2 |
Apache/2.2.25 (FreeBSD) PHP/5.4.20 mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 | 2 |
Apusic/5.1 (Windows Server 2008 6.1 x86; JDK 1.6.0_10-rc2) | 2 |
Jetty(7.4.2.v20110526) | 2 |
David-WebBox/12.00a (0963) WIN32 | 2 |
LANCOM 1721+ VPN 8.62.0086 / 08.11.2012 | 2 |
HFS 2.3b | 2 |
Apache/2.4.6 (CentOS) PHP/5.6.4 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.9 | 2 |
lighttpd/1.4.30-devel–1M | 2 |
Bupa | 2 |
IPOffice/5.0(26) | 2 |
Apache/2.2.25 (Win32) PHP/5.2.5 | 2 |
HsHttpServer/2.0.0.0 | 2 |
Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_perl/2.0.4 Perl/v5.10.1 | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 2 |
RPCNMS | 2 |
Apache/2.2.21 (Win32) DAV/2 mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.3.8 | 2 |
Apache/2.4.3 (Unix) PHP/5.4.10 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1 mod_jk/1.2.37 | 2 |
Apache/2.2.22 (Unix) PHP/5.3.15 with Suhosin-Patch mod_wsgi/3.3 Python/2.7.2 mod_ssl/2.2.22 OpenSSL/0.9.8r DAV/2 | 2 |
Niagara Web Server/1.1 | 2 |
Jetty(7.6.7.v20120910) | 2 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.6.0 | 2 |
Apache/2.4.9 (Unix) PHP/5.4.27 | 2 |
Apache/2.2.22 (Win32) mod_jk/1.2.26 mod_ssl/2.2.22 OpenSSL/0.9.8t | 2 |
bq | 2 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 2 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 2 |
Apache/2.2.19 (Win64) | 2 |
Apache/2.2.22 (Ubuntu) mod_fcgid/2.3.7 Phusion_Passenger/3.0.13 mod_ssl/2.2.22 OpenSSL/1.0.1f mod_wsgi/3.4 Python/2.7.6 | 2 |
lighttpd/1.4.29-devel-97 | 2 |
Apache/2.2.4 (Win32) mod_ssl/2.2.4 OpenSSL/0.9.8d | 2 |
Citrix-3.2.3.7 ‘Marshal West’ | 2 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.0a | 2 |
Netscape-FastTrack/3.02 | 2 |
Apache/2.2.23 (FreeBSD) DAV/2 PHP/5.4.10 mod_ssl/2.2.23 OpenSSL/0.9.8x | 2 |
TornadoServer/2.4.1 | 2 |
Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8n | 2 |
Apache/2.2.15 (Win32) DAV/2 | 2 |
IS2 Web Server 1.67 | 2 |
Apache/2.2.10 (Unix) PHP/5.2.6 | 2 |
Jetty(7.0.1.v20091125) | 2 |
Apache/2.2.27 (FreeBSD) DAV/2 mod_perl/2.0.8 Perl/v5.16.3 | 2 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TG;max-age=300+0;age=0;ecid=1464505987655432,0:1) | 2 |
Linux, HTTP/1.1, DSL-2890AL Ver AU_1.02.06 | 2 |
Apache/2.x.x | 2 |
Apache/2.2.9 (APMServ) PHP/5.2.6 | 2 |
DrWebAV-DeskServer/REL-610-AV-6.02.0.201311040 Linux/x86_64 Lua/5.1.4 OpenSSL/0.9.8e-fips-rhel5 | 2 |
lighttpd/1.4.28 atos/5.6.23 (proxy0) | 2 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.3.28 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8za | 2 |
FTV Live by af83 | 2 |
Apache/6.6.6 | 2 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.3.28 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_qos/10.10 mod_perl/2.0.6 Perl/v5.10.1 | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.17 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips DAV/2 PHP/5.5.3 | 2 |
nginx + Phusion Passenger 4.0.55 | 2 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips DAV/2 mod_bwlimited/1.4 mod_fcgid/2.3.6 | 2 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t PHP/5.3.17 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 | 2 |
Apache/2.2.16 (Debian) DAV/2 SVN/1.6.12 PHP/5.3.3-7+squeeze15 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 2 |
$ProjectRevision: 4.7.1.12 $ | 2 |
squid/2.6.STABLE18 | 2 |
OpenCms/7.5.3 | 2 |
Apache/2.2.21 (Unix) DAV/2 mod_jk/1.2.28 | 2 |
Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m PHP/5.3.5 mod_jk/1.2.26 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.27 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.4.19 | 2 |
Mathopd/1.5p5 | 2 |
nginx/1.6.2 + Phusion Passenger 4.0.56 | 2 |
IS2 Web Server 1.39 | 2 |
Linux, HTTP/1.1, DIR-865L Ver 1.01 | 2 |
Huawei HMS Download Service | 2 |
Hanbiro Server Centre(Powered by NetBSD) | 2 |
addUPI Server 1.2 +SSL | 2 |
WEBrick/1.3.1 (Ruby/1.8.7/2010-08-16) | 2 |
Apache/2.4.6 (Win64) OpenSSL/1.0.1e PHP/5.5.3 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.8.8 | 2 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/0.9.7e-p1 | 2 |
IPOffice/8.1(43) | 2 |
Apache/2.2.16 (Debian) PHP/5.2.6-1+lenny16 with Suhosin-Patch | 2 |
Apache/2.2.22 (Red Hat Enterprise Web Server) | 2 |
Apache/2.2.25 (Win32) PHP/5.3.26 | 2 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.20 | 2 |
Apache/2.2.21 (Win32) PHP/5.3.6 | 2 |
OracleAS-Web-Cache-10g/10.1.2.3.0 | 2 |
Apache/2.0.53 (Win32) mod_ssl/2.0.53 OpenSSL/0.9.7e mod_jk2/2.0.4 | 2 |
Linux, HTTP/1.1, DIR-868L Ver 1.07KR | 2 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.17 with Suhosin-Patch | 2 |
Foundry Networks/2.20 | 2 |
WACINX Web Server/3.0 | 2 |
TornadoServer/2.2 | 2 |
Apache/2.4.3 (Unix) OpenSSL/1.0.0-fips | 2 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.7 with Suhosin-Patch | 2 |
Apache/2.0.51 (Fedora) | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 2 |
2.2.52.1 | 2 |
Apache/2.0.52 (Unix) | 2 |
Jetty(8.1.14.v20131031) | 2 |
TornadoServer/2.4 | 2 |
Secured By : B4H.Com.Sa | 2 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.0 | 2 |
lighttpd/1.4.11 | 2 |
Apache/2.2.29 (FreeBSD) | 2 |
COMPanion Web Server /1.0 | 2 |
Apache/1.3.37 (Unix) mod_perl/1.30 | 2 |
Jetty/5.1.x (Linux/3.2.0-23-generic-pae i386 java/1.4.2_19 | 2 |
Apache/2.4.12 (Unix) PHP/5.6.5 | 2 |
thin 1.6.1 codename Death Proof | 2 |
DCS-3420 | 2 |
Apache/2.4.4 (FreeBSD) PHP/5.4.14 | 2 |
JAWS/1.0 Jan 15 2014 | 2 |
Apache/2.2.3 (Debian) mod_ssl/2.2.3 OpenSSL/0.9.8c | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 2 |
WCS-2060 Wireless P/T IP Network Camera | 2 |
BKS400 | 2 |
Apache/2.4.12 (FreeBSD) PHP/5.4.37 | 2 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.9 mod_perl/2.0.2 Perl/v5.8.8 | 2 |
Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8e PHP/5.2.12 with Suhosin-Patch | 2 |
2.2.48 | 2 |
Apache/2.2.22 (Unix) PHP/5.3.15 mod_mono/2.10 | 2 |
Apache/2.2.25 (Win32) PHP/5.3.8 | 2 |
Apache/2.4.6 (Unix) PHP/5.5.5 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.2.17 | 2 |
Apache/2.0.59 (Win32) mod_ssl/2.0.59 OpenSSL/0.9.8e PHP/5.2.5 | 2 |
ZyWALL Content Filter | 2 |
PBX/5.1.0a (CentOS64) | 2 |
ngx_openresty/1.0.10.44 | 2 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 2 |
Niagara Web Server/3.6.47.5 | 2 |
WindWeb/1.0.3 | 2 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.7 with Suhosin-Patch | 2 |
HttpMod/1.0 | 2 |
Tengine/2.0.2 | 2 |
Apache/2.4.6 (Ubuntu) mod_jk/1.2.37 PHP/5.5.3-1ubuntu2.3 OpenSSL/1.0.1e | 2 |
Jetty(6.1.1) | 2 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8q PHP/5.3.5 | 2 |
Apache/2.4.4 (Unix) PHP/5.4.15 | 2 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7e proxy_html/2.5 | 2 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1g PHP/5.5.11 | 2 |
Apache/2.4.3 (Win64) | 2 |
Apache/2.2.13 (Win32) PHP/5.3.0 | 2 |
selea.com | 2 |
thin 1.2.8 codename Black Keys | 2 |
Apache/2.2.25 (FreeBSD) mod_ssl/2.2.25 OpenSSL/0.9.8q DAV/2 | 2 |
lighttpd/1.4.28 atos/5.6.13.2 (proxy0) | 2 |
iBall Baton | 2 |
Apache/2.2.14 (Win32) mod_jk/1.2.28 | 2 |
Apache/2.2.10 (Unix) DAV/2 PHP/5.2.8 | 2 |
nginx, nginx/1.4.6 | 2 |
Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server | 2 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.30 | 2 |
Apache mod_fcgid/2.3.10-dev | 2 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 | 2 |
POSMaster iPhone Server V. 1.00 | 2 |
lighttpd/1.4.28-devel-7239 | 2 |
Jetty(7.6.4.v20120524) | 2 |
Cisco | 2 |
Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server | 2 |
NWS_DAA_FRONT_L2 | 2 |
thttpd/2.19-MX Jul 16 2009 | 2 |
Apache/1.3.41 (Darwin) mod_ssl/2.8.31 OpenSSL/0.9.7l PHP/4.4.9 | 2 |
Apache/2.4.3 (Win64) mod_fcgid/2.3.7 | 2 |
Apache/2.2.25 (Unix) PHP/5.3.27 mod_ssl/2.2.25 OpenSSL/0.9.8o | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 PHP/5.4.26 | 2 |
– Web acceleration by Simpleservers.co.uk | 2 |
SkylineWebcams | 2 |
Apache/2.2.27 (CentOS) DAV/2 mod_ssl/2.2.27 OpenSSL/1.0.1e-fips | 2 |
Apache/2.2.27 (Unix) PHP/5.5.13 | 2 |
Resin/3.0.21 | 2 |
Grandstream/1.10 | 2 |
Apache/1.3.33 (Debian GNU/Linux) mod_gzip/1.3.26.1a PHP/4.3.10-19 mod_perl/1.29 mod_jk/1.2.14 | 2 |
Apache/2.0 | 2 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny4 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 2 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.3.26 | 2 |
Apache/1.3.37 (Unix) PHP/4.4.4 | 2 |
Apache/2.4.6 (Red Hat) | 2 |
Oracle-Application-Server-10g | 2 |
Apache/1.3.27 (Unix) PHP/4.3.10 | 2 |
gen5th/1.51.00 | 2 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_wsgi/3.2 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 2 |
Apache/1.3.37 (Unix) PHP/5.2.0 | 2 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k PHP/5.3.1 | 2 |
Apache/2.2.9 (Unix) mod_jk2/2.0.4 mod_ssl/2.2.9 OpenSSL/0.9.7a DAV/2 | 2 |
Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m PHP/5.2.17 | 2 |
Apache/2.2.22 (@RELEASE@) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 2 |
openresty/1.7.0.1 | 2 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.5.1 PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.6(2007-09-24) mod_ssl/2.2.8 OpenSSL/0.9.8g | 2 |
Apache/2.0.48 | 2 |
Apache/2.2.8 (Unix) DAV/2 PHP/5.2.5 mod_jk/1.2.37 | 2 |
HyperX/1.0 (ThreadX) | 2 |
Niagara Web Server/3.7.106.4 | 2 |
Apache/2.2.9 (Debian) PHP/5.3.3-7+squeeze14 with Suhosin-Patch | 2 |
Apache/2.4.9 (Win32) OpenSSL/0.9.8y PHP/5.2.17 | 2 |
Apache/2.2.22 (Win32) PHP/5.4.25 | 2 |
TWebAP/2.1.2.9 | 2 |
Apache/not4your eyes | 2 |
Q330 V1.0 | 2 |
Apache/2.4.12 (Win64) PHP/5.6.5 | 2 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 DAV/2 | 2 |
Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.16 mod_perl/2.0.8-dev Perl/v5.16.3 | 2 |
Apache/2.4.10 (FreeBSD) PHP/5.4.31 | 2 |
web1 | 2 |
MM-HTTP | 2 |
Apache/2.2.17 (Debian) | 2 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1e PHP/5.3.27 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_jk/1.2.37 mod_bwlimited/1.4 mod_fcgid/2.3.6 | 2 |
Apache/2.4.10 (Unix) PHP/5.6.4 | 2 |
WEBrick/1.3.1 (Ruby/1.9.3/2013-02-22) | 2 |
nginx/1.1.7 | 2 |
Apache/2.2.25 (Win32) PHP/5.4.7 | 2 |
acs | 2 |
xloud frontend network | 2 |
EWS-NIC5/13.22 | 2 |
Apache/2.4.6 (FreeBSD) PHP/5.5.5 | 2 |
Apache/2.4.9 (Fedora) PHP/5.5.11 | 2 |
Apache/2.0.55 (Unix) DAV/2 PHP/5.2.5 | 2 |
Cherokee/1.2.103 (UNIX) | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_jk/1.2.40 | 2 |
Apache Web Server | 2 |
Varnish (MISS) | 2 |
Jetty(9.1.1.v20140108) | 2 |
Apache/1.3.27 (Win32) PHP/4.3.3 | 2 |
lighttpd/1.4.28-devel-606M | 2 |
TAC/Xenta711 1.20 | 2 |
Apache/2.2.15 (Unix) PHP/5.3.2 | 2 |
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.9 with Suhosin-Patch | 2 |
Apache/2.2.23 (FreeBSD) PHP/5.4.10 mod_ssl/2.2.23 OpenSSL/0.9.8y DAV/2 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_perl/2.0.6 Perl/v5.8.8 | 2 |
Apache/2.2.19 (Win32) mod_ssl/2.2.19 OpenSSL/0.9.8r PHP/5.3.6 | 2 |
Apache/2.2.25 (Win32) mod_jk/1.2.40 mod_ssl/2.2.25 OpenSSL/0.9.8y | 2 |
Play! Framework;1.2.5.3;prod | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 2 |
Apache/2.2.4 (Unix) DAV/2 PHP/5.2.3 | 2 |
Apache/1.3.31 (Win32) | 2 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.14 | 2 |
Zope/(2.13.21, python 2.7.3, linux2) ZServer/1.1 | 2 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16 mod_wsgi/3.4 Python/2.7.5 | 2 |
XO WEB Server | 2 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t mod_jk/1.2.32 | 2 |
NKCDN | 2 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1h mod_fcgid/2.3.9 | 2 |
Apache/1.3.37 (Unix) rus/PL30.22 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_wsgi/3.3 Python/2.6.6 | 2 |
Abyss/2.9.3.6-X1-Win32 AbyssLib/2.9.3.6 | 2 |
Zope/(unreleased version, python 2.4.6, linux2) ZServer/1.1 Plone/3.3.5 | 2 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.23 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 2 |
Apache/2.2.22 (Win32) PHP/5.3.24 | 2 |
Apache/2.2.22 (Win32) PHP/5.4.6 | 2 |
Apache/1.3.29 (Unix) mod_perl/1.29 PHP/4.4.1 mod_ssl/2.8.16 OpenSSL/0.9.7g | 2 |
iCore Proxy Module | 2 |
Apache/2.2.3 (CentOS) DAV/2 mod_auth_kerb/5.1 mod_auth_pgsql/2.0.3 mod_nss/2.2.3 NSS/3.14.3.0 Basic ECC PHP/5.1.6 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 | 2 |
SAP J2EE Engine/7.00 | 2 |
Apache/2.4.7 (Unix) PHP/5.3.28 OpenSSL/1.0.1e | 2 |
Apache/2.2.22 (Win32) PHP/5.3.19 | 2 |
Zope/(2.13.15, python 2.7.3, linux2) ZServer/1.1 | 2 |
nginx/1.4.0 + Phusion Passenger 3.0.12 (mod_rails/mod_rack) | 2 |
Apache/1.3.9 (Unix) | 2 |
Resin/4.0.32 | 2 |
Serv-U/7.3.0.0 | 2 |
IS2 Web Server 1.83 | 2 |
lighttpd/1.4.28 atos/5.6.13.3T3 (server0) | 2 |
NW.ServerApp6d.7te (bimbo) | 2 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.17 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.7 | 2 |
lighttpd/1.4.31-devel-186ef9f | 2 |
Apache/2.2.14 (Unix) DAV/2 mod_jk/1.2.15 | 2 |
Apache/2.0.54 (Mandriva Linux/PREFORK-13.3.20060mdk) | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.0-fips PHP/5.2.17 | 2 |
Apache/2.4.9 (Win32) PHP/5.5.11 | 2 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.0n PHP/5.3.3 | 2 |
lighttpd/1.4.28-devel-1718M | 2 |
Jetty(6.1.11) | 2 |
Resin/3.0.23 | 2 |
RaidenHTTPD/2.0.42 (Commercial) | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.8 | 2 |
LANCOM 1721+ VPN 8.00.0221 / 07.10.2010 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.1g PHP/5.5.10 | 2 |
Apache/2.4.9 (FreeBSD) | 2 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/1.0.0g DAV/2 | 2 |
CherryPy/3.1.2 WSGI Server | 2 |
Tntnet/2.2.1 | 2 |
Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.9 mod_jk/1.2.27 | 2 |
Apache/2.2.24 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.24 OpenSSL/0.9.8y | 2 |
PowerStudio v3.3 rc1 | 2 |
lighttpd/1.4.29-devel-116 | 2 |
Apache/2.4.10 (Win32) PHP/5.4.9 OpenSSL/1.0.1i | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.4.20 | 2 |
David-WebBox/12.00a (0821) WIN32 | 2 |
Kerio Connect 7.3.0 | 2 |
nginx/1.6.2 + Phusion Passenger 4.0.58 | 2 |
Wildfly 8 | 2 |
Lotus-Domino/5.0.9 | 2 |
Apache/2.2.16 (Win32) PHP/5.2.5 | 2 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips PHP/5.5.16 | 2 |
Google Frontend | 2 |
lighttpd/1.4.29-devel-125 | 2 |
Jetty/4.2.x (VxWorks/WIND version 2.9 ppc java/1.1-rr-std-b12) | 2 |
RestServer/1.0 | 2 |
Jetty(8.1.2.v20120308) | 2 |
Apache/2.2.21 (Unix) DAV/2 mod_ssl/2.2.21 OpenSSL/1.0.0c mod_apreq2-20090110/2.7.1 mod_perl/2.0.5 Perl/v5.10.1 | 2 |
Apache/2.2.29 (Win64) mod_ssl/2.2.29 OpenSSL/1.0.1i DAV/2 | 2 |
Microsoft-IIS | 2 |
Mrvl-R2_0 | 2 |
Serv-U/10.5.0.14 | 2 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.4.20 | 2 |
xxxxxxx | 2 |
Apache/2.2.22 (FreeBSD) PHP/5.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 2 |
GlassFish Server Open Source Edition 3.1 | 2 |
Apache/2.2.25 (Win32) PHP/5.2.6 | 2 |
David-WebBox/12.00a (0978) WIN32 | 2 |
Apache/2.2.8 (Ubuntu) mod_python/3.3.1 Python/2.5.2 PHP/5.2.4-2ubuntu5.23 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 2 |
Apache/2.2.14 (Win32) mod_aspdotnet/2.2 IISMS/4.0 | 2 |
Diwanee Server2 | 2 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.3.28 mod_ssl/2.2.26 OpenSSL/0.9.8y | 2 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8g PHP/5.2.9 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.24 | 2 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny2 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 2 |
Apache/2.2.22 (Win32) PHP/5.3.26 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.2.17 | 2 |
Apache/2.2.16 (Win32) mod_jk/1.2.30 | 2 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1g PHP/5.5.7 | 2 |
Linux, HTTP/1.1, DHP-W310AV Ver 1.00 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 2 |
CXLWS | 2 |
aris/version stable 0.3 | 2 |
Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m PHP/5.3.2 | 2 |
Apache/1.3.3 Cobalt (Unix) (Red Hat/Linux) | 2 |
glass/1.0 Python/2.6.4 | 2 |
Apache/2.2.9 (Win32) mod_jk/1.2.26 | 2 |
Apache/2.2.26 (Unix) mod_jk/1.2.37 PHP/5.3.28 | 2 |
Serv-U/11.1.0.5 | 2 |
Apache/2.4.6 (CentOS) PHP/5.5.21 | 2 |
nginx/1.7.3 + Phusion Passenger 4.0.46 | 2 |
Apache/2.4.12 (Unix) OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 2 |
Zope | 2 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.3 | 2 |
Apache/2.2.22 (Win32) mod_jk/1.2.26 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8o mod_wsgi/3.4 Python/2.5.5 Phusion_Passenger/4.0.10 | 2 |
MiniServ/1.600 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.0d PHP/5.3.6 | 2 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7a PHP/5.1.4 | 2 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.27 mod_ssl/2.2.22 OpenSSL/1.0.0 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 2 |
Apache/2.0.47 (Win32) PHP/5.2.5 | 2 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny13 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 2 |
Apache/2.2.24 (Win32) mod_ssl/2.2.24 OpenSSL/1.0.1e | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8o PHP/5.5.16 | 2 |
Zope/(2.13.7, python 2.6.7, linux2) ZServer/1.1 | 2 |
nginxpanel.ir/1.6.0 | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.2.17 | 2 |
Apache/2.2.6 (Turbolinux) | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8g PHP/5.2.17 | 2 |
Cincom_Smalltalk VisualWorks 7.6 | 2 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1k-fips PHP/5.6.5 mod_perl/2.0.9dev Perl/v5.18.4 | 2 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.17 | 2 |
JAWS/1.0 Feb 20 2014 | 2 |
IS2 Web Server 1.79 | 2 |
HP HTTP Server; HP Deskjet 3050 J610 series – CH376B; Serial Number: CN1343B1NW05HX; Sumba_pp Built:Mon Aug 23, 2010 02:15:36PM {SBP1FN1022FR, ASIC id 0x00340100} | 2 |
thttpd/2.19-MX Mar 4 2013 | 2 |
ks/1.0.0.1 | 2 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.7j DAV/2 PHP/4.4.3 | 2 |
Apache/2.4.3 (Unix) OpenSSL/1.0.0-fips mod_fcgid/2.3.7 PHP/5.4.7 | 2 |
Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4.3 with Suhosin-Patch | 2 |
Apache/2.0.50 (Fedora) | 2 |
eMule | 2 |
http://www.weatherlink.com | 2 |
Jetty(7.x.y-SNAPSHOT) | 2 |
Apache/2.2.9 (FreeBSD) mod_ssl/2.2.9 OpenSSL/0.9.7e-p1 DAV/2 | 2 |
Apache/2.4.9 (Unix) PHP/5.3.28 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8y proxy_html/3.1.2 | 2 |
Apache/2.2.23 (Unix) mod_jk/1.2.37 | 2 |
mini_httpd/1.15c 02may2001 | 2 |
Linux, HTTP/1.1, DIR-845L Ver 1.00 | 2 |
Apache/2.2.23 (Win32) mod_ssl/2.2.23 OpenSSL/1.0.1c | 2 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips | 2 |
Tntnet/2.1 | 2 |
Kerio Connect 7.4.1 | 2 |
Abyss/2.9.3.5-X1-Win32 AbyssLib/2.9.3.3 | 2 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.2.17 | 2 |
XecureBOX Web Server | 2 |
Zope/(2.13.8, python 2.6.6, win32) ZServer/1.1 | 2 |
Wanadev SARL – http://www.wanadev.fr | 2 |
Apache/2.2.17 | 2 |
YTS/1.19.15 | 2 |
Niagara Web Server/3.6.48.1 | 2 |
openresty/1.7.4.1 | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.4.20 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.19 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_wsgi/3.3 Python/2.6.6 mod_bwlimited/1.4 | 2 |
TwistedWeb/13.1.0 | 2 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7m | 2 |
Apache/2.4.4 (Unix) OpenSSL/1.0.0-fips PHP/5.4.14 | 2 |
Apache/2.2.17 (Win32) mod_fcgid/2.3.6 | 2 |
Netstream Cluster Service 1.0.1 | 2 |
Apache/2.4.10 (Win32) PHP/5.4.31 | 2 |
X-Server Apache/2.2.18 (RWAPM) mod_fcgid/2.3.7 | 2 |
picoIP HTTPd 10/1.0 | 2 |
IndigoWebServer/5.0 | 2 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.4.11 | 2 |
Serv-U/7.0.0.1 | 2 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_qos/10.10 mod_perl/2.0.6 Perl/v5.8.8 | 2 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.4.17 mod_ssl/2.2.24 OpenSSL/0.9.8y | 2 |
NetDNA-cache/2.2 | 2 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8j-fips PHP/5.2.9 | 2 |
Jetty(8.1.11.v20130520) | 2 |
thttpd/2.22beta4 14nov2001 | 2 |
Apache/2.4.6 (CentOS) PHP/5.6.3 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 | 2 |
Apache/2.2.21 (Win32) PHP/5.3.21 | 2 |
Serv-U/8.0.0.7 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.17 | 2 |
Apache/2.2.12 (Unix) | 2 |
Apache/2.2.25 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8y mod_jk/1.2.32 | 2 |
nginx/1.4.3 + Phusion Passenger 4.0.21 | 2 |
LANCOM 1781A-4G 8.82.0123 / 01.10.2013 | 2 |
nginx/0.8.52 | 2 |
David-WebBox/12.00a (0852) WIN32 | 2 |
iS Service | 2 |
Apache/2.4.7 (Win32) PHP/5.5.8 | 2 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.0 | 2 |
Apache/2.2.4 (Win32) PHP/5.3.1 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.3.6 | 2 |
Apache/2.2.17 (Unix) DAV/2 mod_jk/1.2.28 | 2 |
Oracle-Application-Server-10g/10.1.3.5.0 Oracle-HTTP-Server | 2 |
Kerio Connect 7.2.3 | 2 |
Apache/1.3.33 (Debian GNU/Linux) PHP/4.4.7-0.dotdeb.0 with Suhosin-Patch | 2 |
Apache/2.4.10 (FreeBSD) PHP/5.5.15 | 2 |
Jetty(9.1.4.v20140401) | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0e PHP/5.3.15 | 2 |
Alpha Five Application Server/11.0 Build/3381-4096 | 2 |
Apache/2.4.10 (Unix) PHP/5.3.29 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8zc | 2 |
Kerio Connect 7.3.1 | 2 |
$ProjectRevision: 5.0.1.23 $ | 2 |
Apache/2.0.64 (Unix) PHP/5.3.5 DAV/2 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 2 |
Apache/2.2.21 (Win32) PHP/5.2.9-1 | 2 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.15 | 2 |
Swazoo 2.3 Smalltalk Web Server | 2 |
SciVisum Server | 2 |
Apache/2.2.29 (FreeBSD) PHP/5.3.29 with Suhosin-Patch mod_ssl/2.2.29 OpenSSL/0.9.8y DAV/2 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.28 | 2 |
phpDOT | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.40 | 2 |
instart/148 | 2 |
Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8d mod_autoindex_color PHP/5.2.1 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips DAV/2 PHP/5.3.16 | 2 |
Kerio Connect 8.2.0 | 2 |
Apache/2.2.25 (Win32) PHP/5.4.29 | 2 |
LTANMP/1.0 | 2 |
LANCOM 1821n Wireless 8.82.0100 / 28.08.2013 | 2 |
Apache/2.4.10 (Win64) OpenSSL/1.0.1h | 2 |
Apache/2.2.25 (Unix) DAV/2 | 2 |
David-WebBox/12.00a (0738) WIN32 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8o | 2 |
Resin/3.1.10 | 2 |
nginx/1.4.4 + Phusion Passenger 4.0.33 | 2 |
Apache/1.3.33 (Unix) mod_jk/1.2.8 | 2 |
Apache/2.4.7 (Ubuntu) SVN/1.8.8 PHP/5.5.9-1ubuntu4.4 mod_python/3.3.1 Python/2.7.6 OpenSSL/1.0.1f mod_perl/2.0.8 Perl/v5.18.2 | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.2.17 | 2 |
JAWS/1.0 Aug 29 2013 | 2 |
nginx/6.6.5 | 2 |
TornadoServer/3.2.2 | 2 |
Apache/2.2.22 (Win32) SVN/1.7.16 mod_ssl/2.2.22 OpenSSL/0.9.8t mod_auth_sspi/1.0.4 DAV/2 | 2 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (H;max-age=300+0;age=14;ecid=53130012079812918,0:1) | 2 |
Apache/2.2.23 (Win32) PHP/5.3.18 | 2 |
Apache/2.4.3 (Unix) PHP/5.4.8 | 2 |
simple httpd 1.0 | 2 |
Zope/(2.13.16, python 2.7.3, linux2) ZServer/1.1 | 2 |
Apache/2.2.15 (CentOS) PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 2 |
RediCam/5.1 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.37 | 2 |
Apache/2.2.3 (Novell) | 2 |
JAWS/1.0 Sep 4 2014 | 2 |
ICC/1.0.0 | 2 |
Apache/2.2.23 (Win32) mod_ssl/2.2.23 OpenSSL/0.9.8x | 2 |
Apache/1.3.34 (Debian) mod_ssl/2.8.25 OpenSSL/0.9.8c mod_gzip/1.3.26.1a PHP/4.4.4-8+etch6 mod_perl/1.29 mod_jk/1.2.14 | 2 |
Uniline CDN/1.0 | 2 |
Hiawatha v9.8 | 2 |
Apache/2.2.22 (Win32) PHP/5.4.31 | 2 |
e@sy-pro v6.2.0 22/10/2012 | 2 |
Apache/2.2.13 (Unix) DAV/2 | 2 |
Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.7e-p1 DAV/2 PHP/5.2.12 with Suhosin-Patch | 2 |
nginx/1.1.9 | 2 |
CherryPy/3.1.0beta3 WSGI Server | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.22 | 2 |
grid-cache/1.4.4 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.3 DAV/2 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 | 2 |
AVR_WEB_Switch | 2 |
Jetty(7.4.5.v20110725) | 2 |
Microsoft-IIS 5.0 | 2 |
Apache/2.4.6 (Fedora) | 2 |
Apache/2.2.24 (FreeBSD) PHP/5.4.13 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 2 |
Airee/0.52/21 | 2 |
nginx/1.1.16 | 2 |
Apache/2.2.23 (Unix) DAV/2 | 2 |
lighttpd/1.4.28-devel-1715M | 2 |
nginx/0.6.39 | 2 |
Restlet-Framework/2.0.9 | 2 |
LANCOM 1721 VPN (Annex B) 7.58.0045 / 14.11.2008 | 2 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.20 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1h DAV/2 | 2 |
ISC2100-HTTPserv:00002 | 2 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8o | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8o mod_fastcgi/2.4.6 | 2 |
Apache/2.2.29 (FreeBSD) mod_ssl/2.2.29 OpenSSL/0.9.8za-freebsd DAV/2 | 2 |
Apache/2.2.15 (Win32) mod_jk/1.2.30 | 2 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.15 mod_ssl/2.2.22 OpenSSL/0.9.8r | 2 |
ITEWS | 2 |
Kerio Connect 7.4.0 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.5.14 | 2 |
RC7000/1.0 | 2 |
Sansun Calakci | 2 |
KeyTalk HTML server | 2 |
Apache/2.2.9 (Unix) DAV/2 PHP/5.2.6 | 2 |
Apache/2.2.0 (Unix) mod_ssl/2.2.0 OpenSSL/0.9.6 | 2 |
Apache/2.4.9 (Unix) PHP/5.4.7 | 2 |
Apache/2.2.17 (Unix) PHP/5.3.5 | 2 |
kangle/3.4.3 | 2 |
Apache/1.3.33 (Unix) | 2 |
Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7a DAV/2 PHP/5.1.4 mod_perl/2.0.2 Perl/v5.8.0 | 2 |
Apache/2.2.16 (Debian) DAV/2 PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 2 |
Apache/2.2.3 (Debian) PHP/4.4.4-8+etch4 | 2 |
Apache/2.0.47 (Fedora) | 2 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.3.28 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8y | 2 |
LANCOM 1722 VoIP (Annex B) 7.80.0081 / 06.01.2010 | 2 |
Apache/2.2.20 (CentOS) | 2 |
Apache/1.3.41 (Unix) PHP/5.2.6 | 2 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.3.29 mod_wsgi/3.4 Python/2.7.2 | 2 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9 mod_wsgi/4.1.3 Python/2.7.2 | 2 |
Apache/2.2.12 (Ubuntu) mod_python/3.3.1 Python/2.6.4 | 2 |
Apache/2.2.4 (Win32) PHP/4.4.7 | 2 |
PPX/3.4x (Unix) PHP/4.4.2 mod_ssl/2.8.27 OpenSSL/0.9.7a | 2 |
Air Pen express-Webs | 2 |
Apache/2.2.9 (FreeBSD) mod_ssl/2.2.9 OpenSSL/0.9.7e-p1 DAV/2 mod_jk/1.2.23 | 2 |
PWS/8.1.20 | 2 |
Hi | 2 |
Apache/2.4.6 (CentOS) mod_wsgi/3.4 Python/2.7.5 | 2 |
Clearswift | 2 |
Apache/2.2.9 (Win32) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8h | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.4.19 | 2 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t PHP/5.2.17 | 2 |
openresty/1.7.7.1 | 2 |
nginx/1.2.1 + Phusion Passenger 3.0.13 (mod_rails/mod_rack) | 2 |
EWS-NIC4/13.58 | 2 |
Apache/2.0.54 (Ubuntu) PHP/4.4.0-3ubuntu2 mod_ssl/2.0.54 OpenSSL/0.9.7g | 2 |
Kerio Connect 8.2.4 patch 1 | 2 |
Apache/2.4.10 (FreeBSD) PHP/5.5.19 OpenSSL/0.9.8y | 2 |
Apache/2.2.21 (Win64) mod_ssl/2.2.21 OpenSSL/1.0.0g PHP/5.3.10 | 2 |
Webcam – mbNET | 2 |
Linux, HTTP/1.1, DIR-600 Ver 2.11DE | 2 |
unkown | 2 |
TutsakHosting.SpeedX | 2 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips DAV/2 mod_jk/1.2.37 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 | 2 |
Apache/2.2.27 (FreeBSD) PHP/5.5.12 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 2 |
Play! Framework;1.2.4;prod | 2 |
PRTG/13.4.6.3375 | 2 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.14 | 2 |
NGXMP/18.0 | 2 |
Apache/2.0.54 (Unix) mod_ssl/2.0.54 OpenSSL/0.9.8e-fips-rhel5 PHP/5.1.4 | 2 |
Apache/2.2.22 (Win32) PHP/5.4.14 | 2 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze1 with Suhosin-Patch | 2 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0g PHP/5.2.17 | 2 |
Apache/2.4.9 (FreeBSD) PHP/5.4.29 | 2 |
ClearSlide/web6-b | 2 |
Apache/1.3.34 (Debian) PHP/4.4.4-8+etch6 mod_throttle/3.1.2 mod_layout/3.2.1 | 2 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.2.9 | 2 |
Apache/2.2.9 (Debian) DAV/2 mod_fcgid/2.3.6 mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 2 |
AKCP Embedded Web Server | 2 |
Dvr Web Server | 2 |
Apache/1.3.12 (Unix) (Red Hat/Linux) | 2 |
Apache/2.2.20 (Win32) mod_jk/1.2.32 | 2 |
Apache/2.2.22 (Unix) mod_jk/1.2.32 | 2 |
Apache/2.0.65 (Unix) | 2 |
Apache/1.3.33 (Unix) PHP/4.0.6 mod_ssl/2.8.24 OpenSSL/0.9.7g | 2 |
Jetty(9.2.2.v20140723) | 2 |
ARC-8C 1.15 | 2 |
Restlet-Framework/2.1m7 | 2 |
Apache/1.3.42 (Unix) PHP/5.2.9 mod_log_bytes/1.2 mod_bwlimited/1.4 mod_auth_passthrough/1.8 FrontPage/5.0.2.2635 mod_ssl/2.8.31 OpenSSL/1.0.1e-fips | 2 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 | 2 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/1.0.0e DAV/2 PHP/5.2.17 mod_fcgid/2.3.6 | 2 |
Cherokee/0.99.39 (Debian GNU/Linux) | 2 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.9 | 2 |
tivo-httpd-1:11.3b8-01-2:663 | 2 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_wsgi/3.3 Python/2.6.6 mod_bwlimited/1.4 | 2 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 2 |
AudioDevices | 2 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.37 | 2 |
Apache/2.2.29 (Unix) mod_jk/1.2.40 | 2 |
*********************** | 2 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.35 | 2 |
Apache/2.4.9 (Win64) PHP/5.5.11 | 2 |
Apache/2.2.13 (Win32) | 2 |
Apache/2.2.8 (Win32) mod_jk/1.2.24 | 2 |
Apache/2.4.6 (Fedora) OpenSSL/1.0.0-fips PHP/5.4.23 mod_perl/2.0.8-dev Perl/v5.16.3 | 2 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips SVN/1.6.11 | 2 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 PHP/5.3.28 | 2 |
Sec/3jenan.com | 2 |
Apache/2.4.10 (Unix) PHP/5.6.1 | 2 |
Apache/2.4.9 (Fedora) PHP/5.5.12 | 2 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 2 |
speed | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.4.30 | 1 |
Apache/2.2.17 (Win32) DAV/2 PHP/5.3.5 | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN2683G1DD05RQ; Margarita_premium_mp2 Built:Tue Apr 15, 2014 06:10:37PM {MPM3CN1416AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.7 mod_ssl/2.2.22 OpenSSL/0.9.8q | 1 |
Apache/2.2.22 (Win32) mod_aspdotnet/2.2 mod_ssl/2.2.22 OpenSSL/0.9.8t | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1h PHP/5.4.34 | 1 |
WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24) | 1 |
Sollae Embedded Web | 1 |
LANCOM 1781EF+ 8.78.0020 / 14.01.2013 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN2C8CWJ0805KC; Coulomb_base_pp Built:Fri Aug 03, 2012 03:39:21PM {CLP1CN1232AR, ASIC id 0x00320104} | 1 |
Apache/2.2.3 (Debian) PHP/5.2.9-0.dotdeb.2 with Suhosin-Patch mod_ssl/2.2.3 OpenSSL/0.9.8g | 1 |
Apache/1.3.37 | 1 |
Apache/2.0.50 (Win32) PHP/5.2.12 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1i DAV/2 PHP/5.4.32 | 1 |
Nginxweb/1.7.3 | 1 |
Apache/2.4.9 (FreeBSD) OpenSSL/1.0.1e-freebsd PHP/5.4.30 | 1 |
Apache/2.4.6 (Ubuntu) mod_jk/1.2.37 | 1 |
Apache/2.2.3 (Debian) mod_jk/1.2.18 mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
Apache/2.2.29 (FreeBSD) PHP/5.4.28 | 1 |
Apache/2.4.4 (Unix) OpenSSL/1.0.0-fips mod_jk/1.2.37 Phusion_Passenger/4.0.21 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips | 1 |
Wing FTP Server(Ludwig Weinrich GmbH) | 1 |
Apache/1.3.41 (Unix) PHP/5.3.21 mod_ssl/2.8.31 OpenSSL/1.0.1c | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.4.7 (Ubuntu) Phusion_Passenger/4.0.37 PHP/5.5.9-1ubuntu4.5 OpenSSL/1.0.1f mod_perl/2.0.8 Perl/v5.18.2 | 1 |
Wakanda/9 build 9.175128 (MacOS-x64) | 1 |
Apache/2.0.45 (Win32) | 1 |
Apache/2.2.4 (Win32) mod_python/3.3.1 Python/2.6.6 | 1 |
X/1.0 | 1 |
YxlinkWAF | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e PHP/5.3.23 | 1 |
username.glida.wixpress.com | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.5.17 mod_wsgi/3.5 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.2.27 (Amazon) | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.18 | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1AD60000TF | 1 |
HTTP Result-Systems/4.2.1-site Python/3.3.1/linux Linux/2.6.32-042stab088.4 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.0a | 1 |
Apache/2.0.54 (Debian GNU/Linux) DAV/2 PHP/5.2.0-8+etch9~bpo31+1 mod_ssl/2.0.54 OpenSSL/0.9.7e | 1 |
‘; DROP TABLE servertypes; — | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e mod_jk/1.2.40 PHP/5.5.6 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
OracleAS-Web-Cache-10g/9.0.4.1.0 | 1 |
nginx/1.3.6 | 1 |
Apache/2.2.27 (FreeBSD) DAV/2 mod_fastcgi/mod_fastcgi-SNAP-0910052141 mod_ssl/2.2.27 OpenSSL/0.9.8y | 1 |
Rocket 1.2.4 Python/2.7.2 | 1 |
Apache/2.2.26 (Unix) mod_jk/1.2.23 PHP/5.3.15 with Suhosin-Patch mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 | 1 |
mercedes | 1 |
Mojolicious (Perl) | 1 |
HansaWorld 6.4 2012-09-30 | 1 |
TAS embbed http | 1 |
Apusic/5.0 (AIX 6.1 ppc64; JDK 1.5.0) | 1 |
Jetty/5.1.x (Windows NT (unknown)/6.0 x86 java/1.4.1 | 1 |
LANCOM 1711 VPN 7.70.0099 / 12.08.2009 | 1 |
LANCOM 1781AW 8.50.0214 / 13.12.2011 | 1 |
Grandstream GXP2020 1.2.5.3 | 1 |
MDT-Server | 1 |
Apache/1.3.39 (Unix) mod_perl/1.27 | 1 |
nginx/1.4.3 + Phusion Passenger 4.0.25 | 1 |
nginx, mod_ruby/1.0.7 | 1 |
Apache/2.2.23 (Unix) PHP/5.2.17 | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – B0N11B; Serial Number: CN37H1CM9Z05WK; Sumbamlk_pp Built:Fri Mar 16, 2012 06:51:44AM {SMP1FN1215BR, ASIC id 0x00340100} | 1 |
Apache/2.2.27 (FreeBSD) | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3CLF3JCS05KC; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_cluster/1.3.0.Final PHP/5.4.16 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips DAV/2 mod_jk/1.2.40 | 1 |
VDC | 1 |
EWS-NIC4/10.66 | 1 |
Linux, HTTP/1.1, DIR-845L Ver 1.01KR | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1h PHP/5.5.14 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN314BXKW505KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN42FEV0V7060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.4.4 (Unix) OpenSSL/0.9.8m | 1 |
Apache/2.2.24 (FreeBSD) DAV/2 PHP/5.4.13 mod_ssl/2.2.24 OpenSSL/0.9.8q | 1 |
Apache/2.4.9 (FreeBSD) PHP/5.3.28 with Suhosin-Patch | 1 |
Oracle-Application-Server-10g/10.1.2.2.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.2.0 (G;max-age=0+0;age=0;ecid=1599025961793,0) | 1 |
Apache/2.4.7 (Ubuntu) SVN/1.8.8 mod_fcgid/2.3.9 OpenSSL/1.0.1f | 1 |
Apache/2.2.0 (Unix) DAV/2 mod_ssl/2.2.0 OpenSSL/0.9.8a PHP/5.1.1 | 1 |
Apache/2.4.10 (Win32) mod_fcgid/2.3.9 | 1 |
Jetty(8.1.9.v20130131) | 1 |
username.pizza.wixpress.com | 1 |
Cherokee/0.99.11b (UNIX) | 1 |
Apache/2.2.22 (Win32) PHP/5.4.36 | 1 |
IceWarp/11.0.1.1 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
PRTG/15.1.13.1455 | 1 |
nginx/1.1.8 | 1 |
Sun Java System Application Server 9.1 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0e PHP/5.3.27 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e PHP/5.4.22 | 1 |
Boa | 1 |
Apache/2.2.27 (Unix) PHP/5.4.27 mod_ssl/2.2.27 OpenSSL/0.9.8y | 1 |
Pronos/9.4.2 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 1 |
username.munchie.wixpress.com | 1 |
eacnurv01-varnish | 1 |
Apache/2.2.3 (Linux/SUSE) mod_ssl/2.2.3 OpenSSL/0.9.8d PHP/5.2.6 with Suhosin-Patch | 1 |
INTIVSOFT | 1 |
JAWS/1.0 Sep 16 2013 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/1.0.0a DAV/2 PHP/5.2.8 | 1 |
My Web Server (HWS86) | 1 |
username.burger.wixpress.com | 1 |
Apache/2.2.10 (Win32) PHP/5.4.22 | 1 |
Apache/2.5.0-dev (Unix) | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8u mod_wsgi/3.3 Python/2.7.5 PHP/5.4.3 | 1 |
Apache/1.3.33 (Win32) PHP/5.0.4 | 1 |
Apache/2.4.9 (Win32) PHP/5.4.28RC1 | 1 |
AV_Receiver/3.1 (RX-A820) | 1 |
VONETS_5000/1.10 | 1 |
squid/3.1.6 | 1 |
nginx/1.4.4 (Ubuntu) | 1 |
Apache/2.4.10 (Unix) PHP/5.5.14 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/1.0.1e-fips DAV/2 SVN/1.6.11 | 1 |
Linux, HTTP/1.1, WBR-2200 Ver WBR2200.R2.TR069.20131112 | 1 |
Apache/2.4.12 (Unix) OpenSSL/1.0.2a PHP/5.6.6 | 1 |
Apache/2.4.4 (Mageia) OpenSSL/1.0.1e PHP/5.4.31 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
nginx 1.2.4 | 1 |
Grandstream GXP2000 1.2.2.26 | 1 |
Apache/2.2.17 (FreeBSD) DAV/2 mod_ssl/2.2.17 OpenSSL/0.9.8q | 1 |
iGuard Embedded Web Server/5.0.9000A (LM520) SN:VK-2003-5281-BCBF | 1 |
Niagara Web Server/3.8.38 | 1 |
Apache/2.2.29 (FreeBSD) DAV/2 mod_wsgi/3.5 Python/2.7.8 mod_fastcgi/mod_fastcgi-SNAP-0910052141 mod_ssl/2.2.29 OpenSSL/1.0.1j-freebsd | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8k mod_jk/1.2.31 | 1 |
rws | 1 |
Apache/2.2.4 (Win32) mod_ssl/2.2.4 OpenSSL/1.0.1e PHP/5.4.20 | 1 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (G;max-age=0+0;age=0;ecid=260011102126453,0:1) | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.4.22 | 1 |
taiko-1.1-m2 | 1 |
ScreenConnect/4.3.6563.5232-1531612816 | 1 |
Apache/2.4.6 (CentOS) PHP/5.5.17 | 1 |
Befree4iPhone/1.2 | 1 |
IS2 Web Server 1.76 | 1 |
cisco-IOS/12.2 HTTP-server/1.0(1) | 1 |
Apache/2.2.25 (FreeBSD) mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 PHP/5.4.17 SVN/1.8.3 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u14 proxy_html/3.0.1 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.2.26 (Win32) mod_ssl/2.2.26 OpenSSL/1.0.1e PHP/5.2.11 mod_security2/2.7.5 | 1 |
LANCOM 1681V 8.50.0142 / 12.07.2011 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 Phusion_Passenger/4.0.50 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u8 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
nginx/1.3.3 | 1 |
Apache/2.0.47 (Win32) PHP/4.3.9 | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – CR231B; Serial Number: CN1AO4802B05PJ; Sumbamlk_pp Built:Tue Apr 12, 2011 04:08:55PM {SMP1FN1115AR, ASIC id 0x00340100} | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.1e-fips DAV/2 PHP/5.3.19 | 1 |
./. Server/1.0.13 | 1 |
HTTP-Server V1.74 | 1 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1i SVN/1.7.9 PHP/5.6.3 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 mod_jk/1.2.31 | 1 |
Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8d PHP/5.2.1 mod_apreq2-20051231/2.5.7 mod_perl/2.0.2 Perl/v5.8.7 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.28 | 1 |
Apache/2.2.23 (Unix) PHP/5.4.15 | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4 | 1 |
server_5376bad72c1fa | 1 |
Apache/1.3.22 (Win32) PHP/4.3.4 | 1 |
NuTACT-HTTP/1.1 | 1 |
MEPPI-MEMPHIS | 1 |
Jetty(8.1.3.v20120522) | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8x DAV/2 PHP/5.4.10 | 1 |
modpetra | 1 |
squid/3.1.21 | 1 |
Zope/(2.13.8, python 2.6.7, linux2) ZServer/1.1 | 1 |
Apache/2.2.15 (Unix) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.0 PHP/5.3.2 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.2.19 (Win32) PHP/5.2.5 | 1 |
Apache/2.2.2 (Win32) PHP/5.1.4 | 1 |
AOLserver/3.3.1+ad13 | 1 |
RaidenHTTPD/2.0.39 (Personal) | 1 |
TornadoServer/2.1 | 1 |
Apache/2.2.15 (CentOS) PHP/5.5.12 | 1 |
Apache/2.2.24 (Unix) PHP5/5.3.27 with Suhosin-Patch | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN33QBXH4205KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Alpha Five Application Server/11.0 Build/3044-4041 | 1 |
Apache/2.2.3 (Win32) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8d mod_autoindex_color PHP/5.2.0 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.6 mod_jk/1.2.32 | 1 |
HYPERPLANNING 2014 – 0.2.6 Microsoft-HTTPAPI/2.0 | 1 |
LANCOM 1721 VPN (Annex B) 8.00.0162 / 16.06.2010 | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1i SVN/1.7.17 PHP/5.4.27 | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1g PHP/5.4.27 | 1 |
IPGW16 Maintenance Server/1.0 | 1 |
Apache/2.4.9 (Win64) OpenSSL/1.0.1g | 1 |
Apache/2.4.10 (Debian) PHP/5.6.3-1 mod_python/3.3.1 Python/2.7.3rc2 mod_scgi/1.13 mod_perl/2.0.9dev Perl/v5.20.1 | 1 |
Apache/2.0.53 (Win32) PHP/5.0.5 | 1 |
Apache/2.2.17 (Unix) PHP/5.2.13 | 1 |
LANCOM 821+ (Annex A) 7.80.0081 / 06.01.2010 | 1 |
Apache/2.2.15 (Win32) PHP/5.3.4 | 1 |
Apache/2.4.6 (Win32) PHP/5.4.17 | 1 |
Apache/2.2.22 (Win32) PHP/5.4.21 | 1 |
ngx_openresty/1.2.4.14 | 1 |
Apache/2.4.4 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.11 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN05F1C0FQ05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
David-WebBox/12.00a (0770) WIN32 | 1 |
WebSocket++/0.3.0-alpha4 | 1 |
Avazu-AWS/6942 | 1 |
IS2 Web Server 1.86 | 1 |
WinGate 6.2.0 (Build 1121) | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.18 | 1 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r mod_jk/1.2.32 PHP/5.3.8 | 1 |
Tixeo | 1 |
ScreenConnect/5.0.7472.5350-1203688016 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8r DAV/2 mod_jk/1.2.26 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=1120;ecid=201314044144,0) | 1 |
Apache/2.4.6 (Win32) OpenSSL/1.0.1e PHP/5.5.3 | 1 |
Apache/2.2.6 (Unix) mod_jk2/2.0.4 | 1 |
Apache/2.0.54 (Win32) PHP/5.1.5 | 1 |
thttpd/2.19-MX Sep 1 2008 | 1 |
Apache/2.2.6 (Unix) DAV/2 PHP/4.4.9 | 1 |
CrushFTP HTTP5 Server Version 6.1.0 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8za DAV/2 mod_wsgi/3.3 Python/2.6.8 PHP/5.3.6 | 1 |
Apache/2.2.29 (Unix) DAV/2 mod_jk/1.2.40 | 1 |
HP HTTP Server; HP HP Officejet Pro 8610 – A7F64A; Serial Number: CN4CPE30M6; Built:Tue Aug 05, 2014 11:45:47AM {FDP1CN1432AR} | 1 |
Apache/1.3.41 (Unix) PHP/4.4.8 mod_gzip/1.3.26.1a mod_perl/1.30 | 1 |
Apache/2.4.7 (Win32) PHP/5.4.24 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8k DAV/2 PHP/5.3.6 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8o-fips | 1 |
Apache/2.4.6 (Red Hat) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.4.16 | 1 |
Apache/2.0.54 (Debian GNU/Linux) mod_ssl/2.0.54 OpenSSL/0.9.7e PHP/4.4.9 | 1 |
Mega_Server | 1 |
Netscape-Enterprise/3.5-For-NetWare | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.5 mod_ssl/2.2.22 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.25-1-beget (Unix) | 1 |
OSE WEB Server | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN23DBT1NH05MX; Thomson_pp_usr_hf Built:Mon Dec 05, 2011 04:30:05PM {TSP1FN1148IR, ASIC id 0x00320104} | 1 |
CherryPy/3.2.0rc1 | 1 |
Apache/1.3.37 (Unix) mod_jk/1.2.15 PHP/4.4.7 | 1 |
CloudianS3 | 1 |
Fastream IQ Web/FTP Server | 1 |
Abyss/2.0.0.20-X1-Win32 AbyssLib/2.0.0.20 | 1 |
Apache/1.3.34 (Debian) PHP/4.4.4-8+etch4 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.21 mod_ssl/2.2.25 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8r | 1 |
Apache/2.2.2 (Win32) PHP/5.2.17 | 1 |
Apache/2.2.22 (Win32) PHP/5.2.11 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN3CMEVG0W060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
HP HTTP Server; HP Officejet 6500 E710n-z – CN557A; Serial Number: CN1AS332HR05JW; Chianti_pp_usr_hf Built:Tue Jun 28, 2011 11:12:36AM {CIP1FN1126AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.18 | 1 |
BaseHTTP/0.3 Python/2.6.8 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.24 | 1 |
Apache/2.2.22 (Win32) PHP/5.2.3 | 1 |
Apache/2.4.9 (FreeBSD) OpenSSL/0.9.8y | 1 |
Apache/2.2.23 (Unix) mod_jk/1.2.15 | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.6.0 | 1 |
MIG WebService Gateway Microsoft-HTTPAPI/2.0 | 1 |
HP HTTP Server; HP Officejet 7110 series – CR768A; Serial Number: CN3CO3MG2405R1; Built:Fri May 31, 2013 07:34:28PM {EIP1FN1322BR} | 1 |
Resin/3.1.2 | 1 |
Rainbow Web Server | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 PHP/5.2.4-2ubuntu5.3 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN322BXGMD05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
lighttpd/1.4.24-devel-8545M | 1 |
Neo4 | 1 |
Apache/2.2.9 (Debian) proxy_html/3.0.0 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 mod_antiloris/0.4 | 1 |
Apache/2.2.3 (Debian) PHP/4.4.4-8+etch6 mod_ssl/2.2.3 OpenSSL/0.9.8c mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache-AdvancedExtranetServer/2.0.53 (Mandrakelinux/PREFORK-9mdk) PHP/4.3.10 | 1 |
Apache/2.4.9 (Win32) PHP/5.4.30 | 1 |
Zope/(Zope 2.10.6-final, python 2.4.5, linux2) ZServer/1.1 Plone/3.1.7 | 1 |
Wing FTP Server(Impact spa) | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.9 with Suhosin-Patch proxy_html/3.0.0 | 1 |
Private | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e PHP/5.2.9 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.37 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.2 | 1 |
XAR 1.0 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042A; Serial Number: CN46B7C3SH0602; Morgan_pendiag_pp Built:Thu Dec 19, 2013 10:03:27PM {MGP5CN1351AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.6 (Win32) mod_ssl/2.2.6 OpenSSL/0.9.8e PHP/5.2.5 | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.0 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.0.64 (Win32) mod_ssl/2.0.64 OpenSSL/0.9.8o mod_jk/1.2.26 | 1 |
Genetic Lifeform and Distributed Open Server 1.2.2 | 1 |
Apache/2.0.54 (Unix) mod_ssl/2.0.54 OpenSSL/0.9.7e DAV/2 PHP/4.3.11 mod_jk/1.2.30 | 1 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.11 | 1 |
AV_Receiver/3.1 (RX-V775) | 1 |
www.pp.myftp.info | 1 |
Apache/2.2.16 (Unix) PHP/5.2.14 | 1 |
JAWS/1.0 Nov 22 2013 | 1 |
Apache/2.0.61 (Win32) mod_jk/1.2.25 | 1 |
PHP5/Solaris9 | 1 |
Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.8c PHP/4.4.0 | 1 |
Mbedthis-AppWeb/2.0.5 | 1 |
Apache/2.2.24 (Unix) DAV/2 Phusion_Passenger/3.0.13 mod_ssl/2.2.24 OpenSSL/0.9.8y | 1 |
HP HTTP Server; HP Deskjet 4640 series – B4L10B; Serial Number: CN4533B01D05Z4; Built:Thu Dec 04, 2014 01:04:38PM {MZM1FN1449AR} | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.4.6-1ubuntu1.8 mod_ssl/2.2.22 OpenSSL/1.0.1c | 1 |
GHC | 1 |
PRTG/15.1.13.1381 | 1 |
Apache/1.3.41 (Unix) DAV/1.0.3 PHP/4.3.11 | 1 |
Samsung CLX-6260 Series, sn=Z77ABJFCC0009HP | 1 |
Apache/1.3.28 (Unix) PHP/4.3.3 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN2AUBXHJR05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e DAV/1.0.3 PHP/4.3.10-22 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN33NBWHZP05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
Apache/2.4.10 (Win32) OpenSSL/0.9.8zb PHP/5.3.29 | 1 |
InsysWEB/1.1 | 1 |
Apache/2.4.7 (Fedora) OpenSSL/1.0.1e-fips mod_jk/1.2.39 PHP/5.5.8 | 1 |
Apache/1.3.41 (Unix) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.8.31 OpenSSL/0.9.8n | 1 |
SAP NetWeaver Application Server 7.21 / AS Java 7.30 | 1 |
CherryPy/3.5.0 | 1 |
STD-Webs | 1 |
Evilzone HTTPd | 1 |
Apache/2.0.55 (Win32) PHP/5.1.2 | 1 |
Microsoft WinCE Fidelix v11.0.10 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.28 proxy_html/3.1.2 SVN/1.8.9 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8r PHP/5.3.28 | 1 |
snom embedded | 1 |
Apache/2.2.9 (FreeBSD) mod_ssl/2.2.9 OpenSSL/0.9.8e DAV/2 PHP/5.2.8 with Suhosin-Patch | 1 |
Apache/2.2.22 (Ubuntu) Phusion_Passenger/2.2.11 mod_wsgi/3.3 Python/2.7.3 | 1 |
Apache/2.4.10 (Ubuntu) SVN/1.8.9 PHP/5.5.15-1+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
Alpha Anywhere Application Server Application Server/12.0 Build/2315-4331 | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8q PHP/5.3.4 | 1 |
WebSTAR/4.4(SSL) ID/72847 | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.26 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0e | 1 |
Apache/2.2.25 (FreeBSD) mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 mod_wsgi/2.8 Python/2.7.5 | 1 |
LANCOM WLC-4025+ 8.82.0100 / 28.08.2013 | 1 |
HP HTTP Server; HP Deskjet 3070 B611 series – CQ191B; Serial Number: CN25E6811Q05MQ; Munich_mp1 Built:Thu Apr 28, 2011 03:49:36PM {MUM1FN1117BR, ASIC id 0x00340100} | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7a mod_jk/1.2.28 | 1 |
VisualWave TinyHTTP/1.0 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 | 1 |
edo v0.2 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN43MEW18G060N; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.19 mod_ssl/2.2.25 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.16 (Debian) mod_fastcgi/2.4.6 | 1 |
Apache/2.2.23 (FreeBSD) mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 PHP/5.4.7 mod_perl/2.0.7 Perl/v5.14.2 | 1 |
username.pasta.wixpress.com | 1 |
Apache/1.3.37 (Unix) PHP/4.4.3 mod_perl/1.29 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3C5F3GXT05KC; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
thttpd/2.3 | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.26 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.4.4 (Unix) SVN/1.7.8 PHP/5.4.12 OpenSSL/1.0.1c | 1 |
****** | 1 |
CouchDB/1.0.1 (Erlang OTP/R12B) | 1 |
Apache/2.4.10 (Fedora) mod_wsgi/3.5 Python/2.7.5 | 1 |
PicLan-IP 2.0.0 (build 167) | 1 |
EZPacket Web Server | 1 |
Jbed WebServer | 1 |
Zope/(Zope 2.8.10-1, python 2.4.3, linux2) ZServer/1.1 Plone/Unknown | 1 |
Apache/2.4.12 (Unix) OpenSSL/1.0.2 PHP/5.6.6 | 1 |
Kerio Connect 7.0.0 patch 2 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1j PHP/5.4.35 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1e-freebsd PHP/5.4.36 SVN/1.8.11 | 1 |
Apache/2.4.2 (Win64) SVN/1.7.8 PHP/5.4.3 | 1 |
GIANTS Dedicated Server GIANTS Dedicated Server/6.0.3.0 | 1 |
Apache/1.3.37 (Unix) PHP/5.1.6 | 1 |
Apache/1.3.41 (Darwin) mod_ssl/2.8.31 OpenSSL/0.9.7l | 1 |
Apache/2.2.24 (Win64) mod_ssl/2.2.24 OpenSSL/1.0.1e PHP/5.4.12 | 1 |
Apache/2.2.9 (Unix) DAV/2 PHP/4.4.9 | 1 |
Motion/mmaltest | 1 |
splib WebServerSocket | 1 |
Oracle GlassFish Server 3.1 | 1 |
Norbain-Webs | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.15 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
Apache/2.2.24 (Win64) PHP/5.3.22 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t mod_jk/1.2.37 PHP/5.2.17 | 1 |
ScreenConnect/4.1.5716.5078-4187666215 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 1 |
Cougar/9.01.01.5000 | 1 |
Apache/2.2.3 (Debian) DAV/2 PHP/5.2.6-0.dotdeb.1 with Suhosin-Patch mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
Resin/4.0.42 | 1 |
Apache/2.2.13 (FreeBSD) mod_ssl/2.2.13 OpenSSL/0.9.8k DAV/2 PHP/5.2.11 with Suhosin-Patch | 1 |
QQZM-Webs/2.5.0 | 1 |
Apache/2.2.3 (Win32) mod_ssl/2.2.3 OpenSSL/0.9.8c mod_jk/1.2.19 | 1 |
PowerStudio v4.01 | 1 |
Apache/1.3.33 (Darwin) mod_jk/1.2.6 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 | 1 |
Apache/2.2.23 (Unix) PHP/5.3.11 | 1 |
NWS_Appimg_HY | 1 |
Apache/2.2.17 (Win32) mod_auth_token/1.0.6 | 1 |
kangle/3.4.4 | 1 |
username.hummus.wixpress.com | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN42C8S39705RN; Margarita_mid_pendiag_mp2 Built:Fri Aug 16, 2013 12:59:14PM {MIM5CN1333AR, ASIC id 0x003a0008} | 1 |
Apache/2.4.10 (Fedora) mpm-itk/2.4.7-01 PHP/5.5.15 | 1 |
HomeSeer | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM750A; Serial Number: CN246BR0CX05KD; Coulomb_pp Built:Thu Aug 28, 2014 02:10:13PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
OmniTicket | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8o PHP/5.2.17 | 1 |
792/12452 HTTP Server version 2.0 – TELDAT S.A. | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.31 | 1 |
Apache/2.4.7 (Win32) PHP/5.5.10 | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1BC900093K | 1 |
Apache/2.2.3 (CentOS) mod_jk/1.2.28 PHP/5.1.6 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 | 1 |
David-WebBox/12.00a (0928) WIN32 | 1 |
lighttpd/1.4.28-devel-727 | 1 |
Apache-AdvancedExtranetServer/2.0.48 | 1 |
Apache/2.2.29 (Win32) | 1 |
Un mix de apache, lighty, nginx, un batard quoi! | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN2CN5RGNP05RN; Margarita_mid_mp2 Built:Fri May 31, 2013 03:34:51PM {MIM2CN1322DR, ASIC id 0x003a0008} | 1 |
IBM_HTTP_Server/6.0.2.21 Apache/2.0.47 (Win32) | 1 |
Realmagic Technology Co., Ltd. | 1 |
JAWS/1.0 Oct 26 2013 | 1 |
Apache/2.0.54 (Debian GNU/Linux) mod_ssl/2.0.54 OpenSSL/0.9.7e | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/1.0.0d DAV/2 SVN/1.7.8 mod_wsgi/3.3 Python/2.7.2 | 1 |
Oracle-Application-Server-10g/10.1.2.2.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (N;ecid=72057857227195816,0) | 1 |
Apache/2.2.3 (Win32) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8d mod_autoindex_color PHP/4.4.2 | 1 |
MySonc | 1 |
Apache/2.4.6 (Win32) PHP/5.4.3 | 1 |
username.daiquiri.wixpress.com | 1 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.15 Phusion_Passenger/2.2.15 mod_ssl/2.2.22 OpenSSL/0.9.8r | 1 |
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.27 | 1 |
HP HTTP Server; HP HP Officejet Pro 8640 – E2D42A; Serial Number: CN45CA306V; Built:Fri Jan 09, 2015 04:18:35PM {FDP1CN1502AR} | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.16 mod_python/3.3.1 Python/2.4.3 mod_wsgi/3.3 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8o DAV/2 PHP/5.3.17 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=1651656069699,0) | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D4B1BF20006AR | 1 |
Apache/1.3.41 (Unix) mod_ssl/2.8.31 OpenSSL/0.9.8x | 1 |
Apache/1.3.34 (Unix) PHP/4.4.1 mod_jk/1.2.4 | 1 |
Helix Universal Media Server/15.0.0.266 (win-x86_64-vc10) | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 DAV/2 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze14 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.1 (G;max-age=0+0;age=0;ecid=144115670447197992,1) | 1 |
Zope/(Zope 2.10.9-final, python 2.4.4, win32) ZServer/1.1 | 1 |
LANCOM 7100+ VPN 8.80.0157 / 16.04.2013 | 1 |
Visualware MyConnection Server Professional Edition 9.7g | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.8 | 1 |
Ironwall/servweb741 | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1h PHP/5.5.14 | 1 |
Apache/2.4.2 (Unix) PHP/5.4.3 | 1 |
Apache/2.2.27 (Win32) DAV/2 mod_ssl/2.2.27 OpenSSL/1.0.1g PHP/5.4.11 SVN/1.7.8 | 1 |
GeoCorp 1.3.37 | 1 |
AvigilonServer/4.12.0.36 | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 mod_python/3.3.1 Python/2.5.2 PHP/5.2.4-2ubuntu5.10 with Suhosin-Patch | 1 |
Apache/2.2.29 (Gentoo) | 1 |
Dykema-LAN | 1 |
Apache/2.2.22 (CentOS) DAV/2 PHP/5.3.3 | 1 |
Apache/2.0.54 HP-UX_Apache-based_Web_Server (Unix) DAV/2 | 1 |
Apache/2.2.21 (Unix) PHP/5.3.9 | 1 |
Apache/2.2.3 (Unix) mod_jk/1.2.18 | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – B0N11B; Serial Number: CN36P1CG2Q05WK; Sumbamlk_pp Built:Fri Mar 16, 2012 06:51:44AM {SMP1FN1215BR, ASIC id 0x00340100} | 1 |
Hauppauge’s DVB EPG Webserver v0.5 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.4.7 mod_ssl/2.2.23 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.37 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch proxy_html/3.0.0 mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Apache/2.2.8 (Unix) PHP/5.3.27 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8zb DAV/2 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.30 mod_ssl/2.2.27 OpenSSL/0.9.8y mod_perl/2.0.8 Perl/v5.14.4 | 1 |
IllusionPerdu | 1 |
Samsung M332x 382x 402x Series, sn=ZDGABJAF20000MJ | 1 |
SimpleHelp/SSuite-3-12-20120715-140546 | 1 |
nginx + Phusion Passenger 4.0.2 | 1 |
Apache/2.2.9 (Win32) | 1 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.7a PHP/4.4.4 | 1 |
Apache/2.4.10 (Fedora) PHP/5.5.14 | 1 |
ServDroid server | 1 |
Apache/2.4.9 (Ubuntu) PHP/5.5.16-1+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 PHP/5.3.26 mod_fastcgi/2.4.2 SVN/1.6.17 | 1 |
Apache/2.2.9 (Unix) DAV/2 PHP/5.2.10 | 1 |
Apache/2.4.3 (Win32) OpenSSL/0.9.8x PHP/5.3.20 mod_wsgi/3.4 Python/2.7.2 | 1 |
Apache/2.4.10 (Win64) PHP/5.5.20 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.4.5 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips DAV/2 | 1 |
Apache/2.2.23 (Gentoo) proxy_html/3.0.1 mod_ssl/2.2.23 OpenSSL/1.0.0j | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1BD8000M8N | 1 |
Hiawatha v8.4 | 1 |
TiMMiT HTTPD Server powered by Apache | 1 |
KFWebServer/3.2.0 Windows 98 | 1 |
Apache/1.3.41 (Darwin) mod_ssl/2.8.31 OpenSSL/0.9.7l PHP/4.4.8 | 1 |
WowzaStreamingEngine/4.0.4.01 | 1 |
CUPS/1.4 | 1 |
Apache/2.4.6 (FreeBSD) PHP/5.4.26 SVN/1.8.8 | 1 |
Apache/2.4.3 (Unix) mod_mono/2.11 | 1 |
Apache/2.4.6 (Fedora) PHP/5.5.3 | 1 |
KOTP/1.7.10 | 1 |
XVR Http Server | 1 |
Apache/2.2.8 (Debian) PHP/5.2.5-3 with Suhosin-Patch proxy_html/3.0.1 mod_ssl/2.2.8 OpenSSL/0.9.8o | 1 |
Apache/2.4.9 (FreeBSD) OpenSSL/1.0.1e-freebsd PHP/5.3.28 with Suhosin-Patch | 1 |
bchain SocketServer | 1 |
Apache/2.2.21 (Win32) PHP/5.2.2 | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.0-fips mod_wsgi/3.2 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/1.3.19 (Win32) | 1 |
Apache/2.2.13 (FreeBSD) DAV/2 PHP/5.2.10 with Suhosin-Patch | 1 |
Apache/2.0.46 (Unix) mod_ssl/2.0.46 OpenSSL/0.9.6g mod_jk2/2.0.0 PHP/5.0.5 | 1 |
Apache/2.4.12 (FreeBSD) OpenSSL/1.0.1e-freebsd PHP/5.6.5 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN35TBXJ6Y05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.18 | 1 |
Apache/2.2.29 (Unix) PHP/5.3.29 | 1 |
Apache/2.2.11 (Unix) PHP/5.2.9 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_perl/2.0.8 Perl/v5.8.8 | 1 |
WSGIServer/0.2 CPython/3.3.2 | 1 |
Apache/2.4.9 (Win32) mod_wsgi/3.5-BRANCH Python/2.7.6 PHP/5.5.12 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8l | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.4.29 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8o mod_jk/1.2.13 | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.18 mod_wsgi/3.5 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.4 | 1 |
PRTG/14.3.11.2954 | 1 |
WebCit 8.16 / Citadel 8.16 | 1 |
Zope/(2.13.15, python 2.6.4, linux2) ZServer/1.1 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3BFE3K03060N; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.30 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8za | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_qos/10.10 | 1 |
Jino.ru/mod_pizza | 1 |
Serv-U/7.4.0.1 | 1 |
Apache/2.2.9 (Debian) mod_jk/1.2.28 mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
AV_Receiver/3.1 (RX-V773) | 1 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7a DAV/2 | 1 |
rws JRun/4.0 | 1 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8i PHP/5.2.5 | 1 |
Grandstream | 1 |
Tengine/1.3.0 | 1 |
Apache/1.3.34 (Debian) mod_throttle/3.1.2 PHP/4.4.4-8+etch6 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u7 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.4.23 mod_ssl/2.2.26 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
Alpha Anywhere Application Server Application Server/12.0 Build/2568-4401 | 1 |
Apache/2.2.21 (Win32) PHP/5.4.6 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 PHP/5.5.19 mod_jk/1.2.31 | 1 |
text | 1 |
LANCOM 1724 VoIP (Annex B) 8.82.0100 / 28.08.2013 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e Phusion_Passenger/2.0.3 | 1 |
Apache-AdvancedExtranetServer | 1 |
WEBrick/1.3.1 (Ruby/2.0.0/2014-02-24) | 1 |
markentier.de | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8zc DAV/2 PHP/5.4.34 mod_jk/1.2.37 mod_perl/2.0.8 Perl/v5.10.1 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8o PHP/5.4.29 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3AVE3HZW05KC; Coulomb_base_kaiser_pp Built:Fri May 31, 2013 04:12:32PM {CKP1CN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i | 1 |
nginx/1.2.7 + Phusion Passenger 4.0.0.rc5 | 1 |
Apache/2.2.13 (Win32) PHP/5.2.5 | 1 |
No Information | 1 |
Apache/2.0.49 (Unix) mod_ssl/2.0.49 OpenSSL/0.9.6b PHP/5.0.0 mod_jk/1.2.12 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.30 mod_fcgid/2.3.9 Phusion_Passenger/4.0.45 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
Apache/1.3.33 (Debian GNU/Linux) PHP/4.2.2 | 1 |
HP HTTP Server; HP Photosmart Prem C310 series – CN503B; Serial Number: CN092122BM05KM; Tassenplus Built:Thu Aug 12, 2010 12:38:51PM {TPI2CN1032BR, ASIC id 0x00320104} | 1 |
Apache/1.3.33 (Debian GNU/Linux) mod_gzip/1.3.26.1a PHP/4.4.0-3 mod_perl/1.29 | 1 |
Apache/2.4.1 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.4.0 SVN/1.7.2 | 1 |
Apache/2.4.10 (Debian) OpenSSL/1.0.1i | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.5.21 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Zope/(2.13.10, python 2.6.6, linux2) ZServer/1.1 | 1 |
nginx/1.4.2-win64 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.9 mod_jk/1.2.32 | 1 |
Apache/2.2.17 (Unix) PHP/5.3.3 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.3.21 with Suhosin-Patch mod_fcgid/2.3.6 mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 1 |
LANCOM 1711 VPN 8.62.0029 / 20.06.2012 | 1 |
Wing FTP Server(Mario Kaserer) | 1 |
Apache/1.3.33 (Win32) ApacheJServ/1.1.2 | 1 |
Zope/(Zope 2.8.9-final, python 2.3.5, linux3) ZServer/1.1 Plone/2.1.4 | 1 |
webconfd | 1 |
Apache/2.2.22 (Debian) PHP/5.3.3-7+squeeze19 with Suhosin-Patch | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.6.19 PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.20 (Unix) DAV/2 mod_jk/1.2.37 | 1 |
LANCOM 1823 VoIP (Annex B) 8.00.0162 / 16.06.2010 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_mono/2.6.3 mod_jk/1.2.37 mod_bwlimited/1.4 PHP/5.4.29 | 1 |
Apache/2.2.27 (FreeBSD) mod_fcgid/2.3.9 | 1 |
Apache/1.3.33 (Unix) mod_perl/1.29 mod_ssl/2.8.22 OpenSSL/0.9.7e | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.7 | 1 |
T-Systems | 1 |
Apache/2.2.9 (Debian) mod_perl/2.0.4 Perl/v5.10.0 | 1 |
MiniServ/1.720 | 1 |
www | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.13 | 1 |
Dykema-AA | 1 |
Apache/2.4.6 (Unix) PHP/5.5.5 OpenSSL/1.0.1e | 1 |
Saia PCD3.M5340/1.14.23 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i mod_fcgid/2.3.9 | 1 |
Apache/2.4.7 (Ubuntu) mod_fastcgi/mod_fastcgi-SNAP-0910052141 | 1 |
Apache/2.0.49 (Win32) mod_perl/1.99_12 Perl/v5.8.3 mod_ssl/2.0.49 OpenSSL/0.9.7d mod_python/3.1.3 Python/2.3.3 mod_fastcgi/2.4.2 mod_jk/1.2.0 DAV/2 | 1 |
Apache/2.2.19 (Unix) PHP/5.3.6 | 1 |
David-WebBox/12.00a (0938) WIN32 | 1 |
Apache/2.0.58 (Win32) PHP/4.4.8 | 1 |
Mil-agcv-arlatighislandi-it | 1 |
Apache/2.0.52 (Unix) mod_perl/1.99_17 Perl/v5.8.4 mod_ssl/2.0.52 OpenSSL/0.9.7d PHP/5.0.3 DAV/2 | 1 |
Apache/2.2.10 (Unix) mod_ssl/2.2.10 OpenSSL/0.9.8r DAV/2 PHP/5.2.8 | 1 |
Microsoft-IIS/7.5, Apache | 1 |
Apache/2.2.8 (Unix) DAV/2 mod_jk/1.2.25 | 1 |
NGS | 1 |
Apache/2.2.6 (Unix) mod_ssl/2.2.6 PHP/5.2.5 | 1 |
WebCit 8.14 / Citadel 8.14 | 1 |
PRDKS | 1 |
Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m mod_apreq2-20051231/2.6.3-dev mod_perl/2.0.4-dev Perl/v5.10.1 | 1 |
Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e mod_autoindex_color PHP/5.2.1 | 1 |
Aterm/1.0.0 | 1 |
LANCOM 1721 VPN (Annex A) 7.80.0081 / 06.01.2010 | 1 |
Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o mod_python/3.3.1-ts Python/2.5.4 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.3.22 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1c SVN/1.8.1 | 1 |
Apache/2.4.6 (Red Hat) PHP/5.5.6 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny2 with Suhosin-Patch proxy_html/3.0.0 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.2.25 (Win32) PHP/5.3.4 | 1 |
WPI | 1 |
FlyNOS_webserver | 1 |
Apache/2.0.59 (Win32) PHP/5.1.4 | 1 |
Xavante 2.2.0 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.3.21 with Suhosin-Patch mod_ssl/2.2.23 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.3.24 with Suhosin-Patch mod_ssl/2.2.24 OpenSSL/0.9.8x DAV/2 | 1 |
JVC VN-X35 API Server | 1 |
Apache/2.2.6 (Win32) DAV/2 mod_ssl/2.2.6 OpenSSL/0.9.8g mod_autoindex_color PHP/5.2.5 | 1 |
Apache/2.2.14 (Win32) PHP/5.3.0 | 1 |
ZOT-PS-39/6.3.0009 | 1 |
JAWS/1.0 Jul 2 2013 | 1 |
HP HTTP Server; HP Deskjet 2540 series – A9U22B; Serial Number: CN4283B6H80604; Built:Wed Aug 14, 2013 10:30:50PM {CBP1FN1333AR} | 1 |
Apache/2.2.24 (Win32) PHP/5.3.28 | 1 |
Apache/2.4.4 (Win32) SVN/1.7.8 | 1 |
Apache/1.3.41 (Darwin) PHP/5.2.4 | 1 |
lighttpd/1.4.28-devel-677M | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_qos/10.10 | 1 |
Apache/2.2.4 (Win32) PHP/5.2.2 | 1 |
Apache/2.4.6 (Win64) PHP/5.4.12 | 1 |
Apache/2.4.9 (Unix) PHP/5.6.2 | 1 |
iGuard Embedded Web Server/5.0.9000A (LM520) SN:VK-2003-51D5-BE11 | 1 |
Apache/2.2.13 (Unix) | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8m | 1 |
HP HTTP Server; HP Photosmart 7510 series – CQ880A; Serial Number: CN227340NY05T6; Vesuvius_pp Built:Fri Sep 16, 2011 05:50:01PM {VEP1CN1137CR, ASIC id 0x0038000c} | 1 |
Apache 1.3.27 | 1 |
Apache/2.4.9 (Unix) PHP/5.5.11 Phusion_Passenger/3.0.19 | 1 |
HP HTTP Server; HP Photosmart 5510 series – CQ176A; Serial Number: CN23C344W905V4; Epsilon_asiankeyboard Built:Tue Sep 25, 2012 10:50:57AM {EAL2CN1239AR, ASIC id 0x003a0008} | 1 |
Perl Dancer2 0.143000 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8t DAV/2 PHP/5.3.10 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8o PHP/5.3.8 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN32JBWJTN05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8zb DAV/2 mod_mono/2.10 | 1 |
Ethernut 4.1.9.1 rc | 1 |
Zope/(2.12.18, python 2.6.7, linux2) ZServer/1.1 | 1 |
Apache/2.2.4 (Unix) PHP/5.3.6 | 1 |
squid/3.0.STABLE8 | 1 |
Apache/2.4.10 (Fedora) PHP/5.6.6 | 1 |
NetCast-HttpSvr/1.0 | 1 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8e-fips-rhel5 Phusion_Passenger/3.0.12 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
AV_Receiver/3.1 (RX-V577) | 1 |
************ | 1 |
Apache/2.0.59 (Win32) mod_ssl/2.0.59 OpenSSL/0.9.7j PHP/5.1.6 | 1 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.2.10 | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN27K13D5005SY; Stuttgart_pp Built:Fri Mar 30, 2012 03:40:38AM {STP1FN1213HR, ASIC id 0x00340104} | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_jk/1.2.37 | 1 |
LeCloudSuisse | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.5 | 1 |
Jetty(7.6.5.v20120716) | 1 |
Apache/2.2.24 (Win32) PHP/5.3.21 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
Keil-EWEB/2.0 | 1 |
Saia PCD2M5540/1.10.16 | 1 |
PowerStudio v4.0 | 1 |
Serv-U/12.0.0.2 | 1 |
PRTG/14.1.8.1370 | 1 |
Thy/0.9.4 | 1 |
Apache/2.4.2 (Win32) PHP/5.4.4 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1e-freebsd PHP/5.4.34 | 1 |
Apache/2.2.23 | 1 |
NEAB-Sweden | 1 |
ams | 1 |
LANCOM 1781-4G 8.60.0202 / 04.06.2012 | 1 |
Apache/2.4.4 (Win32) OpenSSL/1.0.1e PHP/5.5.0 | 1 |
lighttpd/1.4.28-devel-7190 | 1 |
Serv-U/10.2.0.2 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0h PHP/5.3.10 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze14 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
BECCA 0.0.1 | 1 |
Apache/2.2.9 (Debian) mod_fastcgi/2.4.6 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_wsgi/2.5 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
ARC-8C 1.16 | 1 |
Apache/2.2.12 (Win32) DAV/2 mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 Phusion_Passenger/2.2.11 PHP/5.3.3-7+squeeze7 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8o | 1 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.7m DAV/2 mod_jk2/2.0.4 mod_jk/1.2.19 | 1 |
Apache/2.2.26 (Unix) PHP/5.3.28 mod_wsgi/3.3 Python/2.7.2 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 | 1 |
Apache/2.2.29 (FreeBSD) DAV/2 | 1 |
Apache/2.4.6 (Unix) mod_jk/1.2.37 | 1 |
ScreenConnect/4.2.6403.5198-4218064464 | 1 |
Apache/2.2.3 (CentOS) DAV/2 PHP/5.1.6 | 1 |
Apache/2.2.25 (Win32) SVN/1.7.8 PHP/5.4.26 DAV/2 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1h DAV/2 PHP/5.5.14 | 1 |
Apache/2.2.15 (CentOS) mod_jk/1.2.30 | 1 |
Unknown/0.0 UPnP/1.0 Virata-EmWeb/R6_0_2i3 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CN578A; Serial Number: CN33LBWJCY05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN2ATBXJ5N05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1g PHP/5.5.7 | 1 |
LiteServe/2.7 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 | 1 |
Apache/2.2.21 (Win64) mod_cluster/1.2.6.Final | 1 |
Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.9 | 1 |
Apache/2.2.26 (Win32) SVN/1.8.8 DAV/2 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips | 1 |
Apache/2.2.29 (FreeBSD) PHP/5.4.38 mod_ssl/2.2.29 OpenSSL/0.9.8zd-freebsd | 1 |
OpenCms/8.0.4 | 1 |
LANCOM 1821n Wireless 8.80.0135 / 28.02.2013 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.13 | 1 |
Apache/2.4.7 (Ubuntu) Phusion_Passenger/4.0.37 PHP/5.5.9-1ubuntu4.6 OpenSSL/1.0.1f | 1 |
Why are you looking at this. | 1 |
ALT-N SecurityGateway 2.1.2 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8y DAV/2 PHP/5.4.10 | 1 |
Apache/2.2.13 (Win32) PHP/5.2.4 | 1 |
Apache/2.4.10 (Win32) PHP/5.5.15 | 1 |
Apache/2.2.8 (Unix) DAV/2 mod_apreq2-20051231/2.6.0 mod_perl/2.0.2 Perl/v5.10.0 | 1 |
KissKont\v1.0(web) | 1 |
Java Composer Server 2.1 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.3.19 with Suhosin-Patch mod_ssl/2.2.23 OpenSSL/0.9.8x DAV/2 | 1 |
gunicorn/0.14.6 | 1 |
ISC SCADA Service HTTPserv:00001 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN23QBT1WB05KC; Coulomb_base_pp Built:Fri Aug 03, 2012 03:39:21PM {CLP1CN1232AR, ASIC id 0x00320104} | 1 |
Apache/2.4.10 (Ubuntu) PHP/5.5.21-1+deb.sury.org~precise+2 OpenSSL/1.0.1 | 1 |
David-WebBox/12.00a (0831) WIN32 | 1 |
Apache/2.0.55 (Unix) DAV/2 PHP/5.3.10 | 1 |
Skymo Engine | 1 |
Apache/2.4.9 (Fedora) PHP/5.5.10 | 1 |
Apache/2.2.19 (Win32) PHP/5.2.9 | 1 |
nginx/1.4.1 + Phusion Passenger 3.0.19 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN254BQ06Q05MX; Thomson_pp_usr_hf Built:Mon Dec 05, 2011 04:30:05PM {TSP1FN1148IR, ASIC id 0x00320104} | 1 |
nginx/1.5.6 + Phusion Passenger 4.0.40 | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN23Q2H1XF05RN; Margarita_mid_mp2 Built:Thu Aug 28, 2014 03:19:28PM {MIM2CN1435AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.3.23 | 1 |
EWS-NIC5/93.47 | 1 |
Apache/2.4.4 (Unix) PHP/5.5.0 | 1 |
Apache Helicopter | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze14 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips PHP/5.3.3 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1j-freebsd PHP/5.4.35 | 1 |
kangle/3.2.6 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN389A3G30060N; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.2.9 (Win32) mod_ssl/2.2.9 OpenSSL/0.9.8h | 1 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8e DAV/2 SVN/1.5.2 PHP/4.4.9 | 1 |
Apache/2.2.21 (Unix) PHP/5.2.17 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=99991250696,0) | 1 |
Apache/2.0.59 (Win32) PHP/4.4.5 | 1 |
thttpd/2.19-MX May 19 2006 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.4.7 (Unix) PHP/5.2.17 | 1 |
Apache/2.2.26 (Unix) mod_jk/1.2.30 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 1 |
shee | 1 |
Apache/2.2.16 (Unix) DAV/2 PHP/5.2.14 | 1 |
Apache/1.3.23 (Unix) | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.27 | 1 |
ICEFLOW/tWeb 1.0 | 1 |
Apache/1.3.26 | 1 |
gogogadgeto-server stable | 1 |
HP HTTP Server; HP Officejet 7110 series – CR768A; Serial Number: CN34T1THHK05R1; Built:Wed Nov 07, 2012 11:48:19AM {EIP1FN1245BR} | 1 |
Apache/2.0.55 (Ubuntu) mod_jk/1.2.14 PHP/4.4.2-1build1 mod_scgi/1.9 mod_ssl/2.0.55 OpenSSL/0.9.8a | 1 |
nginx/1.4.1 + Phusion Passenger 4.0.2 | 1 |
Kerio Connect 7.2.0 patch 1 | 1 |
hocvps-nginx | 1 |
LINICKX Web Server | 1 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1h | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8u PHP/5.4.3 | 1 |
Silverlake Cloud Computing Version 4.58 GA | 1 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.3.8 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=16;ecid=72058577247074102,0) | 1 |
Apache/2.2.3 (Debian) mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch7 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.4.6 (Fedora) PHP/5.5.4 | 1 |
Apache/2.2.11 (Unix) DAV/2 PHP/5.2.10 | 1 |
Apache/2.4.6 (CentOS) PHP/5.4.16 mod_perl/2.0.9dev Perl/v5.16.3 | 1 |
Apache/2.0.64 (Unix) DAV/2 PHP/5.2.14 mod_ssl/2.0.64 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/1.3.34 (Unix) PHP/5.2.9 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-1+lenny16 with Suhosin-Patch | 1 |
Apache/1.3.33 (Cygwin) | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: 000000000010; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.2.3 (Win32) mod_ssl/2.2.3 OpenSSL/0.9.8d PHP/5.4.29 | 1 |
Apache-AdvancedExtranetServer/1.3.26 (Mandrake Linux/6mdk) sxnet/1.2.4 mod_ssl/2.8.10 OpenSSL/0.9.6g PHP/4.2.3 | 1 |
Gatling/0.13 | 1 |
Allegro-Software-RomPager/2.00 | 1 |
Apache/2.2.17 (Win32) PHP/5.4.15 | 1 |
Apache/2.2.14 (Unix) DAV/2 PHP/5.3.8 mod_jk/1.2.37 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips | 1 |
Uniline-4 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1g DAV/2 | 1 |
bozohttpd/20100621 | 1 |
Apache/2.2.26 (Unix) DAV/2 SVN/1.6.18 mod_ssl/2.2.26 OpenSSL/0.9.8za | 1 |
Apache/1.3.11 (Win32) mod_perl/1.20 | 1 |
lighttpd/1.4.33-devel-12e4e21 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.4.35 | 1 |
Apache/2.2.20 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.2.5 | 1 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8g PHP/5.2.5 | 1 |
NW HDI TECHNOLOGY | 1 |
LANCOM 1722 VoIP (Annex B) 8.60.0189 / 02.04.2012 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.7l DAV/2 mod_jk/1.2.23 mod_jk/1.2.23 PHP/5.2.6 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_jk/1.2.31 | 1 |
Toofun/1.0.1 | 1 |
Wing FTP Server(board.com) | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.3.15 | 1 |
Apache/1.3.27 (Unix) PHP/4.3.0 | 1 |
Apache/2.2.25 (Win32) PHP/5.4.37 | 1 |
Apache/2.2.8 (Win32) mod_ssl/2.2.8 OpenSSL/0.9.8g PHP/5.2.6 | 1 |
Apache/2.2.10 (Win32) PHP/5.2.7 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN46L7163C0602; Morgan_pendiag_pp Built:Mon Oct 27, 2014 08:44:08AM {MGP5CN1444AR, ASIC id 0x003a0008} | 1 |
ECS (ewr/1584) | 1 |
Apache/1.3.29 (Unix) PHP/4.4.4 | 1 |
Apache/2.4.9 (Win32) | 1 |
Apache/2.0.58 (Win32) PHP/5.2.17 | 1 |
ARC-4C 1.17 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=21;ecid=144116480522092023,0) | 1 |
Apache/1.3.34 (Debian) PHP/4.4.4-8+etch6 mod_ssl/2.8.25 OpenSSL/0.9.8c | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.1e-fips PHP/5.5.7 | 1 |
Apache/2.2.23 (FreeBSD) mod_ssl/2.2.23 OpenSSL/0.9.8x PHP/5.4.10 DAV/2 SVN/1.7.8 mod_perl/2.0.8 Perl/v5.14.2 | 1 |
Apache/2.4.12 (FreeBSD) OpenSSL/1.0.1l PHP/5.5.21 | 1 |
Apache/1.3.27 (Unix) mod_ssl/2.8.12 OpenSSL/0.9.7a | 1 |
Jetty(6.1.25) | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN34K6RGHY05RN; Margarita_mid_mp2 Built:Tue Apr 15, 2014 05:09:06PM {MIM2CN1416AR, ASIC id 0x003a0008} | 1 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.7a mod_jk/1.2.28 | 1 |
CenteHTTPd/1.52 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 PHP/5.3.28 with Suhosin-Patch | 1 |
Apache/2.2.27 (Unix) DAV/2 PHP/5.3.27 | 1 |
Apache/2.2.8 (Ubuntu) Phusion_Passenger/3.0.17 PHP/5.2.4-2ubuntu5.17 with Suhosin-Patch | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e-fips PHP/5.5.9 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Zope/(2.13.16, python 2.6.7, linux2) ZServer/1.1 | 1 |
Apache/2.2.22 (Win32) PHP/5.2.4 | 1 |
Tengine/1.5.1 | 1 |
Apache/2.0.59 (Win32) PHP/5.2.1 mod_jk/1.2.6 | 1 |
HP HTTP Server; HP Deskjet 2540 series – A9U22B; Serial Number: CN4413N48S0604; Built:Wed Aug 14, 2013 10:30:50PM {CBP1FN1333AR} | 1 |
Apache/2.0.48 (Unix) mod_jk2/2.0.2 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8k | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8g PHP/5.2.12 mod_fastcgi/2.4.6 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.0-fips DAV/2 PHP/5.2.5 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8o | 1 |
Apache/2.2.25 (Win32) PHP/5.2.6 mod_jk/1.2.40 | 1 |
LANCOM 1823 VoIP (Annex B) 7.26.0049 / 21.11.2007 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.10-2ubuntu6.7 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.7(2011-02-18) mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Mac OS X, UPnP/1.0, Elgato EyeConnect/2.0 | 1 |
Apache/2.4.6 (Unix) PHP/5.5.4 | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.4.36 | 1 |
Partners-Conference-Room | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.27 mod_ssl/2.2.27 OpenSSL/1.0.1f DAV/2 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 DAV/2 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.7 mod_ssl/2.2.22 OpenSSL/0.9.8za-freebsd DAV/2 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.4.12 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.6.1 | 1 |
StreamServer | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_ssl/2.8.12 OpenSSL/0.9.6b DAV/1.0.3 PHP/4.1.2 mod_perl/1.26 | 1 |
Apache/2.0.48 (Unix) mod_perl/1.99_12 Perl/v5.8.2 | 1 |
HP HTTP Server; HP Photosmart 5510 series – CQ176A; Serial Number: CN22L346QD05V4; Epsilon_asiankeyboard Built:Tue Sep 25, 2012 10:50:57AM {EAL2CN1239AR, ASIC id 0x003a0008} | 1 |
ARC-4C 1.15 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.5.15 | 1 |
Apache/2.2.0 (Unix) PHP/5.2.5 | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN27C4G10205RQ; Margarita_premium_mp2 Built:Fri May 31, 2013 08:11:01PM {MPM3CN1322DR, ASIC id 0x003a0008} | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN2CD5QHT905RN; Margarita_mid_mp2 Built:Thu Aug 28, 2014 03:19:28PM {MIM2CN1435AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.25 (Win32) PHP/5.4.9 | 1 |
VPort 354 4CH Video Encoder | 1 |
Freak-2.de | 1 |
Apache/1.3.33 (Debian GNU/Linux) PHP/5.2.0-kwartz1 mod_ssl/2.8.22 OpenSSL/0.9.7e | 1 |
3G GmbH/1.1 (Windows) – pure HTTP-Server | 1 |
Secured By BH-SERVER.COM | 1 |
gen5th/1.33.00 | 1 |
e@sy-pro v7.0.1 14/01/2014 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.1.6 | 1 |
RWAPM X-Server Apache | 1 |
TAsnim | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.11 mod_jk/1.2.32 | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_fcgid/2.3.9 PHP/5.3.3 mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 1 |
gunicorn/0.17.2 | 1 |
Apache/2.2.9 (Debian) mod_jk/1.2.28 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8k DAV/2 PHP/5.2.10 mod_perl/2.0.5 Perl/v5.10.0 | 1 |
Apache/2.2.21 (Win32) PHP/5.2.16 | 1 |
Sun Java System Application Server Platform Edition 9.1 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8n DAV/2 PHP/5.2.13 | 1 |
Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.6 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.8o | 1 |
Apache/2.2.20 | 1 |
username.tomato.wixpress.com | 1 |
Apache/1.3.20 (Unix) PHP/4.0.5 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.36-0+deb7u3 mod_wsgi/3.3 Python/2.7.3 | 1 |
Data4host | 1 |
PersonalNetFinder/1.0 ID/ACGI | 1 |
Apache/2.2.19 (Win32) mod_ssl/2.2.19 OpenSSL/0.9.8r mod_jk/1.2.26 | 1 |
Apache/1.3.34 (Debian) PHP/4.4.4-8+etch6 mod_ssl/2.8.25 OpenSSL/0.9.8c DAV/1.0.3 | 1 |
GoServe/2.52 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1g DAV/2 PHP/5.3.28 | 1 |
Apache/1.3.34 (Debian) PHP/4.4.4-8+etch6 mod_throttle/3.1.2 mod_gzip/1.3.26.1a | 1 |
webnet (RT-Thread) | 1 |
ScreenConnect/4.3.6563.5232-1096934774 Microsoft-HTTPAPI/1.0 | 1 |
LANCOM 1711 VPN 8.50.0142 / 13.07.2011 | 1 |
Apache/2.4.6 (FreeBSD) OpenSSL/0.9.8y PHP/5.5.4 | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CM755A; Serial Number: CN16OCQ2GK; Lorentz_base_pp_usr_hf Built:Wed Aug 01, 2012 03:26:12PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.6.5 | 1 |
Emma/1.2 (StoredenCloudNode) | 1 |
ECAcc (fcn/40C6) | 1 |
Apache/2.2.8 (Win32) PHP/5.2.9 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1i DAV/2 mod_wsgi/4.2.4 Python/2.7.8 PHP/5.4.31 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 PHP/5.4.24 mod_wsgi/3.3 Python/2.7.5 | 1 |
WWW File Share Pro | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN32QBWK1W05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN428EV1DN060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/1.3.42 (Unix) mod_auth_pam/1.1.1 DAV/1.0.3 mod_ssl/2.8.31 OpenSSL/0.9.8zc | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.4.23 mod_ssl/2.2.26 OpenSSL/0.9.8za-freebsd DAV/2 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_qos/10.10 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.19 mod_ssl/2.2.25 OpenSSL/1.0.1e DAV/2 | 1 |
Apache/2.2.26 (Win32) | 1 |
IBM_HTTP_Server/6.0 Apache/2.0.47 (Win32) | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.3 mod_ssl/2.2.22 OpenSSL/0.9.8q | 1 |
Apache/2.2.9 (Debian) PHP/5.2.10 | 1 |
ScreenConnect/4.4.7175.5302-671015512 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.1e DAV/2 PHP/5.4.19 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.28 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.21 (Unix) mod_fastcgi/2.4.2 | 1 |
Apache/2.4.6 (Debian) mod_fcgid/2.3.9 OpenSSL/1.0.1e | 1 |
Apache/2.4.10 (Win64) PHP/5.6.3 | 1 |
Apache/2.2.22 (Debian) DAV/2 SVN/1.6.17 mod_jk/1.2.37 PHP/5.4.4-14+deb7u14 proxy_html/3.0.1 mod_perl/2.0.7 Perl/v5.14.2 | 1 |
tinyproxy/1.8.2 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.29 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8u PHP/5.3.13 | 1 |
Jetty(7.6.1.v20120215) | 1 |
Apache/2.2.14 (Unix) mod_jk/1.2.23 | 1 |
Ethernut 4.2.1 | 1 |
Apache/2.2.9 (Debian) mod_fastcgi/2.4.2 PHP/5.2.6-5ex1 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8c | 1 |
squid/2.6.STABLE20 | 1 |
IPCAM | 1 |
Indianer | 1 |
snom/9.6.2-a | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN2CD115PS05ST; Morgan_pp Built:Mon Oct 27, 2014 08:28:54AM {MGP1CN1444AR, ASIC id 0x003a0008} | 1 |
CommuniGatePro/4.2.10 | 1 |
Apache/2.0.52 (CentOS) DAV/2 PHP/4.3.9 | 1 |
*********** | 1 |
CommuniGatePro/6.0.5 | 1 |
Apache/2.2.24 (Unix) DAV/2 mod_jk/1.2.23 PHP/5.3.0 | 1 |
nginx + Phusion Passenger 4.0.0.rc4 | 1 |
Samsung SCX-8123 8128 Series, sn=Z6J1B1BC8000BHN | 1 |
Hunchentoot 1.2.11 | 1 |
ScreenConnect/3.4.4827.4920-3968710737 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.4.10 (Debian) PHP/5.6.0RC2 OpenSSL/1.0.1e | 1 |
lignano-eg | 1 |
Apache/2.4.4 (Unix) PHP/5.4.12 | 1 |
rspServer/1.2a | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.0 DAV/2 PHP/5.2.13 | 1 |
Apache/1.3.34 (Debian) PHP/4.4.4-8+etch6 mod_perl/1.29 | 1 |
Apache/2.4.7 (Win32) mod_fcgid/2.3.9 | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7i PHP/5.2.17 mod_jk/1.2.26 | 1 |
OTT Client Boot Server | 1 |
PixelfotoExpress Webserver | 1 |
Apache/2.2.15 (CentOS) mod_fcgid/2.3.9 PHP/5.4.33 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 1 |
Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4.6 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.7(2008-08-11) mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
AV_Receiver/3.1 (RX-V575) | 1 |
Apache/2.4.4 (Win32) OpenSSL/0.9.8y PHP/5.4.15 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.15 with Suhosin-Patch DAV/2 | 1 |
Apache/2.2.29 (Win32) PHP/5.4.36 | 1 |
Tntnet/1.6.3 | 1 |
Apache/1.3.33 (Darwin) mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.3.11 | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.17 | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN28L15BZ505SY; Stuttgart_pp_usr_hf Built:Mon Jun 11, 2012 10:11:53AM {STP1FN1224AR, ASIC id 0x00340104} | 1 |
Apache/2.2.29 (FreeBSD) mod_ssl/2.2.29 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.5.12 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.2.16 (Win32) | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.10 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.4.10 (Win64) PHP/5.5.13 | 1 |
NRS/1A.2.3.1017.19 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN3CAEVG9G060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/1.3.36 (Unix) PHP/5.1.4 | 1 |
Apache/Nginx/Comanche.. dont no.. (by el Bacho Sysop) mod_fastcgi/mod_fastcgi-SNAP-0910052141 mod_fcgid/2.3.6 mod_ruby/1.2.6 Ruby/1.8.7(2011-06-30) | 1 |
kangle/3.0.2 | 1 |
Infinity’s Edge v.0.4 | 1 |
WebSEAL/6.1.0.0 (Build 080319) | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips PHP/5.3.23 | 1 |
Apache/2.0.59 (Unix) PHP/5.2.1 | 1 |
Apache/2.2.19 (Unix) PHP/5.2.17 | 1 |
David-WebBox/12.00a (0829) WIN32 | 1 |
GeoWebServer 2.0.0.0 | 1 |
Apache/2.2.15 (Win64) | 1 |
IS2 Web Server 1.65 | 1 |
C# WebServer | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3C3E3GQS060N; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
lighttpd/1.4.3 | 1 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8k PHP/5.2.10 | 1 |
Abyss/2.8.0.1-X1-Win32 AbyssLib/2.8.0.1 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1e PHP/5.5.3 | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.24 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8y | 1 |
Apache/2.2.16 (Win32) PHP/5.2.17 | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.4.16 Phusion_Passenger/4.0.59 | 1 |
Sun Java System Application Server 9.1_02, Sun Java System Application Server 9.1_02 | 1 |
Apache/2.2.24 (Win32) PHP/5.3.5 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN428EW15D060N; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
BaseHTTP/0.3 Python/2.7.8 | 1 |
Apache/1.3.23 | 1 |
Apache/2.4.10 (FreeBSD) mod_wsgi/3.5 Python/2.7.9 | 1 |
HP HTTP Server; HP Officejet 6500 E710a-f – CN555A; Serial Number: CN17U330JM05JZ; Syrah_mp2_usr_hf Built:Mon Mar 07, 2011 09:30:11AM {SYM2FN1110AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.22 (Win32) PHP/5.2.14 | 1 |
Apache/2.4.1 (Unix) PHP/5.4.0 | 1 |
Apache/1.3.41 (Unix) PHP/3.0.18-i18n-ja-3 PHP/4.3.5RC1 | 1 |
SAP Web Application Server (1.0;701) | 1 |
Apache/2.4.7 (Unix) PHP/5.5.9 | 1 |
Apache/2.4.10 (Unix) PHP/5.5.1 | 1 |
Apache/2.2.27 (FreeBSD) mod_ssl/2.2.27 OpenSSL/0.9.8q DAV/2 mod_fastcgi/mod_fastcgi-SNAP-0910052141 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Phusion_Passenger/3.0.18 | 1 |
Apache/1.3.37 (Unix) PHP/4.1.2 | 1 |
Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8k | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 PHP/5.1.6 mod_jk/1.2.39 | 1 |
JAWS/1.0 Jan 14 2014 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.3.8 mod_ssl/2.2.23 OpenSSL/1.0.0e DAV/2 | 1 |
Linux, HTTP/1.1, DIR-868L Ver 1.00 | 1 |
Extension_LAN-WAN 4.1.7 15/06/2006 | 1 |
Apache/2.2.22 (Ubuntu) Lemonldap::NG::Handler/1.3.3 PHP/5.3.10-1ubuntu3.13 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 mod_perl/2.0.5 Perl/v5.14.2 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.7a mod_bwlimited/1.4 PHP/5.3.8 | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.4.30 OpenSSL/1.0.1e-freebsd | 1 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1j PHP/5.5.18 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.3.27 with Suhosin-Patch mod_ssl/2.2.25 OpenSSL/0.9.8q | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.8.8 | 1 |
Apache/2.4.10 (Unix) PHP/5.4.34 | 1 |
Kucci | 1 |
Apache/2.2.3 (Debian) DAV/2 SVN/1.4.2 mod_python/3.2.10 Python/2.4.4 Phusion_Passenger/2.2.5 PHP/5.2.0-8+etch13 | 1 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TH;max-age=300+0;age=72;ecid=43414091428544983,0:1) | 1 |
lighttpd/1.4.28-devel-183:184M | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 PHP/5.3.4 | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1BDA000F6V | 1 |
nginx/0.8.30 | 1 |
Unknown/0.0 UPnP/1.0 Virata-EmWeb/R6_1_0 | 1 |
Apache/2.2.22 (Unix) PHP/5.3.27 mod_ssl/2.2.22 OpenSSL/0.9.8q | 1 |
Niagara Web Server/3.7.106.11 | 1 |
Apache-AdvancedExtranetServer/2.0.47 (Mandrake Linux/6.3.92mdk) mod_perl/1.99_09 Perl/v5.8.1 mod_ssl/2.0.47 OpenSSL/0.9.7b PHP/4.3.2 | 1 |
Apache/2.4.12 (FreeBSD) PHP/5.6.5 | 1 |
Apache/2.4.6 (Fedora) PHP/5.5.5 SVN/1.7.13 | 1 |
PRTG/14.2.10.2255 | 1 |
Apache/2.4.10 (Unix) PHP/5.4.35 | 1 |
Linux, HTTP/1.1, DIR-300 Ver 2.11 | 1 |
IC-Zeusa-Dyrektor-Pionu-IT | 1 |
Netgem/1.0 (Default) | 1 |
LANCOM 1721+ VPN 8.82.0089 / 01.08.2013 | 1 |
Apache/2.4.10 (Win64) mod_jk/1.2.39 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.31 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny4 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8o | 1 |
Apache/2.2.26 (Unix) PHP/5.3.28 mod_wsgi/3.3 Python/2.7.2 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/1.3.27 (Linux/SuSE) mod_perl/1.27 | 1 |
Werkzeug/0.9.6 Python/3.4.2 | 1 |
Apache/2.2.13 (Win32) mod_jk/1.2.28 | 1 |
bit_asic_v2/live2.jed1.bitgravity.com | 1 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/0.9.8g PHP/4.4.9 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.2.17 | 1 |
Apache/1.3.31 (Unix) mod_ssl/2.8.18 OpenSSL/0.9.7d | 1 |
ashd/0.13 | 1 |
Apache/2.2.26 (Unix) mod_fastcgi/2.4.6 mod_wsgi/3.4 Python/2.7.6 PHP/5.5.10 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 mod_perl/2.0.8 Perl/v5.18.0 | 1 |
Indy/9.0.14 | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CM756A; Serial Number: CN0B2BM0MP; Lorentz_pp_usr_hf Built:Wed Aug 01, 2012 05:50:43PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
L7Cache/Web | 1 |
Apache/2.0.50 (Win32) PHP/5.2.7-dev | 1 |
Apache/2.2.22 (Debian) mod_jk/1.2.37 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.4.10 SVN/1.7.8 mod_ssl/2.2.23 OpenSSL/0.9.8x DAV/2 | 1 |
Saia PCD3.M3330/1.14.23 | 1 |
Apache/2.4.6 (CentOS) PHP/5.4.33 | 1 |
Apache/2.4.4 (Unix) OpenSSL/1.0.0-fips PHP/5.5.13 | 1 |
Zope/(Zope 2.9.8-final, python 2.4.4, linux2) ZServer/1.1 Plone/2.5.5 | 1 |
Linux, HTTP/1.1, DSL-2890AL Ver ME_1.00.04 | 1 |
WSGIServer/0.1 Python/2.7.8 | 1 |
Apache/2.0.63 (Win32) mod_jk2/2.0.4 DAV/2 | 1 |
Apache/2.4.7 (Unix) PHP/5.5.10 OpenSSL/1.0.1e-fips | 1 |
username.yam.wixpress.com | 1 |
lighttpd/1.4.32-devel-151 | 1 |
Apache/2.2.3 (CentOS) DAV/2 PHP/5.4.18 mod_antiloris/0.4 | 1 |
Linux, HTTP/1.1, DIR-860L Ver 1.03 | 1 |
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.20 with Suhosin-Patch | 1 |
Apache/2.2.23 (Unix) DAV/2 PHP/5.3.21 SVN/1.6.11 | 1 |
HP HTTP Server; HP Deskjet 3540 series – A9T81B; Serial Number: CN3BK2P08905X5; Built:Thu May 30, 2013 02:52:05PM {MLM1FN1322BR} | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch mod_wsgi/1.3 Python/2.5.2 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 Phusion_Passenger/4.0.1 | 1 |
leetHTTPD/v1.33.7 | 1 |
CERN/3.0 | 1 |
Apache/2.4.9 (Unix) OpenSSL/0.9.8za PHP/5.5.14 | 1 |
Apache/2.2.9 (Debian) mod_ssl/2.2.9 OpenSSL/0.9.8g mod_watch/4.3 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.0c DAV/2 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.6 mod_perl/2.0.6 Perl/v5.10.1 | 1 |
Apache/2.2.26 (Unix) mod_wsgi/3.3 Python/2.7.5 SVN/1.8.5 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 PHP/5.4.30 | 1 |
Apache/2.2.4 (Unix) | 1 |
ScreenConnect/5.0.8132.5459-1826031223 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.2.0 (Win32) PHP/5.1.2 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.13 mod_wsgi/3.4 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.28 mod_ssl/2.2.27 OpenSSL/0.9.8y | 1 |
Apache/2.4.6 (CentOS) PHP/5.5.19 | 1 |
Apache/1.3.33 (Unix) PHP/5.2.5 | 1 |
Polycom SoundPoint IP Telephone HTTPd | 1 |
Apache/2.2.20 (Win32) PHP/5.3.8 | 1 |
Apache/2.2.25 (Win32) PHP/5.3.6 | 1 |
Apache/2.2.14 (Win32) mod_python/3.3.1 Python/2.5.4 | 1 |
public.app03.tam | 1 |
Apache/1.3.33 (Unix) PHP/4.3.11 mod_throttle/3.1.2 | 1 |
i-Catcher Console/5.2.31 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=5914022087599,0) | 1 |
Apache/2.0.55 (Ubuntu) PHP/5.1.2 mod_ssl/2.0.55 OpenSSL/0.9.8a | 1 |
Jetty(9.0.3.v20130506) | 1 |
Dykema-GR | 1 |
squid/2.7.STABLE3 | 1 |
David-WebBox/12.00a (0952) WIN32 | 1 |
SPA | 1 |
ScreenConnect/5.1.8473.5522-3547251829 Microsoft-HTTPAPI/2.0 | 1 |
Pacosoft-Software-RomPager/2.10 | 1 |
Apache/2.2.6 (Win32) mod_ssl/2.2.6 OpenSSL/0.9.8g PHP/5.2.5 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1g PHP/5.5.16 | 1 |
Apache/2.2.22 (Debian) DAV/2 mod_fcgid/2.3.6 mod_gnutls/0.5.10 | 1 |
Apache/2.0.55 (Unix) mod_jk2/2.0.4 | 1 |
malbolge | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8k PHP/5.2.16 | 1 |
Apache/2.2.8 (Win32) mod_ssl/2.2.8 OpenSSL/0.9.8g PHP/5.2.5 | 1 |
NG / EsTremo EdiZione | 1 |
Datum/1.0 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8x DAV/2 mod_jk/1.2.40 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/1.0.1e PHP/5.3.13 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.2.17 | 1 |
Apache/2.2.27 (Unix) PHP/5.2.17 with Suhosin-Patch | 1 |
Apache/2.2.3 (Unix) PHP/5.2.4 | 1 |
Apache/2.4.6 (Unix) PHP/5.5.1 | 1 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.5.15 mod_fastcgi/2.4.2 mod_python/3.3.1 Python/2.6.1 mod_ssl/2.2.24 OpenSSL/0.9.8y | 1 |
Apache/1.3.28 (Unix) | 1 |
Apache/2.2.15 (Unix) mod_fastcgi/2.4.2 | 1 |
Apache/2.4.12 (FreeBSD) OpenSSL/1.0.1j-freebsd | 1 |
Apache/1.3.29 (Win32) | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.38 | 1 |
Apache/2.4.9 (Ubuntu) PHP/5.5.10-1+deb.sury.org~precise+1 mod_wsgi/3.4 Python/2.7.3 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM750A; Serial Number: CN333B4G4Y05KD; Coulomb_pp Built:Thu Aug 28, 2014 02:10:13PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8h mod_python/3.3.1 Python/2.5.4 mod_put/2.0.8 | 1 |
Apache/2.2.22 (Win32) PHP/5.4.0RC4 | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.5 | 1 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1h PHP/5.6.0 mod_fcgid/2.3.9 | 1 |
e@sy-pro v6.1.0 30/07/2012 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.26 | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.28 mod_ssl/2.2.26 OpenSSL/0.9.8za | 1 |
FileMakerPro/6.0v4 WebCompanion/6.0v3 | 1 |
Apache/2.2.19 (Win32) PHP/5.3.10 | 1 |
Apache/2.1.6 (Red Hat) | 1 |
Apache/2.4.3 (Win64) mod_jk/1.2.37 | 1 |
{Q}{A}{O}{P} HTTP Server mod_fcgid/2.3.6 Phusion_Passenger/2.2.11 PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.7(2010-08-16) | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 mod_ruby/1.3.0 Ruby/1.8.7(2011-06-30) SVN/1.6.11 | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.4.16 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.4.7 (Ubuntu) mod_fcgid/2.3.9 Phusion_Passenger/4.0.41 PHP/5.5.9-1ubuntu4.3 OpenSSL/1.0.1f | 1 |
Apache/2.4.9 (FreeBSD) OpenSSL/0.9.8y PHP/5.4.25 mpm-itk/2.4.7-02 | 1 |
Apache/2.0.59 (Win32) mod_ssl/2.0.59 OpenSSL/0.9.7l | 1 |
Apache/1.3.37 (Unix) PHP/5.2.5 mod_ssl/2.8.28 OpenSSL/0.9.8d | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.13 mod_ssl/2.2.24 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.27 with Suhosin-Patch mod_python/3.3.1 Python/2.6.5 mod_ssl/2.2.14 OpenSSL/0.9.8k mod_perl/2.0.4 Perl/v5.10.1 | 1 |
ITW Embedded Web Server (vCB_1032) | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y Resin/3.1.9 | 1 |
Apache/2.4.4 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.0 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips DAV/2 SVN/1.7.17 mod_jk/1.2.37 | 1 |
ECD (fcn/4029) | 1 |
Apache/2.0.64 (Unix) DAV/2 mod_jk/1.2.32 | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
sigc | 1 |
Apache/2.2.6 (Win32) PHP/5.2.3 | 1 |
Apache/2.2.20 (Win32) PHP/5.2.17 | 1 |
AquaController 4.0 | 1 |
Apache/2.4.9 (Unix) OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.4.10 mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN47AFV00F05MX; Thomson_kaiser_pendiag_pp Built:Thu Aug 22, 2013 02:06:39PM {TKP5FN1334BR, ASIC id 0x00320104} | 1 |
Apache/2.2.10 (Win32) PHP/5.2.6 | 1 |
Apache/2.4.6 (CentOS) PHP/5.4.35 | 1 |
ISLCP 5.134.35.5 | 1 |
Apache/2.4.3 (Unix) OpenSSL/1.0.0d-fips | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8m PHP/5.2.9 | 1 |
Etherpad 37442d3 (http://etherpad.org) | 1 |
Apache/2.4.2 (Win32) PHP/5.2.17 | 1 |
klws | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e PHP/5.2.13 | 1 |
Apache/2.2.26 (Unix) DAV/2 mod_jk/1.2.32 | 1 |
Apache/2.2.17 (Unix) PHP/5.3.4 mod_jk/1.2.23 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r PHP/5.4.36 | 1 |
Foundry Networks | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.4.35 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 mod_perl/2.0.8 Perl/v5.10.1 | 1 |
RaidenHTTPD/2.0.35 (Core) | 1 |
Flywheel/3.0.2 | 1 |
Apache/2.2.19 (Unix) DAV/2 PHP/5.3.6 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.31 | 1 |
Linux, HTTP/1.1, DIR-820LW Ver 2.00 | 1 |
Internal Web Server | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7a PHP/4.4.1 mod_jk/1.2.28 | 1 |
Apache/2.4.10 (Debian) mpm-itk/2.4.7-02 | 1 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1g PHP/5.5.9 | 1 |
Apache/2.4.7 (Win32) mod_jk/1.2.37 | 1 |
H3C HTTPD | 1 |
Apache/2.0.63 (Win32) mod_ssl/2.0.63 OpenSSL/0.9.7m mod_jk/1.2.25 | 1 |
Embedded HTTP Server 1.02 | 1 |
ATS/3.0.4 | 1 |
Apache/2.4.12 (FreeBSD) | 1 |
username.icewine.wixpress.com | 1 |
atvise | 1 |
CIM/2.0 | 1 |
nhttpd/3.3.3 (yhttpd_core/1.3.2) | 1 |
Apache/2.2.15 (FreeBSD) mod_ssl/2.2.15 OpenSSL/1.0.0 DAV/2 PHP/5.3.2 with Suhosin-Patch | 1 |
Apache/2.2.15 (Mandriva Linux/PREFORK-3.2mdv2010.2) | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – B0N11B; Serial Number: CN2A81CH9405WK; Sumbamlk_pp Built:Fri Mar 16, 2012 06:51:44AM {SMP1FN1215BR, ASIC id 0x00340100} | 1 |
WSGIServer/0.1 Python/2.7.1 | 1 |
Y3K PubCore | 1 |
Apache/2.2.23 (Win32) mod_ssl/2.2.23 OpenSSL/1.0.1g | 1 |
Cherokee/1.2.103 (Gentoo Linux) | 1 |
Apache/2.2.11 (FreeBSD) mod_ssl/2.2.11 OpenSSL/0.9.8e DAV/2 PHP/5.2.8 with Suhosin-Patch mod_scgi/1.12 | 1 |
FLS Server 1310.1200.1209.1 Microsoft-HTTPAPI/2.0 | 1 |
H3C/1.0 | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D4B1BCB00002W | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.12 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.2.25 (Win32) PHP/5.3.9 | 1 |
Apache/2.2.19 (Linux/SUSE) | 1 |
PRTG/14.4.13.3799 | 1 |
Apache/2.4.2 (Unix) OpenSSL/1.0.0-fips PHP/5.3.21 | 1 |
Safe3 Web Firewall | 1 |
ScreenConnect/4.4.7175.5302-162811570 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.2.22 (Win32) SVN/1.7.6 DAV/2 PHP/5.4.3 | 1 |
Apache/2.2.19 (Win32) PHP/5.3.0 | 1 |
Zorg’O’Web 51.69 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.15 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
Video Web Server | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN2AVBXGDQ05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.3.23 | 1 |
megadrom@tower | 1 |
Apache/2.4.9 (Win64) OpenSSL/1.0.1f mod_fcgid/2.3.9 | 1 |
DI-IOS-HTTPD1.0 | 1 |
Apache/1.3.41 (Unix) PHP/5.2.12 mod_ssl/2.8.31 OpenSSL/0.9.8l | 1 |
Apache/2.4.9 (Unix) PHP/5.5.14 OpenSSL/1.0.1h | 1 |
David-WebBox/12.00a (0767) WIN32 | 1 |
hodinky | 1 |
Apache/2.4.6 (FreeBSD) PHP/5.4.21 | 1 |
Apache/2.2.25 (Win32) mod_jk/1.2.35 DAV/2 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_qos/10.10 | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 mod-xslt/1.3.9 PHP/5.2.4-2ubuntu5.14 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 1 |
MLDonkey/3.1.0 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.3.23 with Suhosin-Patch mod_ssl/2.2.24 OpenSSL/0.9.8q DAV/2 | 1 |
ApacheBooster/1.6 | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 Phusion_Passenger/4.0.53 | 1 |
Apache/2.0.49 (Win32) mod_perl/1.99_13 Perl/v5.8.3 PHP/4.3.4 mod_ssl/2.0.49 OpenSSL/0.9.7d | 1 |
Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.6 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Si-R80brin | 1 |
Zope/(Zope 2.9.7-final, python 2.4.6, linux2) ZServer/1.1 | 1 |
IPOffice/7.0(36) | 1 |
Linux, HTTP/1.1, WBR-2200 Ver 1.02 | 1 |
Apache/2.2.21 (Debian) | 1 |
Saia PCD3.M2130V6/1.20.25 | 1 |
Apache/2.2.3 (Unix) DAV/2 mod_jk/1.2.32 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.23 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.5.16 | 1 |
Apache/2.2.3 (Red Hat) DAV/2 PHP/5.5.0beta4 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 | 1 |
Apache/2.2.16 (Ubuntu) PHP/5.3.3-1ubuntu9 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
CherryPy/3.6.0 | 1 |
Resin/3.1.4a | 1 |
Symantec Endpoint Protection Manager | 1 |
Powered by a rather large badger | 1 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.3.11 | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN29N4KH3705RN; Margarita_mid_mp2 Built:Thu Aug 28, 2014 03:19:28PM {MIM2CN1435AR, ASIC id 0x003a0008} | 1 |
Hayabuza | 1 |
HP HTTP Server; HP HP Officejet Pro X576dw MFP – CN598A; Serial Number: CN433GX03P; Built:Wed Aug 20, 2014 08:45:08AM {LZP1CN1432DR} | 1 |
Apache/2.4.6 (FreeBSD) OpenSSL/0.9.8y PHP/5.3.28 with Suhosin-Patch | 1 |
Apache/2.2.15 (FreeBSD) | 1 |
LANCOM 1781A 8.62.0029 / 20.06.2012 | 1 |
Apache/2.2.17 (Win32) PHP/5.3.28 | 1 |
Apache/1.3.41 (Debian AMD64 GNU/Linux) (Unix) PHP/5.3.21 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.13 Phusion_Passenger/4.0.37 mod_ssl/2.2.24 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8d DAV/2 PHP/4.4.9 | 1 |
Apache/2.2.22 (Debian) mod_fcgid/2.3.6 mod_ssl/2.2.22 OpenSSL/1.0.1e mod_perl/2.0.7 Perl/v5.14.2 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=4125531939559,0) | 1 |
AV_Receiver/3.1 (RX-A3030) | 1 |
Apache/2.2.11 | 1 |
Apache/2.2.21 (FreeBSD) DAV/2 | 1 |
HTML | 1 |
LANCOM 1723 VoIP (Annex B) 8.50.0142 / 12.07.2011 | 1 |
ClearSCADA/6.73.4729.1 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.36-0+deb7u3 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.4.1 (Unix) Omnilance MOD 1.2/OpenSSL/1.0.0h mod_ssl/2.4.8 | 1 |
sv02.blaze.pl | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.3 OpenSSL/1.0.1f mod_wsgi/3.4 Python/2.7.6 mod_perl/2.0.8 Perl/v5.18.2 | 1 |
Yale-Center-Beijing | 1 |
PoolController V.1.6.0 | 1 |
Apache/2.2.19 (FreeBSD) mod_ssl/2.2.19 OpenSSL/0.9.8q DAV/2 SVN/1.6.16 PHP/5.3.6 with Suhosin-Patch | 1 |
Apache/2.2.11 (Win32) DAV/2 SVN/1.6.2 PHP/5.2.5 | 1 |
Resin/4.0.16 | 1 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8t PHP/5.3.10 | 1 |
ECAcc (ory/4388) | 1 |
MISC Freelancer | 1 |
Apache/2.2.21 (FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/1.3.22 (Unix) (Red-Hat/Linux) mod_perl/1.24_01 | 1 |
BadCompany | 1 |
Apache/2.2.3 (CentOS) PHP/5.1.6 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips DAV/2 PHP/5.2.17 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t PHP/5.2.5 | 1 |
Apache/2.2.21 (Win32) mod_jk/1.2.26 | 1 |
Rabbit/10.68 | 1 |
anon | 1 |
Apache/2.2.19 (Unix) DAV/2 SVN/1.6.13 | 1 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.4.27 | 1 |
Apache/2.4.7 (Unix) PHP/5.3.27 | 1 |
Apache/2.2.26 (Unix) DAV/2 SVN/1.6.16 mod_ssl/2.2.26 OpenSSL/0.9.8y | 1 |
Apache/1.3.33 (Darwin) | 1 |
Apache/2.0.58 (Win32) PHP/5.2.13 | 1 |
Apache/2.4.4 (Unix) PHP/5.5.3 OpenSSL/1.0.1e mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e PHP/5.5.18 mod_jk/1.2.40 | 1 |
IceWarp/11.0.1.0 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=104286218368,0) | 1 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.10 | 1 |
username.cola.wixpress.com | 1 |
Apache/2.2.22 (Debian) mod_perl/2.0.7 Perl/v5.14.2 | 1 |
Serv-U/10.5.0.19 | 1 |
CherryPy/3.2.4 | 1 |
CommuniGatePro/6.0.10 | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.8b DAV/2 PHP/5.2.4 | 1 |
BarracudaServer.com (Windows) | 1 |
Apache/2.4.6 (Ubuntu) Phusion_Passenger/3.0.21 PHP/5.5.3-1ubuntu2.6 OpenSSL/1.0.1e | 1 |
vxTri’s Versatile Smart Server (TVSS) V 1.0 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.6 | 1 |
Oracle HTTP Server Powered by Apache/1.3.19 (Win32) mod_ssl/2.8.1 OpenSSL/0.9.5a mod_fastcgi/2.2.10 mod_oprocmgr/1.0 mod_perl/1.25 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips Phusion_Passenger/4.0.5 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch11 | 1 |
Jetty/5.1.2 (Windows 2003/5.2 x86 java/1.7.0_15 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN29HBS0QY05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Microsoft-IIS/6.0 mod_perl/2.0.4 Perl/v5.10.0 mod_antiloris/0.4 | 1 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.9 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.1e DAV/2 PHP/5.4.25 | 1 |
RWAPM X-Server Apache/2.2.15-dev PHP/5.2.12RC5-dev mod_rwapm_log/1.1 | 1 |
HeiTel GmbH Web Server [V1.25/V1.15/V1.6] | 1 |
Apache/2.2.16 (Debian) DAV/2 Phusion_Passenger/4.0.0.rc6 PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.2.17 (Unix) PHP/5.3.6 mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.27 | 1 |
Apache/2.2.19 (Unix) PHP/5.3.27 | 1 |
Apache/2.2.4 (Unix) PHP/5.2.0 | 1 |
Apache/1.3.37 (Unix) PHP/4.4.4 with Suhosin-Patch | 1 |
CP243-1 IT | 1 |
ecstatic-0.5.8 | 1 |
comexio | 1 |
VPI-Portal/1.2.050 | 1 |
Wing FTP Server(bjornar.bell@gmail.com) | 1 |
SilverStream Server/10.0 | 1 |
Embedded HTTP Server | 1 |
Apache/2.2.8 (Unix) mod_jk/1.2.26 | 1 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1h PHP/5.3.28 | 1 |
Buanco Web Server | 1 |
HP HTTP Server; HP Photosmart 5510d series – CQ183B; Serial Number: CN19S11F3505RW; Epsilon_duplex Built:Wed Sep 26, 2012 05:27:29PM {EDL1CN1239AR, ASIC id 0x003a0008} | 1 |
HP HTTP Server; HP Photosmart 5510 series – CQ176B; Serial Number: CN21A3CGP105V3; Epsilon Built:Wed Nov 09, 2011 02:13:02PM {EPL2CN1133BR, ASIC id 0x003a0008} | 1 |
Etherpad 6597c28 (http://etherpad.org) | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y mod_jk/1.2.37 | 1 |
PNMas | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t PHP/5.4.24 mod_jk/1.2.26 | 1 |
Apache/2.0.54 (Debian GNU/Linux) DAV/2 SVN/1.2.0 PHP/4.3.10-16 mod_ssl/2.0.54 OpenSSL/0.9.7e | 1 |
Apache/2.0.52 (Debian GNU/Linux) mod_jk/1.2.15 mod_python/3.1.3 Python/2.3.4 PHP/4.3.10-22 mod_ssl/2.0.52 OpenSSL/0.9.7e mod_perl/1.999.20 Perl/v5.8.4 | 1 |
4D/14.0.3 | 1 |
Kerio MailServer 6.7.3 | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1h PHP/5.4.29 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.16 mod_jk/1.2.31 | 1 |
NCSA 1.0 (CP/M 80) | 1 |
username.absinthe.wixpress.com | 1 |
Apache/2.2.3 (CentOS) DAV/2 PHP/5.1.6 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 | 1 |
Apache/2.4.9 (Win32) PHP/5.5.13 | 1 |
WebSphere Application Server/5.0 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze14 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
CommuniGatePro/5.4.8 | 1 |
Apache/2.2.11 (Win32) PHP/5.3.5 | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN3CHDSHSV05RQ; Margarita_premium_mp2 Built:Thu Aug 28, 2014 03:20:05PM {MPM3CN1435AR, ASIC id 0x003a0008} | 1 |
Apache/2.4.4 (Win32) PHP/5.3.25-dev | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.16 | 1 |
gunicorn/0.15.0 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.6 mod_ssl/2.2.27 OpenSSL/0.9.8x DAV/2 | 1 |
DELTA enteliTOUCH | 1 |
Webserver Busch | 1 |
Apache/2.2.19 (Win32) DAV/2 PHP/5.3.6 | 1 |
HP HTTP Server; HP HP Officejet Pro X576dw MFP – CN598A; Serial Number: CN45NIK0DW; Built:Wed Aug 20, 2014 08:45:08AM {LZP1CN1432DR} | 1 |
Microsoft WinCE Fidelix v10.68.0 | 1 |
Apache/2.2.22 (Unix) PHP/5.3.16 | 1 |
Apache/2.2.9 (Win32) DAV/2 mod_auth_sspi/1.0.1 PHP/5.2.6 | 1 |
HP HTTP Server; HP Officejet 7610 series – CR769A; Serial Number: CN3BO3MGFT05SP; Built:Fri Jun 28, 2013 01:38:47PM {EGM1CN1326AR} | 1 |
lighttpd/1.4.26-devel-nios-xxxxx-V0_0_6-4984-gf0998e6 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8o mod_jk/1.2.26 | 1 |
Serv-U/9.1.0.2 | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1BDA000EZM | 1 |
Postian Web Server | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.5.11 | 1 |
gpValidator | 1 |
NCSA/1.1 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.6.3 mod_fastcgi/mod_fastcgi-SNAP-0910052141 | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – CR231B; Serial Number: CN1734805S05PJ; Sumbamlk_pp Built:Tue Apr 12, 2011 04:08:55PM {SMP1FN1115AR, ASIC id 0x00340100} | 1 |
Apache/2.2.25 (Win32) PHP/5.2.17 mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
HP HTTP Server; HP HP Officejet Pro X476dw MFP – CN461A; Serial Number: CN44OGJ0D2; Built:Wed Apr 16, 2014 09:53:49AM {LWP1CN1409BR} | 1 |
Apache/2.4.6 (FreeBSD) OpenSSL/0.9.8y PHP/5.4.21 | 1 |
Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.0.0 (M;max-age=0+0;age=0;ecid=3402912277961,0) | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.6.6 | 1 |
EWS-NIC5/19.08 | 1 |
AV_Receiver/3.1 (RX-V673) | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.1e-fips | 1 |
Apache/2.0.43 (Unix) mod_jk/1.2.2 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1 | 1 |
ConWas/1.0 | 1 |
Foobar2000 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN09G2T31P05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.4.10 (Unix) PHP/5.6.1 mod_scgi/1.14 | 1 |
Cherokee/1.0.20 (UNIX) | 1 |
Icecast 2.3.3-kh8 | 1 |
ScreenConnect/5.0.7909.5428-1387233453 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.11 | 1 |
Xerver/4.32 | 1 |
Jetty(9.0.5.v20130815) | 1 |
Apache/1.3.33 (Darwin) PHP/4.3.10 | 1 |
HP HTTP Server; HP Deskjet 2540 series – A9U26C; Serial Number: CN39Q2BH7705XK; Built:Tue Jun 18, 2013 09:32:12AM {CEP1FN1325AR} | 1 |
Jetty/5.1.x (Linux/3.7.10-1.16-desktop amd64 java/1.7.0_21 | 1 |
Apache/2.2.8 (Unix) | 1 |
v/1.1.1/v2jed1-www | 1 |
LANCOM 1811n Wireless 8.80.0157 / 16.04.2013 | 1 |
Apache/2.4.1 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.4.0 | 1 |
LANCOM WLC-4006+ 8.82.0100 / 28.08.2013 | 1 |
Apache/2.2.26 (Unix) PHP/5.3.28 | 1 |
ITW Embedded Web Server (vCB_1020) | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 1 |
public.app34.aus | 1 |
AV_Receiver/3.1 (RX-A1010) | 1 |
Milan-Finance-Room | 1 |
Apache/2.2.23 (FreeBSD) Phusion_Passenger/3.0.18 mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 1 |
Apache-AdvancedExtranetServer/2.0.45 (Mandrake Linux/4.3mdk) mod_perl/1.99_08 Perl/v5.8.0 mod_ssl/2.0.45 OpenSSL/0.9.7a PHP/4.3.1 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t PHP/5.4.29 | 1 |
Apache/2.2.23 (Win32) PHP/5.4.9 | 1 |
HP HTTP Server; HP ENVY 5530 series – A9J40B; Serial Number: CN47H210W705XT; Built:Fri Sep 27, 2013 09:41:53AM {ORL1CN1339AR} | 1 |
Apache/2.4.10 (Debian) mod_auth_pgsql/2.0.3 PHP/5.6.0RC3 | 1 |
nginx + Phusion Passenger 4.0.52 | 1 |
IceWarp/11.1.1.0 | 1 |
Susan | 1 |
Oracle-Application-Server-10g/10.1.2.2.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.1 (G;max-age=0+0;age=0;ecid=864691516343047281,1) | 1 |
Apache/2.4.9 (Win64) mod_antiloris/0.5.2 PHP/5.5.12 | 1 |
4D_v12/12.6.0 | 1 |
Kerio Connect 7.1.2 | 1 |
Apache/2.2.25 (Win32) mod_jk/1.2.40 | 1 |
Himage HTTP Ver: 1.1 | 1 |
Apache/2.4.12 (Unix) mod_jk/1.2.40 | 1 |
Lightstreamer/5.1.1 build 1623.2 (Lightstreamer Push Server – www.lightstreamer.com) Moderato edition | 1 |
Apache/2.2.22 (Win32) PHP/5.3.21 | 1 |
Apache/1.3.31 (Unix) PHP/4.3.8 | 1 |
WebtoB/3.1.5 | 1 |
Abyss/2.5.0.0-X1-Win32 AbyssLib/2.5.0.0 | 1 |
IBM_HTTP_Server/6.1 Apache/2.0.47 (Win32) | 1 |
OracleAS-Web-Cache-10g/9.0.4.0.0 | 1 |
Resin/3.0.17 | 1 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 PHP/5.3.16 with Suhosin-Patch | 1 |
Apache/2.4.10 (Amazon) PHP/5.4.30 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.4.29 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.4.5 | 1 |
Apache/2.4.7 (Ubuntu) mod_fastcgi/mod_fastcgi-SNAP-0910052141 mod_fcgid/2.3.9 PHP/5.5.9-1ubuntu4.5 mod_python/3.3.1 Python/2.7.6 OpenSSL/1.0.1f | 1 |
nginx-catap/1.1.0 | 1 |
Apache/2.2.27 (Unix) DAV/2 PHP/5.3.28 mod_ssl/2.2.27 OpenSSL/1.0.1h mod_perl/2.0.4 Perl/v5.12.5 | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.3.29 with Suhosin-Patch | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=8111;ecid=308695385724,0) | 1 |
Apache/2.4.4 (Win32) OpenSSL/1.0.1e PHP/5.4.19 | 1 |
HP HTTP Server; HP Deskjet 3540 series – A9T81B; Serial Number: CN46A133RK05X5; Built:Thu Dec 04, 2014 01:07:39PM {MLM1FN1449AR} | 1 |
Apache/1.3.41 (Darwin) PHP/5.0.4 mod_jk/1.2.6 mod_ssl/2.8.31 OpenSSL/0.9.7l | 1 |
nginx/1.3.2 | 1 |
Apache/2.2.18 (Win32) PHP/5.3.6 | 1 |
WebIOPi/0.7.0/Python3.2 | 1 |
Goear webserver | 1 |
WEB602/1.04 | 1 |
Apache/2.4.9 (Fedora) PHP/5.5.14 mod_wsgi/3.5 Python/2.7.5 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.37 | 1 |
Apache/2.2.16 (Debian) DAV/2 mod_fcgid/2.3.6 mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN3CAEVG01060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.4.10 (Win32) PHP/5.6.0 | 1 |
Apache/2.2.22 (Debian) DAV/2 SVN/1.6.17 PHP/5.4.36-0+deb7u3 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/1.3.37 (Unix) PHP/4.4.9 mod_ssl/2.8.28 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.4.6 (CentOS) mod_fcgid/2.3.9 mod_wsgi/3.4 Python/2.7.5 | 1 |
C&S Tech Web Camera Server_v1.0 | 1 |
HP HTTP Server; HP Officejet 6500 E710n-z – CN557A; Serial Number: CN198331CT05JW; Chianti_pp_usr_hf Built:Thu Feb 02, 2012 10:54:00AM {CIP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.1 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.6(2007-09-24) mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.16 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8g PHP/5.2.3 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM750A; Serial Number: CN2B6BWGQ105KD; Coulomb_pp Built:Thu Aug 28, 2014 02:10:13PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
a.na.co.pacza | 1 |
Apache/1.3.36 (Unix) PHP/4.4.2 | 1 |
nzbget-13.0 | 1 |
thttpd/2.19-MX Jun 19 2008 | 1 |
Apache/2.0.64 (Unix) DAV/2 PHP/5.2.17 | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.5.18 SVN/1.7.14 | 1 |
localhost | 1 |
Apache/2.2.22 (Unix) PHP/5.4.12 mod_ssl/2.2.22 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.15 (Unix) DAV/2 PHP/5.3.6 | 1 |
LANCOM 1781EW 8.80.0157 / 16.04.2013 | 1 |
Apache/2.2.17 (Win32) PHP/5.3.5 DAV/2 | 1 |
Apache/2.2.25 (FreeBSD) DAV/2 PHP/5.4.17 mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
gen5th/1.77.00 | 1 |
Apache/2.2.14 (Mandriva Linux/PREFORK-1.6mdv2010.0) | 1 |
thinDeliveryServer/1.1.0 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.17 mod_ssl/2.2.22 OpenSSL/0.9.8q | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.9 | 1 |
Apache/1.3.37 (Unix) PHP/4.4.6 with Suhosin-Patch | 1 |
Apache/1.3.29 Sun Cobalt (Unix) PHP/4.0.6 mod_auth_pam_external/0.1 FrontPage/4.0.4.3 mod_ssl/2.8.16 OpenSSL/0.9.6m mod_perl/1.25 | 1 |
LANCOM DSL/I-1611 Office 5.22.0024 / 23.02.2006 | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.5 mod_scgi/1.13 OpenSSL/1.0.1f | 1 |
Apache/2.4.10 (Win32) PHP/5.3.29 | 1 |
Apache/2.4.9 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.5.13 | 1 |
PSIWBL/2.0.1d | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN3A8EVJD2060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.4.7 (Ubuntu) mod_gnutls/0.5.10 PHP/5.5.9-1ubuntu4.3 | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.1 | 1 |
Apache/2.2.21 (Win64) mod_ssl/2.2.21 OpenSSL/1.0.0d PHP/5.3.8 | 1 |
Apache/2.2.14 (Win32) PHP/5.2.5 | 1 |
squid/3.2.0.7 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.0.2 (G;max-age=0+0;age=0;ecid=96139804724,0) | 1 |
Apache/2.4.10 (Debian) SVN/1.8.9 Phusion_Passenger/4.0.37 OpenSSL/1.0.1g | 1 |
Apache/1.3.39 (Unix) PHP/4.4.7 | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN42C8S03Z05RN; Margarita_mid_pendiag_mp2 Built:Thu Aug 28, 2014 03:19:40PM {MIM5CN1435AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8o PHP/5.3.25 mod_fastcgi/2.4.6 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8b PHP/5.4.4 | 1 |
Apache/2.2.15 (Scientific Linux) mod_jk/1.2.32 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.27 | 1 |
Apache/2.2.25 (Win32) PHP/5.3.27 mod_jk/1.2.37 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.7a DAV/2 PHP/5.1.4 | 1 |
Apache/2.2.24 (Unix) PHP/5.3.26 mod_wsgi/3.3 Python/2.7.2 mod_fastcgi/2.4.6 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
Jetty(9.0.z-SNAPSHOT) | 1 |
Apache/2.2.10 (Win32) PHP/5.2.9-2 | 1 |
Apache/2.4.6 (CentOS) PHP/5.6.0 mod_perl/2.0.9-dev Perl/v5.16.3 | 1 |
lighttpd/1.4.28 atos/5.6.17 (server0) | 1 |
D-Link Web Server 0.01 | 1 |
Apache/2.4.10 (Unix) PHP/5.5.16 OpenSSL/1.0.1i Phusion_Passenger/4.0.48 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.18 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8o DAV/2 PHP/5.3.6 | 1 |
Apache/1.3.33 (Unix) PHP/4.3.6 | 1 |
Apache/2.2.19 (Win32) mod_ssl/2.2.19 OpenSSL/0.9.8r mod_jk/1.2.32 | 1 |
WebSphere Application Server/8.5 | 1 |
Abyss/2.9-X1-Win32 AbyssLib/2.9.0.0 | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CM756A; Serial Number: CN19HDQ2PS; Lorentz_pp_usr_hf Built:Wed Aug 01, 2012 05:50:43PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e PHP/5.5.14 | 1 |
Swing-Server | 1 |
Apache/2.2.22 (Unix) PHP/5.1.6 mod_ssl/2.2.22 OpenSSL/0.9.8q | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.12 | 1 |
thttpd/2.20b | 1 |
Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7e PHP/5.2.0 | 1 |
Apache/2.0.64 (Win32) mod_jk/1.2.14 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips Phusion_Passenger/4.0.58 mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN22H1H08205RN; Margarita_mid_mp2 Built:Thu Aug 28, 2014 03:19:28PM {MIM2CN1435AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e DAV/2 PHP/5.3.1 | 1 |
Apache/2.4.6 (FreeBSD) PHP/5.4.25 | 1 |
Apache/2.2.26 (Unix) PHP/5.3.27 | 1 |
username.martini.wixpress.com | 1 |
Apache/2.2.4 (Win32) PHP/5.2.8 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.35-1~dotdeb.1 | 1 |
Apache/2.0.63 (Unix) mod_fastcgi/2.4.6 PHP/5.3.1 | 1 |
Apache/2.2.22 (Unix) PHP/5.3.15 mod_ssl/2.2.22 OpenSSL/0.9.8r | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8m DAV/2 mod_jk/1.2.31 | 1 |
WebStar/2.12 WinXP | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 PHP/5.5.4 | 1 |
Virata-EmWeb/R5_3_3 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.21 mod_ssl/2.2.25 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.4.9 (Ubuntu) PHP/5.5.14-1+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8i mod_autoindex_color PHP/5.2.8 | 1 |
HeiTel GmbH Web Server [V1.17/V1.14/V1.3] | 1 |
XDaemon v1.0 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8r PHP/5.3.6 | 1 |
Samsung CLX-6260 Series, sn=Z77ABJEF50003KL | 1 |
tracd/1.0.1 Python/2.6.7 | 1 |
CherryPy/3.1.2 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny2 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/1.3.39 (Unix) PHP/4.4.8 mod_ssl/2.8.30 OpenSSL/0.9.8e | 1 |
US | 1 |
4D_v13/13.2 | 1 |
Apache/2.2.22 (Unix) DAV/2 mod_jk/1.2.35 PHP/5.3.24 | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e-fips mod_jk/1.2.37 mod_bwlimited/1.4 | 1 |
lighttpd/1.4.28-devel-390924 | 1 |
TP-LINK HTTPD/1.0 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 PHP/5.2.17 | 1 |
The Big Brains Company | 1 |
nginx + Phusion Passenger 4.0.46 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.4.22 | 1 |
Apache/1.3.34 (Debian) PHP/4.4.4-8+etch6 | 1 |
Apache/2.2.22 (Unix) Communique/4.0.10 | 1 |
Apache/2.2.27 (Win32) mod_ssl/2.2.27 OpenSSL/1.0.1h | 1 |
hax0r/69.69.69 (zerohat webs1rv1r) mod_fcgid/2.3.6 Phusion_Passenger/4.0.41 mod_perl/2.0.5 Perl/v5.14.2 | 1 |
Apache/2.2.27 (Unix) PHP/4.4.9 | 1 |
Microsoft-IIS/7.0, FX-EWB-Compatible/2.0 | 1 |
TRMB/1.0 | 1 |
Engine V7.06 B390D | 1 |
Tektroniks/1.0 | 1 |
i-Catcher Console/5.1.33 | 1 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 mod_wsgi/2.8 Python/2.7.3 | 1 |
X1 Web Server | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.17 | 1 |
AnyWebApp | 1 |
Apache/2.0.63 (Unix) DAV/2 PHP/5.2.10 | 1 |
server 5.0 | 1 |
xxxxxxxx | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.1e DAV/2 PHP/5.3.27 | 1 |
Apache/1.3.27 (Unix) Debian GNU/Linux PHP/4.2.3 | 1 |
public.app153.vae.aws | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_mono/2.6.3 mod_bwlimited/1.4 | 1 |
UserLand Frontier/9.5-WinNT | 1 |
Apache/2.0.63 (Win32) mod_jk/1.2.31 | 1 |
Apache/2.2.25 (Unix) mod_nss/2.2.25 NSS/3.12.10.0 mod_jk/1.2.32 | 1 |
Oracle-Application-Server-10g/9.0.4.0.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/9.0.4.0.0 (G;max-age=428514272+0;age=0) | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.10 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8x DAV/2 | 1 |
Proxy/1.0 | 1 |
approx/5.3 Ocamlnet/3.5.1 | 1 |
vx x10.1 | 1 |
Apache/2.2.22 (Ubuntu) DAV/2 SVN/1.6.17 PHP/5.3.10-1ubuntu3.2 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 mod_wsgi/3.3 Python/2.7.3 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.0-fips DAV/2 | 1 |
Apache/2.4.12 (Unix) PHP/5.5.13 OpenSSL/0.9.8x-freebsd | 1 |
Apache/2.4.10 (Mageia) OpenSSL/1.0.1i PHP/5.6.0RC3 | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.6 | 1 |
ATS/4.2.2 | 1 |
BB | 1 |
Apache/2.4.2 (Win32) PHP/5.4.5 | 1 |
Cybozu-WS/3.1 | 1 |
Lindelse | 1 |
IIS/7.0 | 1 |
– Web acceleration by Varnish | 1 |
Apache/1.3.27 (Unix) mod_gzip/1.3.26.1a FrontPage/5.0.2.2510 mod_ssl/2.8.14 OpenSSL/0.9.7 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.7a mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 1 |
iGuard Embedded Web Server/3.6.8604A (LM520) SN:VK-2003-313C-0F5F | 1 |
Apache/2.0.55 (Win32) mod_perl/1.99_13-dev Perl/v5.8.3 PHP/5.1.2 mod_ssl/2.0.48 OpenSSL/0.9.7c | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.10 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.22 (Win64) PHP/5.3.13 DAV/2 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch Phusion_Passenger/3.0.0 | 1 |
NOJDHS-ELEKTRONIK-AB | 1 |
FortiWeb-2.2.0 | 1 |
publicfile | 1 |
lighttpd/1.4.28-devel-707 | 1 |
Apache/2.2.9 (Win32) PHP/5.2.9-2 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_qos/10.10 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.4.16 | 1 |
fnord/1.8a | 1 |
Apache/2.4.10 (CentOS) OpenSSL/1.0.1e-fips PHP/5.5.19 mod_fcgid/2.3.9 | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.2.17 with Suhosin-Patch | 1 |
Apache/2.4.7 (Ubuntu) SVN/1.8.8 mod_fcgid/2.3.9 PHP/5.5.9-1ubuntu4.4 OpenSSL/1.0.1f | 1 |
Apache/2.2.8 (Win32) mod_jk/1.2.26 PHP/5.2.10 | 1 |
Apache/2.2.29 (Win32) mod_ssl/2.2.29 OpenSSL/1.0.1l PHP/5.3.28 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1f mod_fastcgi/mod_fastcgi-SNAP-0910052141 | 1 |
HttpServer/99.0 | 1 |
Novus HTTP server | 1 |
Apache/2.2.22 (FreeBSD) DAV/2 PHP/5.3.10 with Suhosin-Patch | 1 |
Sun-Java-System/Application-Server | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.16 SVN/1.7.18 mod_wsgi/3.5 Python/2.7.5 | 1 |
Combust/Plack (Perl) | 1 |
LANCOM 1711 VPN 8.62.0086 / 08.11.2012 | 1 |
Apache/2.4.2 (Win64) OpenSSL/1.0.1c OpenAM WPA/4.0.0-SNAPSHOT | 1 |
Apache/1.3.20 Sun Cobalt (Unix) mod_ssl/2.8.4 OpenSSL/0.9.6b PHP/4.0.6 mod_auth_pam_external/0.1 FrontPage/4.0.4.3 mod_perl/1.25 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e PHP/5.4.26 | 1 |
http://Vitsch.nl/ embedded server | 1 |
username.mango.wixpress.com | 1 |
Lity 1.9 | 1 |
big5.jb.mil.cn | 1 |
kentika | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0k DAV/2 PHP/5.2.17 mod_fcgid/2.3.6 | 1 |
Apache/2.4.3 (Unix) PHP/5.4.0 | 1 |
Apache/2.2.27 (Win32) mod_ssl/2.2.27 OpenSSL/1.0.1h PHP/5.3.28 | 1 |
Asterisk/1.4.21.2 | 1 |
Apache/2.2.24 (Win32) mod_ssl/2.2.24 OpenSSL/0.9.8y PHP/5.4.17 mod_perl/2.0.8 Perl/v5.16.3 | 1 |
Apache/2.4.12 (Win64) OpenSSL/0.9.8ze mod_jk/1.2.40 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN15R4S39805J8; Chiplus_usr_hf Built:Sat Mar 12, 2011 04:12:05PM {CHL1FN1110BR, ASIC id 0x00280004} | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.0 mod_jk/1.2.37 | 1 |
Apache/2.4.10 (Raspbian) | 1 |
BEJY V1.5.1.67 HTTP 1.3.1.65 | 1 |
Apache/2.2.21 (Win32) PHP/5.4.20 | 1 |
VidicorHTTPd/1.0 (Win32) | 1 |
Apache/2.0.65 (Win32) PHP/5.2.14 | 1 |
HP HTTP Server; HP Officejet 7110 series – CR768A; Serial Number: CN33J1TG4905R1; Built:Wed Nov 07, 2012 11:48:19AM {EIP1FN1245BR} | 1 |
nginx/1.6.1 + Phusion Passenger 3.0.19 | 1 |
Apache/2.2.17 (Unix) DAV/2 PHP/5.2.17 mod_jk/1.2.15 mod_python/3.3.2-dev-20080819 Python/2.6 SVN/1.6.11 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.1 (M;max-age=0+0;age=0;ecid=503846196473,1) | 1 |
Wing FTP Server(Chris Phinikas) | 1 |
Apache/2.4.10 (FreeBSD) mpm-itk/2.4.7-02 PHP/5.4.31 OpenSSL/1.0.1e-freebsd | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN2BICXHDX05KC; Coulomb_base_pp Built:Fri Aug 03, 2012 03:39:21PM {CLP1CN1232AR, ASIC id 0x00320104} | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.6 | 1 |
ngx_openresty/1.2.8.6 | 1 |
Apache/2.2.21 (Unix) DAV/2 PHP/5.2.17 mod_ssl/2.2.9 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.16 (Unix) DAV/2 PHP/5.3.5 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_qos/11.4 | 1 |
EUROS-Web/2.10.01 | 1 |
username.brandy.wixpress.com | 1 |
Apache/2.0.46 (Win32) | 1 |
x-net-1.74 | 1 |
Microsoft WinCE Fidelix v10.93.0 | 1 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k PHP/5.4.33 | 1 |
Apache/2.4.10 (FreeBSD) Phusion_Passenger/4.0.53 | 1 |
Web-Preprod | 1 |
Linux, HTTP/1.1, DSL-2890AL Ver AU_1.01.04 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN356BVHZ705MX; Thomson_pp_usr_hf Built:Mon Dec 05, 2011 04:30:05PM {TSP1FN1148IR, ASIC id 0x00320104} | 1 |
Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4.1 with Suhosin-Patch | 1 |
Apache/2.4.10 (Debian) OpenSSL/1.0.1e | 1 |
Apache/2.2.3 (Debian) mod_jk/1.2.18 | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ruby/1.2.6 Ruby/1.8.7(2008-08-11) mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.8 (Win32) PHP/5.3.28 | 1 |
lighttpd/1.4.8 | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 | 1 |
Apache/2.2.16 (Debian) DAV/2 SVN/1.6.12 mod_fcgid/2.3.6 PHP/5.3.3-7+squeeze15 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_scgi/1.13 mod_ssl/2.2.22 OpenSSL/1.0.1c | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.19 mod_perl/2.0.9-dev Perl/v5.18.4 | 1 |
Apache/2.2.25 (Win32) PHP/5.4.1 | 1 |
Apache/2.2.14 (Win32) mod_fcgid/2.3.6 DAV/2 | 1 |
Helix Server/14.0.1.571 (linux-rhel5-i686) | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.3 mod_ssl/2.2.24 OpenSSL/1.0.1c DAV/2 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.7l mod_scgi_pubsub/1.11-pubsub PHP/5.2.9 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.15 (FreeBSD) mod_ssl/2.2.15 OpenSSL/0.9.8x DAV/2 SVN/1.6.12 PHP/5.2.13 with Suhosin-Patch | 1 |
Apache/2.2.15 (CentOS) PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.8g DAV/2 PHP/5.2.5 | 1 |
Roxen/5.2.200-r2 | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052A; Serial Number: CN2AQ1309805SY; Stuttgart_pp_usr_hf Built:Mon Jun 11, 2012 10:11:53AM {STP1FN1224AR, ASIC id 0x00340104} | 1 |
lighttpd/1.4.26-devel-22 | 1 |
Apache/2.2.19 (FreeBSD) mod_ssl/2.2.19 OpenSSL/0.9.8k DAV/2 PHP/5.3.7 with Suhosin-Patch | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.18 with Suhosin-Patch mod_perl/2.0.3 Perl/v5.8.8 | 1 |
El Baul del Programador | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.16 mod_ssl/2.2.24 OpenSSL/0.9.8q DAV/2 mod_perl/2.0.8 Perl/v5.16.3 | 1 |
Apache/2.0.61 (Unix) PHP/4.3.11 | 1 |
Apache/2.2.22 (Win32) mod_jk/1.2.35 PHP/5.4.14 | 1 |
Apache/1.3.39 (Unix) PHP/5.2.5 | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.4.32 mod_wsgi/3.5 Python/3.3.5 mpm-itk/2.4.7-02 | 1 |
nereo7 | 1 |
PasteWSGIServer/0.5 Python/2.7.8 | 1 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.7a PHP/5.1.4 | 1 |
Jexus/5.1.4 Linux | 1 |
Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.10 | 1 |
OpenCms/7.5.2 | 1 |
EVSCO Server 3.2 | 1 |
Apache/2.0.55 (Unix) DAV/2 mod_jk/1.2.28 | 1 |
Jeus WebContainer/JEUS 5.0 (fix #26) | 1 |
nginx/1.5.1 + Phusion Passenger 4.0.14 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-1+lenny10 with Suhosin-Patch | 1 |
Apache/2.4.9 (Fedora) mod_scgi/1.14 PHP/5.5.12 | 1 |
Apache/2.2.27 (FreeBSD) mod_ssl/2.2.27 OpenSSL/1.0.1h DAV/2 | 1 |
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k PHP/5.2.9-2 | 1 |
Apache/2.0.59 (NETWARE) mod_jk/1.2.15 | 1 |
Apache/2.2.22 (Debian) DAV/2 SVN/1.6.17 mod_fcgid/2.3.6 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1BD10004RZ | 1 |
Resin/4.0.35 | 1 |
Apache/2.2.14 (Ubuntu) DAV/2 SVN/1.6.6 PHP/5.3.2-1ubuntu4.28 with Suhosin-Patch mod_ssl/2.2.14 OpenSSL/0.9.8k | 1 |
Apache/2.2.3 (CentOS) DAV/2 mod_fastcgi/2.4.6 | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.21 mod_wsgi/3.5 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.4 | 1 |
Apache/2.2.19 (Win32) mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.12.3 | 1 |
www.mirjambrouwer.nl | 1 |
squid/3.1.8 | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1k-fips PHP/5.6.4 | 1 |
Visualware MyConnection Server NetworkCenter 9.7f | 1 |
Uniline-3 | 1 |
LANCOM WLC-4025+ 8.50.0214 / 13.12.2011 | 1 |
Embedthis-Appweb/3.2.0 | 1 |
Apache/2.4.3 (Unix) PHP/5.4.7 Phusion_Passenger/4.0.40 | 1 |
false | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.1e | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.6 OpenSSL/1.0.1f | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8d DAV/2 PHP/5.2.9 mod_jk/1.2.31 | 1 |
Apache/2.2.8 (Win32) PHP/5.2.8 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch | 1 |
WowzaStreamingEngine/4.1.2 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3CBF3KNB05KC; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
CalendarServer/4.2(r10968) Twisted/12.0.0 TwistedWeb/9.0.0+r10968 | 1 |
Banaspati | 1 |
Apache/2.2.22 (Win32) DAV/2 mod_ssl/2.2.22 OpenSSL/0.9.8t mod_jk/1.2.35 | 1 |
Noelios-Restlet-Engine/1.1.6-SONATYPE-5348-V8 | 1 |
CAT12CE Webserver | 1 |
HP HTTP Server; HP Officejet 6500 E710n-z – CN557A; Serial Number: CN1CA3413Y05JW; Chianti_pp_usr_hf Built:Tue Jun 28, 2011 11:12:36AM {CIP1FN1126AR, ASIC id 0x001c2105} | 1 |
IceWarp/9.3 | 1 |
lighttpd (ALTLinux) | 1 |
WAGO_Webs | 1 |
Kerio Connect 7.1.1 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.7 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.4 | 1 |
Apache/2.0.55 (Ubuntu) PHP/5.1.2 mod_ssl/2.0.55 OpenSSL/0.9.8c | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1j PHP/5.4.16 | 1 |
Apache/2.4.7 (Debian) SVN/1.8.8 PHP/5.5.11-2 mod_perl/2.0.8 Perl/v5.18.2 | 1 |
PRTG/14.3.10.2422 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1j PHP/5.4.33 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN37H1616X0602; Morgan_pp Built:Mon Oct 15, 2012 01:15:57PM {MGP1CN1242BR, ASIC id 0x003a0008} | 1 |
Apache/2.2.24 (Unix) PHP/5.4.17 mod_wsgi/3.3 Python/2.7.5 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.4.9 (Unix) mod_jk/1.2.40 OpenSSL/1.0.1g PHP/5.5.11 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
e@sy-Pro v5.3.0 01/12/2011 | 1 |
Apache/2.2.21 (Win32) mod_jk/1.2.35 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=8051;ecid=144115535425949359,0) | 1 |
Apache/2.2.9 (FreeBSD) mod_ssl/2.2.9 OpenSSL/0.9.8e DAV/2 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0e | 1 |
EGW_httpd | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0e-fips DAV/2 PHP/5.3.10 | 1 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.5 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.9 | 1 |
SAP NetWeaver Application Server 7.41 / AS Java 7.40 | 1 |
username.nine.wixpress.com | 1 |
Zope/(Zope 2.10.9-final, python 2.4.6, linux2) ZServer/1.1 Plone/3.3.3 | 1 |
Nginx-VPSSIM | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips PHP/5.2.12 | 1 |
username.gin.wixpress.com | 1 |
Apache/2.4.6 (CentOS) SVN/1.7.14 | 1 |
Oracle HTTP Server Powered by Apache/1.3.19 (Win32) mod_plsql/3.0.9.8.4 mod_ssl/2.8.1 OpenSSL/0.9.5a mod_fastcgi/2.2.10 mod_oprocmgr/1.0 mod_perl/1.25 | 1 |
2.229.111.137 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN39OE3HD205KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Serveur OS9 | 1 |
Apache/2.4.3 (Win32) PHP/5.4.13 | 1 |
tmp INPU.pl Web Server | 1 |
Apache/2.2.15 (Win32) PHP/5.3.2 DAV/2 SVN/1.6.19 | 1 |
Apache/2.2.9 (Unix) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8h PHP/4.4.9 mod_apreq2-20051231/2.6.0 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Denmark-Copenhagen-VC-Room | 1 |
Apache/2.2.16 (Debian) mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
WebStar/2.13 Linux | 1 |
Apache/2.2.22 (Win64) mod_ssl/2.2.22 OpenSSL/1.0.1c PHP/5.4.3 DAV/2 | 1 |
Apache/1.3.39 (Unix) PHP/4.4.7 mod_ssl/2.8.30 OpenSSL/0.9.8c | 1 |
*<>*<>*<>*<>*<>*<>*<>*<>*<>*<>*<>*<>*<>*<>* | 1 |
HP HTTP Server; HP Officejet 7500 E910 – CQ839A; Serial Number: MY2CK310HF05P4; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.4.4 (Win32) PHP/5.4.17 | 1 |
QuidProQuo/2.0 | 1 |
NovaAppServer-Linux64/2.5.5.0 | 1 |
Apache/2.2.21 (Win64) PHP/5.3.9 | 1 |
VA Web Server | 1 |
Apache/2.2.13 (FreeBSD) mod_ssl/2.2.13 OpenSSL/0.9.8e DAV/2 PHP/5.4.12 | 1 |
Apache/2.4.6 (FreeBSD) SVN/1.8.1 PHP/5.4.26 | 1 |
lighttpd/1.4.28-devel-1417:1419 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=5079;ecid=171245941912,1) | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.6 mod_jk/1.2.31 | 1 |
RCTTools (Redsonic Web configuration Tools) v2 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.2.16 (Win32) mod_aspdotnet/2.2 | 1 |
Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.1e-fips PHP/5.3.27 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.10 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.1e-fips mod_jk/1.2.32 | 1 |
Apache/2.2.26 (FreeBSD) mod_python/3.3.1 Python/2.7.6 PHP/5.4.26 mod_ssl/2.2.26 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
Apache/2.2.15 (FreeBSD) mod_ssl/2.2.15 OpenSSL/1.0.0a DAV/2 PHP/5.3.2 with Suhosin-Patch | 1 |
Apache/2.4.7 (Ubuntu) mod_wsgi/3.4 Python/2.7.6 | 1 |
Apache/2.2.6 (Mandriva Linux/PREFORK-8mdv2008.0) | 1 |
Jetty/5.1.4 (Windows 2003/5.2 x86 java/1.5.0_22 | 1 |
username.krembo.wixpress.com | 1 |
LANCOM 1781A 8.60.0189 / 02.04.2012 | 1 |
tracd/1.0.1 Python/2.7.3 | 1 |
username.cantal.wixpress.com | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.31 mod_ssl/2.2.27 OpenSSL/1.0.1i DAV/2 | 1 |
GLaDOS/12.4 | 1 |
Apache/2.4.10 (Unix) mod_wsgi/4.4.3 Python/2.7.8 | 1 |
Apache/2.2.6 (Unix) mod_ssl/2.2.6 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.37 | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1AC90002RK | 1 |
Linux, HTTP/1.1, DIR-600 Ver 2.12DE | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e PHP/5.3.28 mod_perl/2.0.8 Perl/v5.14.2 | 1 |
Apache/2.2.22 (FreeBSD) Phusion_Passenger/3.0.12 mod_ssl/2.2.22 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.22 (Win32) PHP/5.3.16 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 1 |
Niagara Web Server/3.6.406 | 1 |
Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 mod_jk/1.2.28 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.0.54 (Unix) mod_ssl/2.0.54 OpenSSL/0.9.7e PHP/5.1.2 mod_jk/1.2.23 | 1 |
Apache/2.2.9 (Debian) PHP/5.4.36-0+deb7u3 | 1 |
Apache/2.4.3 (Win32) PHP/5.4.0 OpenSSL/0.9.8x | 1 |
ECFMS (arn/4689) | 1 |
Apache/2.2.8 (Win32) PHP/5.4.26 | 1 |
IC-Zeusa-Afrodyta | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.17 mod_wsgi/3.5 Python/2.7.5 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.20 SVN/1.7.14 mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.25 (FreeBSD) mod_ssl/2.2.25 OpenSSL/0.9.8y mod_fastcgi/mod_fastcgi-SNAP-0910052141 PHP/5.4.21 mod_perl/2.0.8 Perl/v5.16.3 | 1 |
QGenie | 1 |
Apache/2.2.22 (Win32) PHP/5.4.16 | 1 |
cisco-IOS. | 1 |
Spike Engine | 1 |
http_Daemon | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.3.21 with Suhosin-Patch mod_ssl/2.2.23 OpenSSL/0.9.8x | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.15 | 1 |
kangle/3.4.2 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8y PHP/5.3.25 | 1 |
Apache/2.2.22 (Unix) PHP/5.3.23 | 1 |
Apache/2.4.9 (Win32) PHP/5.4.17 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze18 with Suhosin-Patch proxy_html/3.0.1 | 1 |
username.chewbacca.wixpress.com | 1 |
HDHomeRun/1.0 | 1 |
nginx/1.4.2 + Phusion Passenger 4.0.16 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.26 mod_ssl/2.2.27 OpenSSL/1.0.1i DAV/2 | 1 |
TornadoServer/4.0.2 (Gunicorn/19.1.1) | 1 |
Cherokee/1.2.104 (UNIX) | 1 |
Apache/2.4.6 (Ubuntu) SVN/1.7.9 PHP/5.5.3-1ubuntu2.1 mod_python/3.3.1 Python/2.7.5+ | 1 |
Niagara Web Server/3.7.106.6 | 1 |
Apache/2.4.9 (Unix) mod_scgi/1.14 PHP/5.5.13 | 1 |
Apache/1.3.41 (Unix) PHP/4.4.9 mod_deflate/1.0.21 rus/PL30.22 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN428EW15K060N; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.17 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3C3E3J59060N; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.4.6 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.3 | 1 |
Apache/2.0.52 (Red Hat) DAV/2 mod_auth_kerb/5.0-rc4 FrontPage/5.0.2.2635 PHP/4.3.9 mod_ssl/2.0.52 OpenSSL/0.9.7a | 1 |
Apache/2.2.29 (Unix) mod_fastcgi/2.4.6 mod_wsgi/3.4 Python/2.7.8 PHP/5.6.2 mod_ssl/2.2.29 OpenSSL/0.9.8zc DAV/2 mod_perl/2.0.8 Perl/v5.20.0 | 1 |
Apache/2.4.4 (Win32) PHP/5.4.19 | 1 |
Apache/2.4.7 (Ubuntu) mod_python/3.3.1 Python/2.7.6 OpenSSL/1.0.1f | 1 |
nginx/1.2.5 + Phusion Passenger 3.0.18 (mod_rails/mod_rack) | 1 |
LANCOM 1781-4G 8.80.0159 / 19.04.2013 | 1 |
Apache/2.0.44 (Unix) mod_ssl/2.0.44 OpenSSL/0.9.6b PHP/4.3.1 mod_auth_pgsql/2.0.1 | 1 |
Apache/2.2.9 (Debian) mod_jk/1.2.26 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.0 | 1 |
Saia PCD3.M5340/1.16.27 | 1 |
Apache/2.0.54 (Unix) DAV/2 PHP/4.3.11 | 1 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.3.0 (M;max-age=0+0;age=0;ecid=1721136464456296,0:1:1) | 1 |
SWL | 1 |
Apache/2.2.25 (Win32) mod_wsgi/3.5-BRANCH Python/3.3.2 | 1 |
Apache/2.2.17 (Unix) DAV/2 PHP/5.3.5 mod_jk/1.2.31 | 1 |
THEO+Server/5.0 | 1 |
Apache/2.4.12 (Unix) OpenSSL/1.0.2 | 1 |
HP HTTP Server; HP Officejet 6100 – CB863A; Serial Number: CN27N2B0J005KR; Tequila_pp_usr_hf Built:Mon Sep 01, 2014 10:52:33AM {TQP1FN1436AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t mod_wsgi/3.3 Python/2.7.2 | 1 |
Apache/2.2.21 (Unix) PHP/5.2.15 | 1 |
Oracle-Application-Server-10g/9.0.4.2.0 Oracle-HTTP-Server | 1 |
·ÉÓãÐÇÉÏÍøÐÐΪ¹ÜÀí·ÓÉÆ÷ | 1 |
Icecast 2.3.99.5 | 1 |
Apache/2.4.10 (Win64) OpenSSL/1.0.1j PHP/5.6.2 | 1 |
ccoiad.com | 1 |
Netgear | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 PHP/5.3.27 mod_jk/1.2.37 mod_perl/2.0.7 Perl/v5.10.1 | 1 |
Apache/1.3.34 (Unix) PHP/4.4.3 mod_ssl/2.8.25 OpenSSL/0.9.8a | 1 |
D-Link | 1 |
Apache-AdvancedExtranetServer/2.0.47 (Mandrake Linux/6.6.92mdk) mod_perl/1.99_09 Perl/v5.8.1 mod_ssl/2.0.47 OpenSSL/0.9.7b PHP/4.3.2 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny16 with Suhosin-Patch proxy_html/3.0.0 mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
frisco-1 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 mod_jk/1.2.37 mod_bwlimited/1.4 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.1e-fips DAV/2 mod_jk/1.2.37 | 1 |
Werkzeug/0.9.3 Python/2.7.5+ | 1 |
Werkzeug/0.9.6 Python/2.7.5 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips PHP/5.3.28 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.16 mod_ssl/2.2.25 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.4.2 (Win32) OpenSSL/1.0.1g PHP/5.4.4 | 1 |
Apache/2.2.3 (Debian) DAV/2 Phusion_Passenger/3.0.5 PHP/5.2.0-8+etch16 mod_ssl/2.2.3 OpenSSL/0.9.8c mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Alpha Five Application Server/10.0 Build/4263-3687 | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.0.53 (Unix) mod_ssl/2.0.53 OpenSSL/0.9.6g PHP/4.3.10 | 1 |
Apache/2.2.16 (Debian) DAV/2 SVN/1.6.12 PHP/5.3.3-7+squeeze15 with Suhosin-Patch proxy_html/3.0.1 mod_python/3.3.1 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Hiawatha v9.3.1 | 1 |
Apache/2.4.10 (Fedora) PHP/5.5.21 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN26PBS00P05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
PCW-IT—Sicestherm—Room-Fahrenheit | 1 |
Apache/2.4.6 (CentOS) PHP/5.4.36 | 1 |
Abyss/2.5.0.0-X1-MacOS X AbyssLib/2.5.0.0 | 1 |
HP HTTP Server; HP ENVY 4500 series – A9T80B; Serial Number: CN46O1408Y05X4; Built:Mon Sep 08, 2014 02:37:26PM {MKM1FN1437AR} | 1 |
Apache/2.4.3 (Unix) OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.31 mod_perl/2.0.9dev Perl/v5.16.3 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_wsgi/2.5 | 1 |
Tengine/1.4.6 | 1 |
Linux, HTTP/1.1, DIR-850L Ver 1.02 | 1 |
Apache/2.4.4 (Unix) PHP/5.3.4 | 1 |
Apache/2.2.15 (Red Hat) mod_ssl/2.2.15 OpenSSL/1.0.0-fips DAV/2 mod_jk/1.2.15 PHP/5.2.3 | 1 |
Cherokee/1.2.101 (Gentoo Linux) | 1 |
Apache/2.2.17 (Unix) PHP/5.2.14 | 1 |
Apache/2.2.17 (Win32) PHP/5.3.0 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.8 | 1 |
Apache/2.4.7 (Ubuntu) SVN/1.8.8 PHP/5.5.9-1ubuntu4.4 OpenSSL/1.0.1f | 1 |
nginx/1.1.18 | 1 |
Apache/2.4.6 (Fedora) OpenSSL/1.0.1e-fips PHP/5.4.23 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.31-1~dotdeb.1 mod_ssl/2.2.22 OpenSSL/1.0.1i-dev | 1 |
Apache/2.2.22 (Win32) PHP/5.3.2 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.6.0 mod_jk/1.2.40 | 1 |
Apache/2.2.16 (Unix) DAV/2 PHP/5.2.17 | 1 |
Apache/1.3.31 (Unix) mod_ssl/2.8.18 OpenSSL/0.9.7d PHP/4.3.7 | 1 |
Kandu Server/1.1 | 1 |
Apache/2.2.21 (Win32) PHP/5.3.25 mod_ssl/2.2.21 OpenSSL/0.9.8r | 1 |
Restlet-Framework/2.0.5 | 1 |
Apache/2.2.16 (Unix) DAV/2 PHP/5.2.10 mod_jk/1.2.31 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN21HAT0WT05MX; Thomson_pp_usr_hf Built:Fri Nov 18, 2011 10:39:07AM {TSP1FN1131BR, ASIC id 0x00320104} | 1 |
Apache/1.3.33 (Darwin) PHP/5.2.4 | 1 |
Apache Tomcat/4.0.3 (HTTP/1.1 Connector) | 1 |
ISLCP isl.filesanctuary.net | 1 |
Netscape-Enterprise/4.1 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN42AEW0BS060N; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/1.3.39 (Unix) PHP/5.2.5 mod_ssl/2.8.30 OpenSSL/0.9.7a | 1 |
Linux, HTTP/1.1, DIR-616 Ver 1.02 | 1 |
Apache/2.2.13 (Red Hat) | 1 |
Apache/2.2.24 (Win32) mod_ssl/2.2.24 OpenSSL/1.0.1g PHP/5.3.23 mod_perl/2.0.8 Perl/v5.16.3 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.2.17 | 1 |
Embedthis-http | 1 |
EsclaveHTTP | 1 |
Apache/2.2.29 (FreeBSD) DAV/2 PHP/5.4.34 mod_ssl/2.2.29 OpenSSL/1.0.1j | 1 |
HP HTTP Server; HP Officejet 6100 – CB863A; Serial Number: CN3493RG0K05KR; Tequila_pp_usr_hf Built:Fri Dec 16, 2011 08:11:48PM {TQP1FN1150ER, ASIC id 0x003a0008} | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.1 mod_jk/1.2.28 | 1 |
Linux, HTTP/1.1, DIR-845L Ver 1.02 | 1 |
Niagara Web Server/3.8.38.6 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_wsgi/1.3 Python/2.5.2 | 1 |
HP HTTP Server; HP Deskjet 3050 J610 series – CH376B; Serial Number: CN14I3D1VJ05HX; Sumba_pp Built:Mon Aug 23, 2010 02:15:36PM {SBP1FN1022FR, ASIC id 0x00340100} | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.17 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips PHP/5.2.10 mod_jk/1.2.37 | 1 |
Warp/1.3.1.1 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.4.13 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 PHP/5.1.6 | 1 |
Apache/2.4.4 (Unix) PHP/5.5.10 OpenSSL/1.0.1e SVN/1.8.0 | 1 |
HP HTTP Server; HP Officejet 6500 E710n-z – CN557A; Serial Number: CN18U3329M05JW; Chianti_pp_usr_hf Built:Thu Feb 02, 2012 10:54:00AM {CIP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.27 (Unix) DAV/2 mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_jk/1.2.40 | 1 |
Apache/2.2.22 (Ubuntu) mod_wsgi/3.3 Python/2.7.3 | 1 |
Apache/2.2.26 (Unix) DAV/2 mod_ssl/2.2.26 OpenSSL/1.0.1c | 1 |
Apache/2.4.12 (Unix) OpenSSL/1.0.1k PHP/5.6.6 | 1 |
nginx + Phusion Passenger 4.0.5 | 1 |
HOJOKI | 1 |
NAE1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.14 | 1 |
ftlpy 0.1 | 1 |
sslgw/1.2.3 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8o PHP/5.5.0 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.5.1 mod_ssl/2.2.25 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.4.3 (Unix) PHP/5.4.9 mod_jk/1.2.37 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8x PHP/5.3.17 | 1 |
Apache/2.0.63 (Unix) PHP/5.3.28 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN15A4J89C05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.16 mod_ssl/2.2.22 OpenSSL/1.0.0e | 1 |
Apache/1.3.27 Ben-SSL/1.48 (Unix) | 1 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/0.9.8q mod_perl/2.0.7 Perl/v5.12.4 | 1 |
Apache/2.0.52 | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.25 (Win32) mod_jk/1.2.40 PHP/5.3.29 | 1 |
electra/1.0 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.36-1~dotdeb.1 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.6(2007-09-24) mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Apache/2.2.8 (Win32) PHP/5.2.5 mod_antiloris/0.5.2 | 1 |
Apache/2.2.22 (EL) DAV/2 PHP/5.2.17 mod_python/3.3.1 Python/2.4.3 mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 | 1 |
Agranat-EmWeb/R4_01 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.3.11 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/1.0.1c PHP/5.3.3 | 1 |
Apache/2.0.54 (Win32) PHP/4.3.10 | 1 |
Goliath.Web, V3.1.1.6237(2014/09/22 13:50:57.177) | 1 |
IVISION Web Server | 1 |
Apache/2.4.10 (Win32) PHP/5.6.3 | 1 |
lighttpd/1.4.28-devel-1892M | 1 |
Apache/2.2.21 (Win32) JRun/4.0 PHP/5.3.19 | 1 |
Apache/1.3.33 (Unix) PHP/4.4.9 mod_perl/1.31 mod_ssl/2.8.24 OpenSSL/0.9.7l | 1 |
Apache/2.4.9 (Unix) PHP/5.5.18 | 1 |
username.fosters.wixpress.com | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.15 mod_wsgi/3.5 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch9 | 1 |
LANCOM 1821 Wireless ADSL (Ann.B) 7.58.0045 / 14.11.2008 | 1 |
nginx/1.0.0 + Phusion Passenger 3.0.7 (mod_rails/mod_rack) | 1 |
SWS | 1 |
MochiWeb/1.1 WebZMachine/2.0 (Z) Zotonic/0.13-dev | 1 |
Apache/2.2.8 (Win32) mod_auth_sspi/1.0.4 PHP/5.2.6 | 1 |
TS4K | 1 |
Apache/2.2.25 (Win32) mod_aspdotnet/2.2 | 1 |
Your mom | 1 |
Samsung SCX-8123 8128 Series, sn=Z8D8B1BC70005QV | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 mod_ldap_userdir/1.1.12-20070601 mod_python/3.3.1 Python/2.5.2 PHP/5.2.4-2ubuntu5.18 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.31 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd | 1 |
Apache/2.2.24 (Unix) PHP/5.3.26 with Suhosin-Patch mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.14 (FreeBSD) PHP/5.2.12 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.8.9 | 1 |
Apache/1.3.37 (Unix) mod_ssl/2.8.28 OpenSSL/0.9.8m mod_fastcgi/2.4.2 mod_deflate/1.0.21 | 1 |
Paladin/1.0.0 | 1 |
Apache/2.2.10 (Unix) mod_ssl/2.2.10 OpenSSL/0.9.8b PHP/5.2.6 | 1 |
AE3 5.0.679/C055 HTTP Interface, Pure JAVA | 1 |
Apache/2.2.16 (Win32) DAV/2 mod_ssl/2.2.16 OpenSSL/0.9.8o PHP/5.2.14 | 1 |
Sparmedo | 1 |
EFAServer/9.16.32.55 | 1 |
Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8k DAV/2 PHP/5.2.12 with Suhosin-Patch | 1 |
Apache/2.2.4 (Win32) PHP/5.2.3 SVN/1.7.9 DAV/2 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/1.0.0-fips DAV/2 PHP/5.2.17 | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.4.6 mod_ssl/2.2.27 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.22 (Win32) mod_jk/1.2.35 | 1 |
BaseHTTP/0.3 Python/2.7 | 1 |
Apache/2.2.8 (Win32) PHP/5.2.6 mod_aspdotnet/2.2 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.0-fips mod_bwlimited/1.4 PHP/5.4.20 | 1 |
Apache/2.0.53 (FreeBSD) PHP/5.0.3 | 1 |
Apache/2.4.10 (Unix) PHP/5.5.16 | 1 |
Apache/2.2.22 (Unix) PHP/5.3.29 | 1 |
HeyzapCDN | 1 |
username.fanta.wixpress.com | 1 |
MiniServ/1.670 | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_fcgid/2.3.9 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_wsgi/3.2 Python/2.6.6 | 1 |
Apache/1.3.29 (Unix) mod_auth_pgsql/0.9.12 mod_gzip/1.3.26.1a mod_jk/1.2.6-dev PHP/4.4.2 ApacheJServ/1.1 mod_ssl/2.8.16 OpenSSL/0.9.7d | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8x | 1 |
Apache/2.2.4 (Win32) mod_jk/1.2.26 | 1 |
Apache/2.4.10 (Ubuntu) PHP/5.5.18-1+deb.sury.org~precise+1 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN38QEXHXW05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.2.17 (FreeBSD) mod_ssl/2.2.17 OpenSSL/0.9.8q DAV/2 | 1 |
Sun GlassFish Enterprise Server v2.1.1 Patch21 | 1 |
Zope/(Zope 2.7.7-final, python 2.3.7, linux2) ZServer/1.1 | 1 |
Apache/2.0.54 (Win32) mod_aspdotnet/2.0 | 1 |
Apache/2.0.54 (Debian GNU/Linux) DAV/2 PHP/4.4.0-4 mod_ssl/2.0.54 OpenSSL/0.9.8a | 1 |
gen5th/1.80.00 | 1 |
Zope/(Zope 2.8.10-1, python 2.4.4, linux2) ZServer/1.1 Plone/Unknown | 1 |
Apache/2.2.3 (Debian) PHP/4.4.4-8+etch1 mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
KWBTabCom | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.1.6 | 1 |
Apache/2.2.14 (Win32) PHP/5.2.12 mod_aspdotnet/2.2 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN31MBXJ7D05KC; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
WDaemon/7.2.1 | 1 |
HP HTTP Server; HP ENVY 4500 series – A9T80B; Serial Number: CN46L142SB05X4; Built:Tue Jul 22, 2014 11:55:10AM {MKM1FN1430ER} | 1 |
nginx/0.7.59 | 1 |
Apache/2.2.22 (Ubuntu) DAV/2 mod_fcgid/2.3.9 mod_jk/1.2.32 mod_ssl/2.2.22 OpenSSL/1.0.1 mod_perl/2.0.5 Perl/v5.14.2 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.23 | 1 |
Prod | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.12 with Suhosin-Patch | 1 |
HTTP_Server | 1 |
i-Catcher Console/3.3.20 | 1 |
RemObjects DXSock Web Server v1.0 | 1 |
username.crispy.wixpress.com | 1 |
gunicorn/0.13.4 | 1 |
Apache/2.4.10 (Ubuntu) PHP/5.5.16-1+deb.sury.org~precise+1 | 1 |
Apache/2.2.16 (Debian) DAV/2 SVN/1.6.12 mod_fastcgi/2.4.6 PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
default.hu | 1 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.3.26 with Suhosin-Patch | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch | 1 |
Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o PHP/5.2.14 | 1 |
Lotus Mobile Connect | 1 |
ScreenConnect/4.3.6563.5232-2357318288 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips PHP/5.3.20 | 1 |
Apache/2.4.10 (Win64) PHP/5.4.3 | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_wsgi/3.2 Python/2.6.6 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips PHP/5.2.10 mod_jk/1.2.31 | 1 |
Apache/2.2.16 (Debian) DAV/2 SVN/1.6.12 PHP/5.3.3-7+squeeze14 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.4.6 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.5.7 | 1 |
emhttp | 1 |
Apache/2.4.12 (FreeBSD) PHP/5.6.7 | 1 |
Apache/2.2.17 (FreeBSD) DAV/2 PHP/5.3.5 with Suhosin-Patch | 1 |
Apache/2.4.4 (Win32) OpenSSL/1.0.1e SVN/1.8.4 PHP/5.5.3 | 1 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.13 | 1 |
Apache/2.2.16 (FreeBSD) mod_ssl/2.2.16 OpenSSL/0.9.7e-p1 DAV/2 PHP/5.2.17 with Suhosin-Patch | 1 |
Apache/2.2.22 (Unix) PHP/5.3.8 mod_ssl/2.2.22 OpenSSL/0.9.8q | 1 |
Apache/2.2.25 (Win32) PHP/5.4.15 | 1 |
Apache/2.4.10 (Debian) mod_fcgid/2.3.9 PHP/5.6.5-1 mod_python/3.3.1 Python/2.7.8 OpenSSL/1.0.1k | 1 |
ScreenConnect/4.4.7175.5302-1398203536 | 1 |
Apache/2.2.14 (FreeBSD) mod_ssl/2.2.14 OpenSSL/0.9.8q DAV/2 PHP/5.3.8 with Suhosin-Patch | 1 |
webcam 7 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.5.10 | 1 |
Apache/2.0.63 (Win32) PHP/5.1.6 | 1 |
Apache/2.4.10 (Win32) PHP/5.5.19 | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.5.19 mod_perl/2.0.9dev Perl/v5.16.3 | 1 |
lwaccel | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.3.27 with Suhosin-Patch | 1 |
Apache/2.2.3 (Asianux) | 1 |
Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.8e PHP/4.4.0 | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8g PHP/5.3.3 | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8o mod_wsgi/2.5 Python/2.5.2 | 1 |
PasteWSGIServer/0.5 Python/2.4.3 | 1 |
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.5.16 | 1 |
Apache/2.4.7 (Win32) mod_fcgid/2.3.9 OpenSSL/1.0.1e PHP/5.4.8 | 1 |
Apache/2.2.21 (Unix) mod_fastcgi/2.4.6 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN42SEX0KJ060N; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Jana-Server/2.5.0.133 | 1 |
Apache/2.0.61 (Unix) DAV/2 PHP/5.2.13 | 1 |
Apache/2.4.10 (Win64) OpenSSL/1.0.1j | 1 |
Oracle GlassFish Server 3.1.1 | 1 |
Grandstream GXP2000 1.2.5.3 | 1 |
IBM_HTTP_Server/7.0.0.25 (Unix) | 1 |
Hewlett-Packard, Co. | 1 |
osh/www | 1 |
Apache/2.0.65 (Unix) mod_ssl/2.0.65 OpenSSL/0.9.8e-fips-rhel5 PHP/4.4.7 | 1 |
IceWarp/10.4.4 | 1 |
Apache/1.3.41 (Unix) mod_ssl/2.8.31 OpenSSL/0.9.8e | 1 |
Apache/2.2.22 (Win32) mod_jk/1.2.20 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.0.2 (G;max-age=0+0;age=0;ecid=83266305486,0) | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.1e-fips DAV/2 PHP/5.3.3 | 1 |
Apache/2.2.22 (Win32) PHP/5.4.9 | 1 |
Apache/2.4.3 (Win32) PHP/5.4.7 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1g mod_bwlimited/1.4 | 1 |
Apache/2.0.59 (NETWARE) mod_perl/1.99_12 Perl/v5.8.4 PHP/5.0.5 mod_jk/1.2.21 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8g PHP/5.2.5 | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.3.28 with Suhosin-Patch | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.10 with Suhosin-Patch | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.25 (Win32) PHP/5.2.17 DAV/2 | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – CR231B; Serial Number: CN1AR4349T05PJ; Sumbamlk_pp Built:Tue Apr 12, 2011 04:08:55PM {SMP1FN1115AR, ASIC id 0x00340100} | 1 |
Apache/2.0.58 (Win32) PHP/4.4.9 | 1 |
Apache/2.0.54 (Win32) PHP/5.1.6 | 1 |
B&R Web Server Ver. 3.07.0{2011-04-13 16:25:20.2} | 1 |
grizzly/1.9.49 | 1 |
Apache/2.2.9 (Win32) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8i mod_autoindex_color PHP/4.4.9 | 1 |
Apache/2.2.11 (Win32) PHP/5.3.23 mod_perl/2.0.4 Perl/v5.8.8 | 1 |
Citrix-3.2.3.8 ‘Marshal West’ | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j | 1 |
username.sake.wixpress.com | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.24 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.0.55 (Win32) PHP/4.3.11 | 1 |
tsa_b | 1 |
node-static/0.7.3 | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN34SBQGF505RQ; Margarita_premium_mp2 Built:Thu Aug 28, 2014 03:20:05PM {MPM3CN1435AR, ASIC id 0x003a0008} | 1 |
YaVoiceProxy2 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 | 1 |
PasteWSGIServer/0.5 Python/2.6.6 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.3.28 with Suhosin-Patch mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
ScreenConnect/4.4.7175.5302-3240232655 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.2.8 (Win32) PHP/5.2.17 | 1 |
Apache/2.2.3 (APMServ) mod_ssl/2.2.3 OpenSSL/0.9.8d PHP/5.2.0 | 1 |
squid/2.6.STABLE19 | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1g PHP/5.5.8 SVN/1.8.5 Phusion_Passenger/4.0.45 mod_perl/2.0.8 Perl/v5.18.1 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN06R1H57C05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
BaseHTTP/0.3 Python/2.7.1 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.17 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8y DAV/2 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN31EBXGHR05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
GlassFish Server Open Source Edition 3.1.1 | 1 |
i-Catcher Sentry/3.0.23 | 1 |
Apache/2.4.4 (Unix) PHP/5.4.17 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1e-freebsd | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_qos/10.10 mod_perl/2.0.6 Perl/v5.8.8 | 1 |
DVBViewer Recording Service | 1 |
Apache/2.4.7 (Win64) mod_jk/1.2.37 | 1 |
Apache/2.4.7 (Fedora) PHP/5.5.13 | 1 |
Apache/1.3.41 (Unix) mod_ssl/2.8.31 OpenSSL/0.9.8c PHP/4.4.8 mod_perl/1.29 FrontPage/5.0.2.2510 | 1 |
DS67x0 | 1 |
Apache/2.0.55 (Win32) mod_python/3.2.10 Python/2.4.4 PHP/5.0.3 SVN/1.4.4 DAV/2 | 1 |
Apache/2.2.25 (Unix) DAV/2 PHP/5.2.17 | 1 |
Apache/1.3.31 (Unix) PHP/4.3.6 | 1 |
nginx/1.3.15 + Phusion Passenger 4.0.2 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.24 OpenSSL/0.9.8q DAV/2 | 1 |
Jetty/5.1.4 (Linux/2.6.32-220.17.1.el6.x86_64 amd64 java/1.6.0_12 | 1 |
DVR WebServer | 1 |
Niagara Web Server/3.5.39 | 1 |
nginx/1.6.0, nginx/1.6.0 | 1 |
Apache/2.2.6 (Unix) mod_ssl/2.2.6 OpenSSL/0.9.8e-fips-rhel5 PHP/4.4.7 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN2AM164XB05ST; Morgan_pp Built:Thu Dec 19, 2013 10:03:32PM {MGP1CN1351AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.9 (FreeBSD) mod_ssl/2.2.9 OpenSSL/0.9.8e DAV/2 PHP/5.2.6 with Suhosin-Patch | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN09L2R8YX05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
wsr/0.1 | 1 |
NY App Srv 2.0 | 1 |
username.kaye.wixpress.com | 1 |
Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4 | 1 |
username.brie.wixpress.com | 1 |
ECS (ory/43F6) | 1 |
Apache/2.4.RedKernel | 1 |
TornadoServer/4.0.1 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips PHP/5.3.28 mod_jk/1.2.40 | 1 |
iGuard Embedded Web Server/5.0.8821A (LM520) SN:VK-2003-51C6-A020 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN43MEW1MG060N; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.3.27 | 1 |
Skynet mod_fcgid/2.3.6 mod_ruby/1.2.6 Ruby/1.8.7(2012-02-08) | 1 |
LabVIEW/8.0 | 1 |
Apache/2.0.55 (Ubuntu) PHP/4.4.2-1.1 | 1 |
Apache/2.2.11 (Win32) PHP/5.2.9-2 DAV/2 | 1 |
Niagara Web Server/3.7.106.3 | 1 |
Apache/2.0.52 (Unix) PHP/5.0.2 | 1 |
Apache/2.4.7 (Win32) OpenSSL/0.9.8y PHP/5.4.26 | 1 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.7m mod_jk/1.2.6 | 1 |
Jumpstarter-Proxy (https://jumpstarter.io/) | 1 |
Apache/2.2.11 (Unix) DAV/2 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.10 | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.8e DAV/2 mod_wsgi/2.3 Python/2.5.1 PHP/5.2.3 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_wsgi/3.3 Python/2.7.6 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 1 |
Apache/2.0.63 (Win32) PHP/5.2.9-2 | 1 |
Apache/2.4.10 (Unix) mod_scgi/1.14 PHP/5.5.16 | 1 |
huhehaote-cnc-ugc-rs-145-66 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.3 mod_python/3.2.8 Python/2.4.3 | 1 |
Synametrics Web Server v7 | 1 |
Jetty(7.2.2.v20101205) | 1 |
Apache/2.2.17 (FreeBSD) DAV/2 PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.17 OpenSSL/0.9.8q | 1 |
Apache/1.3.31 (Unix) PHP/4.3.7 | 1 |
SAP NetWeaver Application Server / ABAP 702 | 1 |
Apache/2.4.6 (CentOS) mod_wsgi/4.4.7 Python/3.4.2 | 1 |
Lighttpd on Panoramix | 1 |
Apache/1.3.26 (Win32) PHP/4.2.3 | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch1 mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1i | 1 |
Apache/2.4.4 (Win64) OpenSSL/1.0.1c PHP/5.4.3 | 1 |
HP HTTP Server; HP Photosmart Plus B210 series – CN216B; Serial Number: CN16K3R1HT05J9; Tassen_usr_hf Built:Mon Feb 13, 2012 04:56:06PM {TAL1FN1207AR, ASIC id 0x00280004} | 1 |
Tcl-Webserver/3.4.2 September 3, 2002 | 1 |
nginx + Phusion Passenger 4.0.17 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.8.8 | 1 |
LANCOM 1781AW 8.62.0086 / 07.11.2012 | 1 |
Apache/1.3.41 (Debian AMD64 GNU/Linux) (Unix) PHP/5.2.17 | 1 |
Apache/2.2.24 (Unix) mod_wsgi/3.3 Python/2.7.2 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 PHP/5.3.26 | 1 |
ngx_openresty/1.4.3.3 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1j PHP/5.5.17 | 1 |
*** | 1 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8d DAV/2 PHP/4.4.7 | 1 |
Apache/2.4.1 (Unix) OpenSSL/0.9.8o | 1 |
DvrDdnsReceiver 1.0 | 1 |
nginx/1.4.4 + Phusion Passenger 4.0.26 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.12 SVN/1.7.16 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
Apache/2.4.4 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.5.0 | 1 |
Apache/2.2.17 (Win32) PHP/5.3.6 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.29 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.0.58 (Unix) mod_ssl/2.0.58 OpenSSL/0.9.7g PHP/4.4.4 | 1 |
Resin/2.1.6 | 1 |
Apache/2.4.4 (Unix) PHP/5.5.13 | 1 |
IndigoVision | 1 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7l | 1 |
C64 HTTP Server 2.3.2 | 1 |
WDaemon/6.7.7 | 1 |
OtelNetwork/1.5.4 | 1 |
POSIX, UPnP/1.0, Intel MicroStack/1.0.2777 | 1 |
Apache/2.2.22 (Win32) PHP/5.4.12 | 1 |
IS2 Web Server 1.85 | 1 |
Apache/2.2.3 (CentOS) DAV/2 PHP/5.1.6 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 | 1 |
squid/3.4.10 | 1 |
Microsoft_IIS | 1 |
Apache/2.2.16 (FreeBSD) mod_ssl/2.2.16 OpenSSL/0.9.8e | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8k PHP/5.3.0 | 1 |
Rockpile Web Server | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.9 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Apache/2.0.59 (Win32) PHP/5.2.0 | 1 |
Apache/2.4.7 (Win64) mod_wsgi/3.5-BRANCH Python/3.3.4 | 1 |
Apache/2.4.2 (Unix) PHP/5.4.11 | 1 |
Apache/2.2.27 (Win32) mod_jk/1.2.37 | 1 |
TornadoServer/2.4.post1 | 1 |
RomPager UPnP/1.0 | 1 |
Tontito’s Mirc Web Server v6.6 Private | 1 |
Apache/2.2.9 (Debian) mod_jk/1.2.26 PHP/5.2.6-1+lenny9 with Suhosin-Patch proxy_html/3.0.0 mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
eja 8.1.29 | 1 |
cam_1 | 1 |
E2000-MCU | 1 |
Apache/2.4.12 (Ubuntu) mod_fcgid/2.3.7 PHP/5.6.7-1+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
PaySessionHttpd | 1 |
WWW-KODEKS/6.2 | 1 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (H;max-age=300+0;age=13;ecid=47939256260159429,0:1) | 1 |
Apache/2.2.23 (Win64) vFabric/5.2.0 vFabricLicense/5.2.0 mod_ssl/2.2.23 OpenSSL/1.0.1c-fips DAV/2 mod_bmx/0.9.4 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_jk/1.2.40 mod_bwlimited/1.4 | 1 |
Apache/2.2.14 (Win32) mod_jk/1.2.31 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.5.12 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
YuanWebServer | 1 |
Zope/(2.13.21, python 2.6.6, linux2) ZServer/1.1 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.5.16 mod_mono/2.11 | 1 |
Apache/2.4.6 (Unix) PHP/5.5.17 OpenSSL/1.0.1e-fips | 1 |
Apache/1.3.39 (Unix) DAV/1.0.3 PHP/5.2.11 with Suhosin-Patch mod_ssl/2.8.29 OpenSSL/0.9.8g | 1 |
Attacker.NET Web Edition 2.0 | 1 |
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.7m PHP/5.2.6 | 1 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/1.0.0-fips DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.9 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.7l mod_jk/1.2.23 | 1 |
Happstack/7.3.8 | 1 |
IceWarp/11.0.1.3 | 1 |
Apache mod_python/3.2.10 Python/2.4.4 PHP/5.2.4-0.dotdeb.1 with Suhosin-Patch mod_perl/2.0.2 Perl/v5.8.8 | 1 |
EWS-NIC5/13.71 | 1 |
Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r | 1 |
DirectAdmin Daemon v1.43.3 Registered to SERVIX | 1 |
Tengine/1.5.2 | 1 |
hicham.077 | 1 |
Apache/2.0.54 (Linux/SUSE) | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_scgi/1.14 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 1 |
IceWarp/10.3.1 | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.4.33 | 1 |
LANCOM 1722 VoIP (Annex B) 8.62.0029 / 20.06.2012 | 1 |
Apache/2.2.21 (Unix) mod_jk/1.2.40 | 1 |
mini_httpd/1.18 | 1 |
Niagara Web Server/3.7.46.3 | 1 |
Kerio MailServer 6.6.2 | 1 |
Apache/2.2.16 (Debian) mod_fcgid/2.3.6 PHP/5.3.23-1~dotdeb.0 with Suhosin-Patch | 1 |
Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-16 mod_ssl/2.0.54 OpenSSL/0.9.7e | 1 |
Apache/2.3.8 (Unix) mod_ssl/2.3.8 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.8 | 1 |
Apache/1.3.27 (Win32) PHP/4.3.1 | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN37BBSH1F05RQ; Margarita_premium_mp2 Built:Thu Aug 28, 2014 03:20:05PM {MPM3CN1435AR, ASIC id 0x003a0008} | 1 |
Jaguar Server Version 5.3.0 | 1 |
Apache/2.4.4 (Unix) OpenSSL/1.0.0g | 1 |
Apache/2.4.10 (Win64) PHP/5.5.15 | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.3.28 with Suhosin-Patch mod_ssl/2.2.26 OpenSSL/0.9.8y | 1 |
Anti-Web V3.8.5 | 1 |
ecstatic-0.4.13 | 1 |
Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8i mod_autoindex_color PHP/5.2.9 | 1 |
Apache/2.2.19 (Win32) PHP/5.2.14 | 1 |
Apache/2.2.16 (Unix) DAV/2 PHP/5.3.6 mod_ssl/2.2.16 OpenSSL/1.0.0a | 1 |
Apache/2.2.24 (Unix) PHP5/5.5.10 mod_ssl/2.2.24 OpenSSL/1.0.1h | 1 |
HP HTTP Server; HP Photosmart 6510 series – CQ761B; Serial Number: CN1CL4B02H05QB; Epsilonplus Built:Mon Oct 29, 2012 05:09:07PM {ESP1CN1244AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.18 mod_ssl/2.2.22 OpenSSL/0.9.8x DAV/2 | 1 |
Embedthis-Appweb/3.3.2 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.9 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.9 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_jk/1.2.40 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8o PHP/5.5.12 | 1 |
Apache/1.3.29 (Unix) PHP/5.2.17 | 1 |
LANCOM 1631E 8.82.0089 / 01.08.2013 | 1 |
NetTalk-WebServer/8.34 | 1 |
v/1.1.1/v1jed1-www | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8o mod_wsgi/2.5 Python/2.5.2 | 1 |
Apache/1.3.42 (Unix) mod_ssl/2.8.31 OpenSSL/0.9.8r | 1 |
nginx/0.7.22 | 1 |
JAWS/1.0 May 27 2013 | 1 |
Apache/2.4.10 (Win64) mod_fcgid/2.3.9 | 1 |
Apache/1.3.34 Ben-SSL/1.57 (Unix) PHP/4.4.7 | 1 |
Apache/1.3.41 (Unix) mod_deflate/1.0.21 mod_perl/1.31 CGI/3.42 thinkproject/v6.0r01pl01 [30-09-11] | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN41B1G0ZZ05SY; Stuttgart_pp_usr_hf Built:Mon Oct 15, 2012 11:37:04AM {STP1FN1241BR, ASIC id 0x00340104} | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.10 | 1 |
Apache/1.3.42 (Unix) PHP/5.3.5 | 1 |
CrushFTP HTTP5 Server Version 5.7.0 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN2AH1999Y05ST; Morgan_pp Built:Mon Oct 27, 2014 08:28:54AM {MGP1CN1444AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.24 (Win32) mod_ssl/2.2.24 OpenSSL/0.9.8y PHP/5.3.25 | 1 |
Apache/1.3.33 (Unix) mod_jk/1.2.6 PHP/5.0.4 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.27 | 1 |
Apache/2.4.4 (Win64) OpenSSL/1.0.1d mod_jk/1.2.37 PHP/5.4.12 | 1 |
Apache/2.2.3 (Unix) DAV/2 mod_jk/1.2.19 mod_ssl/2.2.3 OpenSSL/0.9.7a | 1 |
Board 7 Web Engine | 1 |
Apache/2.4.9 (Debian) PHP/5.5.3-1 OpenSSL/1.0.1g | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.27 | 1 |
Mobile Monitor MM10092 | 1 |
LANCOM 1823 VoIP (Annex B) 8.50.0214 / 13.12.2011 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.8 mod_jk/1.2.31 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN1494S61R05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
StarWeb | 1 |
Apache/2.2.16 (Unix) mod_jk/1.2.37 | 1 |
Apache/2.2.19 (Unix) | 1 |
HP HTTP Server; HP Deskjet 3540 series – A9T81B; Serial Number: CN4391303G05X5; Built:Thu Dec 04, 2014 01:07:39PM {MLM1FN1449AR} | 1 |
Apache/2.2.22 (Ubuntu) mod_ssl/2.2.22 OpenSSL/1.0.1 PHP/5.3.10-1ubuntu3.6 with Suhosin-Patch | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.5.13 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 1 |
2.2.31 | 1 |
Apache/2.2.27 (Unix) DAV/2 PHP/5.3.29 | 1 |
Apache/1.3.33 Ben-SSL/1.55 (Unix) PHP/5.0.5 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
tinyproxy/1.8.3 | 1 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.3.22 | 1 |
SimpleServer:WWW/1.25 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.3.13 | 1 |
Eserv/3.5578 | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
HeiTel GmbH Web Server [V1.16/V1.14/V1.3] | 1 |
ScreenConnect/5.0.7584.5372-1524258596 | 1 |
Apache/2.0.53 (Win32) PHP/5.2.17 | 1 |
Apache/2.4.3 (Unix) PHP/5.3.16 | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN29M4KH4Y05RN; Margarita_mid_mp2 Built:Fri May 31, 2013 03:34:51PM {MIM2CN1322DR, ASIC id 0x003a0008} | 1 |
gevent/0.13 Python/2.7 | 1 |
IS2 Web Server 1.64 | 1 |
Zope/(2.12.16, python 2.6.6, linux2) ZServer/1.1 | 1 |
Jetty(193) | 1 |
Oracle-Web-Cache-11g/11.1.1.6.0 (N;ecid=146796189601424012,0:1) | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1g PHP/5.5.12 | 1 |
Apache/2.2.22 (Win32) PHP/5.3.3RC3 | 1 |
HP HTTP Server; HP Officejet 6100 – CB863A; Serial Number: CN2872B0R305KR; Tequila_pp_usr_hf Built:Fri Dec 16, 2011 08:11:48PM {TQP1FN1150ER, ASIC id 0x003a0008} | 1 |
Apache/1.3.33 (Win32) PHP/4.3.9 | 1 |
Abyss/2.4.0.3-X1-Win32 AbyssLib/2.4.0.3 | 1 |
Vivotek Video Server | 1 |
Tengine/2.0.0 | 1 |
Saia PCD3.M2330A4T5/1.14.23 | 1 |
nginx/1.5.11 + Phusion Passenger 4.0.37 | 1 |
web cache | 1 |
Apache/1.3.29 (Win32) mod_jk/1.1.0 | 1 |
Apache/2.0.49 (Linux/SuSE) | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1j PHP/5.4.34 | 1 |
Eisbaer HTTP server | 1 |
Apache/2.2.15 (Unix) DAV/2 PHP/5.5.15 | 1 |
Resin/2.1.14 | 1 |
Apache/2.2.22 (Debian) DAV/2 PHP/5.4.35-0+deb7u2 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
HP HTTP Server; HP Officejet 7500 E910 – CQ839A; Serial Number: MY11L110XJ05P4; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
arduino | 1 |
Apache/1.3.39 (Unix) DAV/1.0.3 PHP/5.2.5 mod_ssl/2.8.29 OpenSSL/0.9.8g | 1 |
Apache/1.3.34 (Unix) PHP/4.4.2 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN33JB4HMC05MX; Thomson_pp_usr_hf Built:Mon Dec 05, 2011 04:30:05PM {TSP1FN1148IR, ASIC id 0x00320104} | 1 |
Apache/2.2.24 (Win32) | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.5.18 | 1 |
Apache/2.2.9 (Debian) mod_fastcgi/2.4.6 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
nginx/1.0.3 | 1 |
Elixir/2.2.2 | 1 |
Apache/2.2.21 (Unix) mod_jk/1.2.23 PHP/5.3.0 | 1 |
Apache/2.2.19 (Win64) mod_jk/1.2.30 | 1 |
Apache/2.2.26 (Win64) PHP/5.4.23 | 1 |
Apache/2.4.6 (Win32) mod_jk/1.2.37 | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_scgi/1.12 | 1 |
Apache/2.2.22 (Win32) PHP/5.2.7-dev | 1 |
Orbit HTTP Server | 1 |
Apache/1.3.37 (Unix) PHP/5.2.9 | 1 |
HP HTTP Server; HP Photosmart 5510d series – CQ183B; Serial Number: CN1AV1BL4T05RW; Epsilon_duplex Built:Wed Sep 26, 2012 05:27:29PM {EDL1CN1239AR, ASIC id 0x003a0008} | 1 |
Apache/2.4.4 (Unix) mpm-itk/2.4.4-04 PHP/5.3.22 OpenSSL/0.9.8o | 1 |
WDaemon/10.0.5 | 1 |
lighttpd/1.4.28-devel-734 | 1 |
XPEnology Web Server – By Trantor | 1 |
NetQCheck | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.4.33 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.3.27 with Suhosin-Patch mod_ssl/2.2.25 OpenSSL/0.9.8x DAV/2 | 1 |
DT8x HTTP Server | 1 |
Apache/2.2.21 (Win32) mod_fcgid/2.3.6 | 1 |
thetalab.tk | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN34NBWGNN05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
WEBrick/1.3.1 (Ruby/1.8.7/2013-06-27) | 1 |
Apache/2.4.10 (Debian) mod_fastcgi/mod_fastcgi-SNAP-0910052141 OpenSSL/1.0.1i mod_fcgid/2.3.9 Phusion_Passenger/4.0.50 PHP/5.6.0-1 mod_qos/11.5 mod_wsgi/4.2.7 Python/2.7.8 mod_perl/2.0.8 Perl/v5.20.0 | 1 |
Apache/2.4.4 (Fedora) OpenSSL/1.0.1e-fips PHP/5.4.15 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
gvs 1.0 | 1 |
Apache/2.2.29 (FreeBSD) PHP/5.4.28 DAV/2 | 1 |
u-Server | 1 |
aEGiS_nanoweb/2.2.9 (Linux; PHP/5.3.10-1ubuntu3.15) | 1 |
CommuniGatePro/5.2.20 | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1h PHP/5.5.13 | 1 |
Proxy | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips DAV/2 PHP/5.3.18 | 1 |
Apache/2.4.9 (Unix) PHP/5.5.9 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 PHP/5.3.26 SVN/1.6.17 mod_python/3.3.1 Python/2.6.1 | 1 |
Code-Crafters Ability Mail Server 2013 | 1 |
Apache/2.2.18 (Win32) | 1 |
idoc IIS Server | 1 |
Apache/2.2.25 (Win32) PHP/5.2.0 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.14 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
Niagara Web Server/3.5.25.3 | 1 |
jjhttpd v0.1.0 | 1 |
WebStar/2.12 Linux | 1 |
nginx/1.1.6 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.4.10 mod_ssl/2.2.23 OpenSSL/1.0.1c DAV/2 | 1 |
Avazu-AWS/6943 | 1 |
megadrom@mp-demo | 1 |
Apache/2.2.27 (Debian) | 1 |
Niagara Web Server/3.6.47 | 1 |
e@sy-Pilot v4.5.7 16/12/2013 | 1 |
Apache/2.4.6 (Unix) PHP/5.3.27 OpenSSL/0.9.8o | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t DAV/2 | 1 |
WebTrends HTTP Server | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_jk/1.2.28 mod_ssl/2.2.15 OpenSSL/1.0.0-fips PHP/5.3.10 | 1 |
Jetty(9.2.z-SNAPSHOT) | 1 |
Apache/2.2.26 (FreeBSD) DAV/2 PHP/5.4.21 mod_ssl/2.2.26 OpenSSL/0.9.8y | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0c DAV/2 PHP/5.5.5 | 1 |
Mailtraq/2.17.7.3424 | 1 |
PRTG/13.4.7.3705 | 1 |
Wing FTP Server(Southern Communications Ltd) | 1 |
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.15 with Suhosin-Patch mod_ssl/2.2.14 OpenSSL/0.9.8k | 1 |
Apache/2.2.6 (rPath) | 1 |
Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o PHP/5.2.10 | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.2.17 | 1 |
Apache/1.3.33 (Win32) PHP/5.2.5-dev | 1 |
lyhttpd | 1 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1e mod_fcgid/2.3.9 | 1 |
Lighty/GKS | 1 |
AV_Receiver/3.1 (RX-A730) | 1 |
Apache/2.2.3 (Mandriva Linux/PREFORK-1mdv2007.0) | 1 |
Zope/(2.13.19, python 2.7.3, linux2) ZServer/1.1 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.29 mod_ssl/2.2.27 OpenSSL/1.0.1h DAV/2 | 1 |
Apache/2.2.22 (FreeBSD) mod_ssl/2.2.22 OpenSSL/1.0.0h | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8r | 1 |
Apache/2.2.26 (Unix) PHP/5.3.28 mod_wsgi/3.3 Python/2.7.2 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 | 1 |
Apache/2.4.7 (Win32) PHP/5.5.9 | 1 |
lighttpd/1.4.28-devel-7223M | 1 |
Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.21 | 1 |
BlackJumboDog Version 6.0.2 | 1 |
Apache/2.2.24 (FreeBSD) mod_ssl/2.2.24 OpenSSL/0.9.8q DAV/2 SVN/1.7.8 PHP/5.3.24 | 1 |
Apache/2.4.7 (Win64) OpenSSL/1.0.1e | 1 |
ScreenConnect/5.0.7400.5336-3918155827 Microsoft-HTTPAPI/2.0 | 1 |
BDCOM-IOS-HTTPD1.0 | 1 |
Apache/2.4.6 (Unix) PHP/5.4.17 | 1 |
Apache/2.2.8 (Win32) DAV/2 PHP/5.2.5 mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Microsoft-IIS/7.5, Sinclair QL | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.3.11 with Suhosin-Patch mod_ssl/2.2.24 OpenSSL/0.9.8e DAV/2 | 1 |
Xcc-MicroHTTPD/3.1 | 1 |
Oracle-Application-Server-10g/9.0.4.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/9.0.4.3.0 (G;max-age=420899985+0;age=0) | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN44TEV08N060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.2.26 (FreeBSD) mod_ssl/2.2.26 OpenSSL/1.0.1e-freebsd DAV/2 | 1 |
Apache/1.3.31 (Win32) PHP/4.3.2 | 1 |
Zope/(Zope 2.10.5-final, python 2.4.6, linux3) ZServer/1.1 Plone/3.0.6 | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e-fips mod_jk/1.2.40 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.4.11 mod_ssl/2.2.23 OpenSSL/0.9.8x DAV/2 | 1 |
JAWS/1.0 Jan 8 2014 | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16 mod_watch/4.3 | 1 |
icecast | 1 |
UltiDev Web Server Pro (3.0.0.19) Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.0.61 (Win32) mod_ssl/2.0.61 OpenSSL/0.9.7m | 1 |
lighttpd/1.4.28-devel-129 | 1 |
Tzolkin/3.3 – Dynamic DNS Web Server www.tzo.com | 1 |
Apache/2.4.6 (FreeBSD) PHP/5.5.7 | 1 |
*************************** | 1 |
Apache/2.2.9 (Debian) mod_gnutls/0.5.1 | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – CR231C; Serial Number: CN223543KF05PJ; Sumbamlk_pp Built:Tue Apr 12, 2011 04:08:55PM {SMP1FN1115AR, ASIC id 0x00340100} | 1 |
Apache/2.2.9 (Debian) mod_fastcgi/2.4.6 PHP/5.2.6-1+lenny16 with Suhosin-Patch | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1h PHP/5.5.15 mod_scgi/1.14 | 1 |
Apache/2.4.10 (Debian) SVN/1.8.10 mod_fcgid/2.3.9 mod_python/3.3.1 Python/2.7.6 OpenSSL/1.0.1g | 1 |
Cherokee/1.2.101 (Arch Linux) | 1 |
DVR-HttpServer/1.0 | 1 |
GlassFish Server | 1 |
Apache/2.4.4 (Win32) PHP/5.5.3 | 1 |
HostingANL – Free VPS Proxy Server | 1 |
Apache/1.3.33 (Win32) mod_jk/1.2.6 | 1 |
Apache/2.2.27 (Gentoo) mod_ssl/2.2.27 OpenSSL/1.0.1j Phusion_Passenger/4.0.41 PHP/5.5.18-pl0-gentoo mod_wsgi/3.5 Python/2.7.7 | 1 |
Loxone 4.3.11.5 | 1 |
Anti-Web V3.8.7 | 1 |
Apache/2.2.16 (Debian) Phusion_Passenger/2.2.11 PHP/5.3.3-7+squeeze17 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips PHP/5.4.7 | 1 |
HP HTTP Server; HP ENVY 4500 series – A9T80A; Serial Number: CN43L1401B05X4; Built:Thu May 30, 2013 02:50:54PM {MKM1FN1322BR} | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0g PHP/5.3.10 | 1 |
LHR-SX20 | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN26I2B0RJ05RN; Margarita_mid_mp2 Built:Thu Aug 28, 2014 03:19:28PM {MIM2CN1435AR, ASIC id 0x003a0008} | 1 |
nginx/0.7.67 + Phusion Passenger 2.2.15 (mod_rails/mod_rack) | 1 |
Mysond Server | 1 |
Apache/2.4.4 (Unix) OpenSSL/1.0.1g PHP/5.4.13 | 1 |
acdn | 1 |
Apache/2.2.9 (Debian) PHP/5.3.3 | 1 |
PPX | 1 |
Apache/2.4.10 (Debian) PHP/5.6.0RC4 | 1 |
Apache/2.2.22 (Ubuntu) proxy_html/3.0.1 mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Apache/2.2.4 (Win32) mod_ssl/2.2.4 OpenSSL/0.9.8e PHP/5.2.3 | 1 |
lighttpd/1.4.28-devel-8323 | 1 |
Apache/2.2.8 (Ubuntu) mod_ssl/2.2.8 OpenSSL/0.9.8g Phusion_Passenger/3.0.18 | 1 |
Vision Mini HTTP Server | 1 |
Apache/2.2.17 (Unix) DAV/2 SVN/1.6.16 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.2.25 (FreeBSD) DAV/2 PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
GAD | 1 |
HSYCO/ | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 Phusion_Passenger/2.2.15 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g mod_wsgi/2.3 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.0.54 (Win32) mod_ssl/2.0.50 OpenSSL/0.9.7d mod_jk/1.2.10 | 1 |
Agranat-EmWeb/R5_0_0 | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.5.14 | 1 |
nginx/0.7.50-win32 | 1 |
Apache/2.4.3 (Win32) PHP/5.4.11 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.17p1 | 1 |
Apache/2.2.26 (Unix) mod_wsgi/3.3 Python/2.7.5 mod_ssl/2.2.26 OpenSSL/0.9.8zc DAV/2 PHP/5.4.30 | 1 |
YxlinkWAF | 1 |
Loxone 6.2.12.17 | 1 |
Apache/2.2.15 (Win32) PHP/5.4.12 | 1 |
lighttpd/1.4.35 for KSWEB | 1 |
Private Server | 1 |
Niagara Web Server/3.7.44.7 | 1 |
Apache/2.4.9 (Ubuntu) Phusion_Passenger/4.0.10 PHP/5.5.14-2+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
uIP/1.0 http://www.sics.se/~adam/uip/ | 1 |
Jetty(9.2.7.v20150116) | 1 |
Embedded HTTP Server 1.05 | 1 |
caffeine | 1 |
thttpd/2.25b-re 19jan2004 | 1 |
nginx/0.8.20 | 1 |
HP HTTP Server; HP Officejet 7500 E910 – CQ839A; Serial Number: MY22R3110805P4; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.4.4-14+deb7u12 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/1.3.34 (Unix) (Gentoo) PHP/4.4.4-pl6-gentoo | 1 |
Jetty(1.3.171) | 1 |
AZTEC WEB SERVER | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/1.0.1h PHP/5.4.30 | 1 |
Apache/2.4.6 (CentOS) mod_auth_kerb/5.4 mod_nss/2.4.6 NSS/3.15.4 Basic ECC PHP/5.4.16 mod_wsgi/3.4 Python/2.7.5 | 1 |
Apache/2.2.3 (Mandriva Linux/PREFORK-1.3mdv2007.0) | 1 |
Apache/2.2.22 (Ubuntu) DAV/2 PHP/5.3.10-1ubuntu3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TH;max-age=300+0;age=168;ecid=40680688414143017,0:1) | 1 |
Apache/2.2.22 (Unix) DAV/2 PHP/5.3.15 with Suhosin-Patch | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN42OEW078060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.6.0 mod_wsgi/4.2.8 Python/2.7.8 | 1 |
Apache/2.4.6 (Fedora) Phusion_Passenger/4.0.37 PHP/5.4.19 SVN/1.7.11 | 1 |
Apache/1.3.39 (Unix) mod_python/2.7.8 Python/2.1.3 | 1 |
Apache/2.4.9 (Ubuntu) OpenSSL/1.0.1 | 1 |
Apache/1.3.41 (Unix) PHP/5.2.17 mod_throttle/3.1.2 mod_ssl/2.8.31 OpenSSL/0.9.8y | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN27J3G1BR05RQ; Margarita_premium_mp2 Built:Fri May 31, 2013 08:11:01PM {MPM3CN1322DR, ASIC id 0x003a0008} | 1 |
Resin/3.0.19 | 1 |
Hiawatha 666 | 1 |
Oracle HTTP Server Powered by Apache | 1 |
e@sy-Pro v5.0.4 19/10/2010 | 1 |
WiseEye 2.0 | 1 |
LANCOM 1781EF+ 8.82.0109 / 12.09.2013 | 1 |
Kerio Connect 7.2.3 patch 1 | 1 |
IPOffice/8.1(79) | 1 |
kangle/3.3.11 | 1 |
Apache/2.4.10 (Unix) PHP/5.3.28 | 1 |
Vistabox | 1 |
Apache Tomcat/4.1.30 (HTTP/1.1 Connector) | 1 |
Apache/1.3.41 (Win32) PHP/5.3.5 | 1 |
Apache/2.2.17 (Unix) mod_fcgid/2.3.6 DAV/2 PHP/5.3.5 | 1 |
Apache/2.2.24 (Unix) PHP/5.5.6 mod_ssl/2.2.24 OpenSSL/0.9.8y | 1 |
Apache/2.2.22 (Debian) proxy_html/3.0.1 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.17 mod_ssl/2.2.25 OpenSSL/0.9.8q DAV/2 | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN417DS24H05RQ; Margarita_premium_pendiag_mp2 Built:Fri Aug 16, 2013 01:47:28PM {MPM5CN1333AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips | 1 |
nginx/0.9.2 | 1 |
Apache/2.0.54 (Debian GNU/Linux) | 1 |
HP HTTP Server; HP HP Officejet Pro X551dw Printer – CV037A; Serial Number: CN39REX057; Built:Wed Apr 16, 2014 09:37:40AM {BZP1CN1409BR} | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.1 | 1 |
Apache/2.2.0 | 1 |
Apache/1.3.41 (Darwin) PHP/5.1.2 DAV/1.0.3 | 1 |
Apache/2.0.54 (Unix) PHP/5.0.4 | 1 |
Ivo17 WS 1.0 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips PHP/5.3.27 | 1 |
Apache/2.2.17 (Unix) PHP/5.3.5 DAV/2 mod_ssl/2.2.17 OpenSSL/1.0.0c mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Business LAN R800+ (B) 8.80.0157 / 16.04.2013 | 1 |
GGT-Boardroom | 1 |
Apache/2.4.6 (CentOS) PHP/5.5.18 | 1 |
LANCOM 821+ (Annex B) 8.82.0100 / 28.08.2013 | 1 |
Apache/1.3.34 (Win32) | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8y PHP/5.3.26 | 1 |
nginxpanel.ir/1.5.12 | 1 |
Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-16 mod_ssl/2.0.54 OpenSSL/0.9.7e mod_perl/1.999.21 Perl/v5.8.4 | 1 |
CANON HTTP Server Ver2.00 | 1 |
Mql_server | 1 |
LANCOM 1721 VPN (Annex B) 8.00.0221 / 07.10.2010 | 1 |
Apache/2.2.22 (Debian) mod_ssl/2.2.22 OpenSSL/1.0.1e mod_jk/1.2.37 | 1 |
cisco-IOS/12.0 HTTP-server/1.0(1) | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.13 | 1 |
TDSSE | 1 |
JC-HTTPD/1.16.22 | 1 |
kangle/3.2.4 | 1 |
Woosh http server engine, version 1.1 | 1 |
Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-23.b2d mod_perl/1.999.21 Perl/v5.8.4 | 1 |
Cherokee/1.0.8 (Debian GNU/Linux) | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips PHP/5.3.8 | 1 |
Apache/2.2.26 (Unix) PHP/5.4.30 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.5.20 | 1 |
Apache/2.2.14 (Win64) | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.8 | 1 |
bit_asic_v2/live1.jed1.bitgravity.com | 1 |
Apache/2.2.9 (Debian) mod_ssl/2.2.9 OpenSSL/0.9.8o mod_wsgi/2.5 Python/2.5.2 | 1 |
Apache/2.4.9 (Fedora) PHP/5.5.16 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8y DAV/2 PHP/5.4.3 | 1 |
DODABE | 1 |
HP HTTP Server; HP Officejet 4620 series – CZ152B; Serial Number: TH37V1404X05RT; Cesar_wl_mp1_usr_hf Built:Thu Sep 27, 2012 03:27:17PM {CWM1FN1240AR, ASIC id 0x00340104} | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_fcgid/2.3.7 PHP/5.3.3 mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.15 OpenSSL/1.0.0-fips SVN/1.6.11 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o PHP/5.3.2 | 1 |
KomHttpServer/7.1.2 (unix) | 1 |
Apache/2.2.13 (Win64) mod_wsgi/3.5-BRANCH Python/2.7 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/0.9.8y PHP/5.6.0 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Apache/2.2.15 (Unix) PHP/5.3.3 | 1 |
Cherokee | 1 |
0.0.0.0 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN1153S2CB05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_jk/1.2.37 | 1 |
LANCOM 1711+ VPN 8.50.0214 / 13.12.2011 | 1 |
Apache/2.2.11 (Win32) DAV/2 SVN/1.6.0 mod_auth_sspi/1.0.4 | 1 |
ICONAG web server (Ver.: 1.1) | 1 |
NWS_PAIPAI_MIDDLE_HY | 1 |
Apache/2.4.7 (Mageia) PHP/5.5.16 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8za DAV/2 PHP/5.1.6 | 1 |
Apache/2.2.11 (Win32) mod_jk/1.2.27 | 1 |
XComm Web Server | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.19 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips | 1 |
Apache/2.4.4 (Win64) PHP/5.3.13 | 1 |
Apache/2.4.10 (FreeBSD) mod_fastcgi/mod_fastcgi-SNAP-0910052141 PHP/5.3.29 OpenSSL/0.9.8za-freebsd | 1 |
Apache/2.2.27 (FreeBSD) DAV/2 PHP/5.5.9 mod_ssl/2.2.27 OpenSSL/1.0.1g | 1 |
Apache/2.2.19 (Win64) mod_ssl/2.2.19 OpenSSL/1.0.0d | 1 |
squid/2.5.STABLE9-NT-CVS | 1 |
ECS (fcn/4057) | 1 |
Apache/2.4.6 (Win32) OpenSSL/1.0.1e PHP/5.3.27 mod_wsgi/3.4 Python/2.7.2 | 1 |
nemezis | 1 |
IPOffice/8.1(69) | 1 |
vdradmind/3.6.9 | 1 |
Mongrel 1.1.1 | 1 |
remote-potato-v1 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.0.53 (Win32) | 1 |
doriath_webserver | 1 |
Apache/2.2.15 (Red Hat) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_wsgi/3.2 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN32JBWHCB05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Jetty(7.3.0.v20110203) | 1 |
Apache/2.2.26 (Win64) vFabric/5.3.3 vFabricLicense/5.3.3 mod_ssl/2.2.26 OpenSSL/1.0.1h-fips DAV/2 mod_bmx/0.9.4 | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.24 mod_ssl/2.2.26 OpenSSL/1.0.1c | 1 |
Apache/2.4.9 (Win64) OpenSSL/1.0.1f | 1 |
ScreenConnect/5.1.8341.5506-1719981570 | 1 |
Apache/2.4.2 (Win32) PHP/5.3.20 | 1 |
Warp/3.0.2.2 | 1 |
EWS-NIC4/10.26 | 1 |
************** | 1 |
nginx/1.3.16 | 1 |
Apache/1.3.41 (Unix) PHP/4.4.4 | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN3871C2JK05SY; Stuttgart_pp_usr_hf Built:Mon Oct 15, 2012 11:37:04AM {STP1FN1241BR, ASIC id 0x00340104} | 1 |
iGuard Embedded Web Server/5.0.8821A (LM520) SN:VK-2003-5261-9FBC | 1 |
Icecast 2.3.3-kh9 | 1 |
IceWarp/8.3 | 1 |
Flole-HTTP-Server | 1 |
Apache/1.3.41 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.31 OpenSSL/0.9.7l | 1 |
Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o mod_jk/1.2.28 | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_fcgid/2.3.9 mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.15 OpenSSL/1.0.0-fips SVN/1.6.11 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.12 SVN/1.8.8 | 1 |
Apache/2.2.23 (FreeBSD) | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.6 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8g DAV/2 PHP/5.2.17 | 1 |
Zope/Zope 2.3.0 (binary release, python 1.5.2, win32-x86) ZServer/1.1b1 | 1 |
Niagara Web Server/3.6.48.2 | 1 |
scharfinet | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN33RBXG9T05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
Apache/2.2 (Win) PHP/5.4.19 | 1 |
Apache/2.4.3 (Unix) OpenSSL/1.0.1e | 1 |
728/09786 HTTP Server version 2.0 – TELDAT S.A. | 1 |
Apache/1.3.37 (Win32) mod_jk | 1 |
Enigma2 WebInterface Server 1.89 | 1 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r mod_jk/1.2.32 | 1 |
WEBrick/1.3.1 (Ruby/2.0.0/2014-05-08) | 1 |
Apache/2.0.59 (NETWARE) mod_jk/1.2.21 | 1 |
HP HTTP Server; HP HP Officejet Pro 8640 – E2D42A; Serial Number: CN47AC305J; Built:Fri Jan 09, 2015 04:18:35PM {FDP1CN1502AR} | 1 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1e | 1 |
42bef288174912093f4dc1e3e3639963Date: Wed, 03 Dec 2014 13:35:15 GMT | 1 |
Apache/2.0.63 (Unix) DAV/2 PHP/5.2.12 | 1 |
HP HTTP Server; HP ENVY 4500 series – A9T80A; Serial Number: CN45K1414505X4; Built:Tue Jul 22, 2014 11:55:10AM {MKM1FN1430ER} | 1 |
Apache/2.4.10 (Win64) OpenSSL/1.0.1j PHP/5.5.19 | 1 |
Perl Dancer 1.3124 | 1 |
Apache/2.4.6 (CentOS) Phusion_Passenger/4.0.53 mod_perl/2.0.9dev Perl/v5.16.3 | 1 |
HFS 2.2d | 1 |
Apache/1.3.19 (Unix) tomcat/1.0 PHP/4.0.4pl1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1c DAV/2 PHP/5.4.5 | 1 |
CherryPy/3.2.5 | 1 |
Apache/2.4.9 (Win64) OpenSSL/1.0.1g PHP/5.5.11 | 1 |
Apache/2.2.24 (FreeBSD) mod_ssl/2.2.24 OpenSSL/0.9.8x DAV/2 PHP/5.4.12 mod_fastcgi/2.4.6 | 1 |
Apache/2.4.6 (Red Hat) mod_wsgi/3.4 Python/2.7.5 | 1 |
BaseHTTP/0.3 Python/2.7.5 | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.3.28 mod_wsgi/3.4 Python/2.7.2 | 1 |
IPOffice/6.0(18) | 1 |
Zope/(2.13.13, python 2.6.8, linux3) ZServer/1.1 | 1 |
rainfin | 1 |
Apache/1.3.12 (Win32) | 1 |
Apache/2.2.22 (Win32) PHP/5.3.13 SVN/1.6.0 DAV/2 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN38LEXGYQ05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.4.2 (Unix) OpenSSL/0.9.8e-fips-rhel5 PHP/5.4.2 | 1 |
Jetty(7.6.3.v20120416) | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.14 | 1 |
VS-Coyote | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.19 mod_ssl/2.2.26 OpenSSL/0.9.8za | 1 |
Apache/2.2.11 (Ubuntu) mod_python/3.3.1 Python/2.6.2 mod_ssl/2.2.11 OpenSSL/0.9.8g | 1 |
Apache/2.4.4 (Unix) PHP/5.4.28 | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny13 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
IS2 Web Server 1.11 | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.4.25 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1e-freebsd SVN/1.8.9 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.10 mod_jk/1.2.36 | 1 |
lighttpd/1.4.28-devel-1680 | 1 |
HP HTTP Server; HP Officejet 6500 E710a-f – CN553A; Serial Number: CN0B8222YB05P2; Syrah_mp2_usr_hf Built:Thu Feb 02, 2012 10:53:53AM {SYM2FN1206AR, ASIC id 0x001c2105} | 1 |
thttpd/2.19-MX Dec 2 2002 | 1 |
WIC-2300 | 1 |
Apache/2.4.7 (Win32) OpenSSL/1.0.1e PHP/5.3.28 mod_wsgi/3.4 Python/2.7.2 | 1 |
nginx/1.3.14 | 1 |
nginx/1.1.2 | 1 |
Apache/2.4.2 (Unix) PHP/5.3.15 | 1 |
HP HTTP Server; HP ENVY 110 series – CQ809B; Serial Number: CN19MC20D405QS; Serenity_pp Built:Wed Aug 10, 2011 05:44:46PM {SEP1CN1132BR, ASIC id 0x0038000c} | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.7 mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 mod_wsgi/1.0c1 Python/2.5.6 | 1 |
Allegro-Software-RomPager/4.64 | 1 |
Apache/2.2.16 (Debian) mod_fcgid/2.3.6 mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.2.22 (Win64) PHP/5.4.3 mod_ssl/2.2.22 OpenSSL/1.0.1c | 1 |
ApacheBooster/1.8 | 1 |
TornadoServer/4.0 | 1 |
e@sy-pro v7.0.2 12/03/2014 | 1 |
Apache/2.2.26 (FreeBSD) mod_fastcgi/mod_fastcgi-SNAP-0910052141 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_perl/2.0.8 Perl/v5.8.8 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1i PHP/5.5.16 | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8r Phusion_Passenger/3.0.2 PHP/5.3.0 | 1 |
Apache/2.2.10 (Unix) PHP/4.4.9 | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1+sury.org~precise+1 | 1 |
websvr-lighttpd | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_jk/1.2.40 | 1 |
nginx/1.7.1.2 Snowman | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.3.21 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 Phusion_Passenger/3.0.19 | 1 |
Apache/1.3.41 (Unix) PHP/5.3.0 mod_ssl/2.8.31 OpenSSL/0.9.8g | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN254BT12T05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
TongWeb Application Server/4.0 ( JSP 1.2; Servlet 2.3 ) | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=294420936802,0) | 1 |
IPinside Server/1.1 | 1 |
3S_WebServer | 1 |
Apache/2.2.27 (FreeBSD) mod_ssl/2.2.27 OpenSSL/0.9.8y | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.5 OpenSSL/1.0.1f mod_wsgi/3.4 Python/2.7.6 | 1 |
IceWarp/11.1.0.1 | 1 |
Lighty | 1 |
server.exe | 1 |
Apache/2.2.10 (Win32) PHP/5.2.10 | 1 |
Apache/2.2.22 (Win32) mod_jk/1.2.37 mod_ssl/2.2.22 OpenSSL/0.9.8t | 1 |
Zope/(2.13.20, python 2.6.0, win32) ZServer/1.1 | 1 |
LANCOM DSL/I-1611 Office 7.58.0045 / 14.11.2008 | 1 |
Apache/2.4.7 (Ubuntu) mpm-itk/2.4.6-01 PHP/5.5.9-1ubuntu4.5 OpenSSL/1.0.1f | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8o PHP/5.2.17 | 1 |
Apache/2.4.10 (Win64) OpenSSL/1.0.1h PHP/5.5.15 | 1 |
Apache/2.2.0 (Win32) PHP/5.1.2 proxy_html/2.5 | 1 |
Zope/(Zope 2.9.7-final, python 2.4.4, win32) ZServer/1.1 | 1 |
Sistri | 1 |
Apache/2.2.4 (Win32) mod_ssl/2.2.4 OpenSSL/0.9.8y PHP/5.3.28 | 1 |
Apache/2.4.3 (Unix) PHP/5.3.18 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.4.10 (Win32) mod_log_rotate/1.00 PHP/5.5.17 | 1 |
Linux, HTTP/1.1, DHP-W310AV Ver 1.03 | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Apache/2.4.9 (FreeBSD) PHP/5.5.11 Phusion_Passenger/4.0.40 SVN/1.8.9 | 1 |
PowerStudio v3.4 | 1 |
Zope/(Zope 2.9.8-final, python 2.4.4, win32) ZServer/1.1 Plone/2.5.4-2 | 1 |
Apache/2.2.18 (Win32) mod_jk/1.2.31 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 | 1 |
LANCOM 1781VA (over ISDN) 8.82.0100 / 28.08.2013 | 1 |
Apache/2.2.15 (Win32) PHP/5.3.21 | 1 |
Jeus WebContainer/JEUS 6.0 (Fix#5) | 1 |
Apache/2.2.14 (Unix) PHP5/5.2.11-dev with Suhosin-Patch mod_ssl/2.2.14 OpenSSL/0.9.8k | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/1.0.0d DAV/2 SVN/1.7.7 mod_wsgi/3.3 Python/2.7.2 | 1 |
Apache/2.2.17 (Win32) SVN/1.6.15 PHP/5.3.5 DAV/2 | 1 |
Apache/2.4.10 (Win64) PHP/5.4.11 | 1 |
Apache/1.3.42 (Unix) PHP/4.4.8 | 1 |
Saia PCD3.M3120/1.16.69 | 1 |
SWS_Baharan | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN3B8EWHW205KC; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_wsgi/3.2 Python/2.6.6 | 1 |
Apache/2.2.15 (Win32) PHP/5.3.2 | 1 |
Apache/2.2.20 (Unix) mod_jk/1.2.37 PHP/5.3.29 | 1 |
Resin/2.1.13 | 1 |
PSC 4.0.0.3 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r-fips | 1 |
TWS | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.32 | 1 |
Zope/(Zope 2.10.6-final, python 2.4.5, linux2) ZServer/1.1 Plone/3.1.5.1 | 1 |
nginx/1.1.17 + Phusion Passenger 3.0.11 (mod_rails/mod_rack) | 1 |
Elesta/1.1 | 1 |
Apache/2.0.55 (Win32) PHP/5.2.6 | 1 |
Apache/2.2.6 (Unix) DAV/2 PHP/5.2.9 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=1411112634193,0) | 1 |
Apache/1.3.42 (Unix) mod_perl/1.31 | 1 |
HP HTTP Server; HP Officejet 6500 E710a-f – CN555A; Serial Number: CN1CM457MP05JZ; Syrah_mp2_usr_hf Built:Tue Jun 28, 2011 07:39:26PM {SYM2FN1126AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.22 (Debian) DAV/2 Phusion_Passenger/3.0.13 PHP/5.4.4-14+deb7u10 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.1g PHP/5.2.8 | 1 |
Apache/2.2.24 (Unix) mod_wsgi/3.3 Python/2.7.2 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
[Jan 28 2014 09:07:40] | 1 |
Apache/2.2.10 (Unix) mod_ssl/2.2.10 OpenSSL/0.9.8r DAV/2 PHP/5.2.6 | 1 |
SimpleHelp/SSuite-4-2-20141015-181232 | 1 |
Zope/(Zope 2.10.9-final, python 2.4.6, linux2) ZServer/1.1 | 1 |
Wing FTP Server(GBO Provincies) | 1 |
Mongrel 1.0.1 | 1 |
codesite | 1 |
Apache/2.2.3 (Win32) DAV/2 mod_autoindex_color PHP/5.1.6 | 1 |
Apache/1.3.29 (Unix) PHP/5.1.6 with Suhosin-Patch mod_ssl/2.8.16 OpenSSL/0.9.7j | 1 |
VOLANS·ÉÓãÐǸßÐÔÄÜÆóÒµ¼¶¿í´ø·ÓÉÆ÷ | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8p DAV/2 PHP/5.2.12 | 1 |
ATS/4.1.2 | 1 |
HP HTTP Server; HP Officejet 7110 series – CR768A; Serial Number: CN3BM3MGG705R1; Built:Fri May 31, 2013 07:34:28PM {EIP1FN1322BR} | 1 |
Apache/2.4.4 (Unix) PHP/5.2.10 OpenSSL/1.0.0-fips | 1 |
Apache/2.4.10 (Debian) SVN/1.8.9 Phusion_Passenger/4.0.37 mod_wsgi/3.5 Python/2.7.8 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.6.0 (TH;max-age=300+0;age=233;ecid=60559704023639720,0:1) | 1 |
Saia PCD7.D90VEM010/1.17.23.06 | 1 |
grizzly/1.9.18 | 1 |
Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4.5 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.15 (FreeBSD) PHP/5.2.13 with Suhosin-Patch | 1 |
Ocsigen | 1 |
not-provided | 1 |
Apache/2.2.12 (Win32) mod_autoindex_color PHP/5.3.0 DAV/2 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.2.6 (FreeBSD) mod_ssl/2.2.6 OpenSSL/0.9.7e-p1 DAV/2 PHP/5.2.3 with Suhosin-Patch | 1 |
Zope/(2.13.22, python 2.7.6, linux2) ZServer/1.1 | 1 |
Oracle HTTP Server Powered by Apache/1.3.19 (Win32) PHP/5.0.4 mod_ssl/2.8.1 OpenSSL/0.9.5a mod_fastcgi/2.2.10 mod_oprocmgr/1.0 mod_perl/1.25 | 1 |
lighttpd/1.4.28-devel-2866M | 1 |
HP HTTP Server; HP Deskjet 3540 series – A9T81B; Serial Number: CN39C2QB9R05X5; Built:Thu May 30, 2013 02:52:05PM {MLM1FN1322BR} | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_jk/1.2.37 PHP/5.5.12 | 1 |
HP HTTP Server; HP Photosmart 5510 series – CQ176B; Serial Number: CN21A39FP805V3; Epsilon Built:Wed Nov 09, 2011 02:13:02PM {EPL2CN1133BR, ASIC id 0x003a0008} | 1 |
Apache/2.2.24 (FreeBSD) DAV/2 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.8 mod_jk/1.2.37 | 1 |
Secured By : Eng. Gamal Abd-Elnaser | A4Serv.Com | Contact me: 00201004162829 – Admin@A4Serv.Com | 1 |
Apache/2.2.23 (FreeBSD) mod_scgi/1.12 PHP/5.4.11 mod_ssl/2.2.23 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.5.10 DAV/2 | 1 |
Apache/2.4.10 (Debian) mod_python/3.3.1 Python/2.7.8 OpenSSL/1.0.1i mod_perl/2.0.9dev Perl/v5.20.1 | 1 |
OracleAS-Web-Cache-10g/10.1.2.3.1 | 1 |
IceWarp/10.2.2 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN0CH3T54W05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.2.19 (FreeBSD) mod_ssl/2.2.19 OpenSSL/0.9.8q DAV/2 PHP/5.3.6 with Suhosin-Patch | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.0.27 | 1 |
Apache/2.2.16 (Win32) mod_ssl/2.2.16 OpenSSL/0.9.8o PHP/5.4.3 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_jk/1.2.35 | 1 |
SAP NetWeaver Application Server 7.20 / AS Java 7.31 | 1 |
Loxone 5.40.2.12 | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.4.30 | 1 |
Easy File Management Web Server v2.0s | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.21 | 1 |
HP HTTP Server; HP Officejet 6500 E710n-z – CN557A; Serial Number: CN0BI138Q605JW; Chianti_pp_usr_hf Built:Thu Feb 02, 2012 10:54:00AM {CIP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.4.10 (Unix) mod_perl/2.0.9-dev Perl/v5.20.1 | 1 |
Zope/(unreleased version, python 2.4.4, win32) ZServer/1.1 Plone/3.3.4 | 1 |
Apache/2.2.9 (FreeBSD) PHP/5.2.17 with Suhosin-Patch | 1 |
Apache/2.0.55 (Unix) mod_ssl/2.0.55 OpenSSL/0.9.7i | 1 |
JAWS/1.0 May 27 2014 | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 mod_fastcgi/2.4.6 mod_python/3.3.1 Python/2.5.2 Phusion_Passenger/1.0.5 PHP/5.2.4-2ubuntu5.25 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.16 mod_ssl/2.2.24 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.22 (Unix) DAV/2 mod_jk/1.2.32 | 1 |
Apache/2.2.8 (Ubuntu) mod_auth_pgsql/2.0.3 PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Linux, HTTP/1.1, DAP-1522 Ver 2.03 | 1 |
Apache/1.3.22 (Unix) | 1 |
Apache/2.2.25 (Win32) SVN/1.7.1 DAV/2 mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.3.8 | 1 |
Apache/1.3.41 (Unix) PHP/5.5.4 mod_ssl/2.8.31 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips SVN/1.6.11 | 1 |
Apache/2.4.9 (Win32) SVN/1.8.8 OpenSSL/1.0.1g PHP/5.5.11 | 1 |
Lotus-Domino/0 | 1 |
Warp9 HTTPD | 1 |
EcoWorld-C90-HQ | 1 |
Apache/2.2.23 (Unix) PHP/5.4.10 mod_ssl/2.2.23 OpenSSL/1.0.1g | 1 |
Apache/2.4.2 (Unix) mod_jk/1.2.36 | 1 |
Apache/2.2.15 (Unix) DAV/2 SVN/1.6.9 | 1 |
NetworkScanner WebServer Ver1.0 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN4ANGV1WW060M; Thomson_pendiag_pp_usr_hf Built:Tue Apr 15, 2014 06:33:56PM {TSP5FN1416AR, ASIC id 0x00320104} | 1 |
IBM MessageSight | 1 |
LANCOM 1781AW 8.60.0202 / 04.06.2012 | 1 |
cPanel Varnish | 1 |
happy happy boing boing boing boing | 1 |
Apache/2.2.15 (Mandriva Linux/PREFORK-3.4mdv2010.2) | 1 |
iGuard Embedded Web Server/5.0.9000A (LM520) SN:VK-2003-52AC-BEE8 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.19 with Suhosin-Patch | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.2.16 | 1 |
Zeyon Cloud | 1 |
III 100 | 1 |
Apache/2.4.9 (Debian) PHP/5.5.12-2 | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.8e PHP/5.2.2 | 1 |
OctoWebSvr/COM | 1 |
Apache/2.2.13 (FreeBSD) mod_ssl/2.2.13 OpenSSL/0.9.8e DAV/2 mod_jk/1.2.28 | 1 |
HP HTTP Server; HP Officejet 7500 E910 – CQ839A; Serial Number: MY0A9110QZ05P4; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Alpha Anywhere Application Server Application Server/12.0 Build/2387-4346 | 1 |
IceWarp/11.0.0.2 | 1 |
lwIP/1.3.1 (http://savannah.nongnu.org/projects/lwip) | 1 |
PBX/5.1.3 (CentOS64) | 1 |
LightTPD/1.4.32-1-IPv6 (Win32) | 1 |
David-WebBox/12.00a (0857) WIN32 | 1 |
lighttpd/1.4.28-devel-6317 | 1 |
Strategi HTTPD V2R5M1 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=5465561742533,0) | 1 |
MIlan-Conference-Room-n-2 | 1 |
Apache/1.3.41 (Unix) PHP/5.2.6 mod_ssl/2.8.31 OpenSSL/0.9.8c | 1 |
Apache/2.2.15 (NeoKylin) | 1 |
Apache/2.4.12 (Win64) PHP/5.6.6 | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN38A127M005SY; Stuttgart_pp_usr_hf Built:Fri Dec 20, 2013 01:11:47PM {STP1FN1351AR, ASIC id 0x00340104} | 1 |
Apache/2.2.27 (Win32) PHP/5.2.17 | 1 |
Apache/2.4.10 (Ubuntu) OpenSSL/1.0.1f | 1 |
Zope/(2.13.21, python 2.7.6, linux2) ZServer/1.1 | 1 |
Zope/(Zope 2.9.8-final, python 2.4.6, linux3) ZServer/1.1 Plone/2.5.5 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1i PHP/5.5.17 | 1 |
LANCOM 1722 VoIP (Annex B) 8.80.0157 / 16.04.2013 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.4.21 | 1 |
ECS | 1 |
Apache/2.0.59 (Trustix Secure Linux/Linux) PHP/5.2.4 mod_python/3.2.10 Python/2.3.5 mod_perl/2.0.2 Perl/v5.8.7 | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1e-fips PHP/5.5.8 | 1 |
Apache/2.2.4 (Unix) PHP/5.2.3 | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/0.9.8y PHP/5.4.32 mod_fcgid/2.3.9 | 1 |
glm/7.0 | 1 |
IKS-TO | 1 |
i-Catcher Sentry/3.0.20 | 1 |
Apache/2.4.9 (Unix) PHP/5.5.10 | 1 |
Apache/2.4.3 (Win32) PHP/5.3.17 | 1 |
SP-XML | 1 |
Apache/2.2.26 (Win32) SVN/1.8.10 DAV/2 | 1 |
PRTG/13.4.6.3240 | 1 |
Apache/2.4.10 (Ubuntu) PHP/5.5.15-1+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
Apache/2.2.16 (Debian) PHP/4.4.6-3loc3 mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
Apache/2.0.59 (Win32) SVN/1.4.4 mod_auth_sspi/1.0.4 PHP/5.2.4 DAV/2 | 1 |
Apache/1.3.29 (Win32) PHP/5.0.0RC2 | 1 |
LANCOM 1781-4G 8.82.0123 / 01.10.2013 | 1 |
HP HTTP Server; HP Officejet 7500 E910 – CQ839A; Serial Number: MY26G310FP05P4; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.4.10 (Unix) OpenSSL/0.9.8zd PHP/5.6.2 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/1.0.1e-fips DAV/2 PHP/5.3.10 | 1 |
Apache/2.2.9 (Debian) proxy_html/3.0.0 | 1 |
username.truffle.wixpress.com | 1 |
squid/3.4.7 | 1 |
Apache/2.2.17 (Unix) PHP/5.3.6 mod_jk/1.2.27 | 1 |
CE_E | 1 |
Apache/2.2.25 (Win32) PHP/5.2.3 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.1.6 | 1 |
ScreenConnect/5.0.7336.5322-2347618896 | 1 |
Resin/2.1.10 | 1 |
Apache/2.0.64 (Unix) mod_ssl/2.0.64 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.25 | 1 |
ScreenConnect/4.3.6507.5226-2576004999 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.4.9 (FreeBSD) PHP/5.4.27 | 1 |
PRTG/9.1.5.1900 | 1 |
NET+ARM Web Server/1.00 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u2 | 1 |
lighttpd/1.4.28-devel-8155 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e PHP/5.4.37 | 1 |
Apache/1.3.33 (Unix) mod_ssl/2.8.22 OpenSSL/0.9.7g PHP/4.3.10 | 1 |
Apache/2.4.9 (FreeBSD) OpenSSL/1.0.1h PHP/5.5.12 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.10 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Apache/2.0.64 (Unix) mod_jk/1.2.19 | 1 |
Apache/1.3.29 (Unix) | 1 |
Zope/(Zope 2.9.4-final, python 2.4.6, linux2) ZServer/1.1 CPS/3.4 | 1 |
Apache/2.2.22 (Win32) SVN/1.6.15 DAV/2 PHP/5.3.13 | 1 |
VONETS.COM-WEBS | 1 |
Apache/2.4.3 (Unix) PHP/5.4.7 SVN/1.7.6 | 1 |
Oracle HTTP Server Powered by Apache/1.3.22 (Win32) mod_plsql/3.0.9.8.5f mod_ssl/2.8.5 OpenSSL/0.9.6b mod_fastcgi/2.2.12 mod_oprocmgr/1.0 mod_perl/1.25 | 1 |
Agranat-EmWeb/R5_2_0 | 1 |
RaidenHTTPD/2.0.39 (Commercial) | 1 |
Apache/2.4.10 (Debian) PHP/5.5.8-2 mod_scgi/1.13 mod_perl/2.0.8 Perl/v5.18.2 | 1 |
DVS-Webs | 1 |
Apache/2.4.4 (Mageia) PHP/5.4.34 | 1 |
Apache/2.2.19 (Win32) PHP/5.2.17 mod_jk/1.2.40 | 1 |
Apache/2.2.23 (Unix) PHP/5.3.17 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.1.4 mod_jk/1.2.37 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.30 | 1 |
Apache/2.2.29 (FreeBSD) PHP/5.4.33 mod_ssl/2.2.29 OpenSSL/1.0.1j DAV/2 | 1 |
nginx/0.7.30 | 1 |
Apache/2.2.27 (OS/2) PHP/5.4.26 mod_ssl/2.2.27 OpenSSL/1.0.1g | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips Phusion_Passenger/4.0.48 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 1 |
username.pita.wixpress.com | 1 |
Apache/2.4.9 (FreeBSD) PHP/5.4.30 | 1 |
ItvCache/2.0.4 | 1 |
Nguyen Dinh Chieu | 1 |
Oracle Web-to-go | 1 |
Apache/2.0.65 (Win32) PHP/5.2.9-2 | 1 |
Apache/2.2.25 (Win32) PHP/5.3.27 mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
Apache/2.2.9 (Ubuntu) DAV/2 SVN/1.5.1 PHP/5.2.6-2ubuntu4.6 with Suhosin-Patch | 1 |
HomeSeer/2.0 | 1 |
POWER-KI XPLAB | 1 |
NouveCDN/unknown | 1 |
SAP NetWeaver Application Server 7.20 / ICM 7.20 | 1 |
ISLCP conecta.grupogimeno.net | 1 |
Apache/2.2.22 (Unix) PHP/5.2.6 | 1 |
Varnish-backend3 | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8q DAV/2 | 1 |
Linux, HTTP/1.1, DIR-845L Ver 1.01 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.35-0+deb7u2 | 1 |
Apache/2.2.9 (Debian) mod_ssl/2.2.9 OpenSSL/0.9.8g PHP/5.0.4 | 1 |
Apache/2.4.7 (Unix) PHP/5.3.9 with Suhosin-Patch | 1 |
Apache/1.3.33 (Unix) PHP/4.3.11 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.10 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8n DAV/2 | 1 |
Apache/2.2.27 (FreeBSD) DAV/2 mod_ssl/2.2.27 OpenSSL/1.0.1h SVN/1.8.9 PHP/5.4.27 Phusion_Passenger/4.0.10 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 PHP/5.4.5 | 1 |
Zope/(Zope 2.10.6-final, python 2.4.4, linux2) ZServer/1.1 Plone/3.1.5.1 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1e | 1 |
Apache/2.0.46 (CentOS) | 1 |
Spirula Web Servernginx/1.4.2 | 1 |
IS2 Web Server 1.75 | 1 |
TwistedWeb/14.0.2 | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7a DAV/2 PHP/5.2.3 | 1 |
Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8x | 1 |
Apache/2.0.59 (Unix) DAV/2 PHP/4.4.6 | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.6 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny13 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.4.23 mod_ssl/2.2.26 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.24 (Unix) mod_jk/1.2.37 | 1 |
Apache/2.2.13 (Unix) DAV/2 mod_ssl/2.2.13 OpenSSL/0.9.8h PHP/5.2.8 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
lighttpd/1.4.28-devel-6950 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.14 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.7l mod_jk/1.2.23 PHP/5.3.3 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.22 | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.16 mod_wsgi/3.4 Python/2.7.2 | 1 |
Abyss/1.1.6 (Win32) AbyssLib/1.0.7 | 1 |
Apache/2.2.29 (FreeBSD) PHP/5.4.35 mod_ssl/2.2.29 OpenSSL/1.0.1j | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_wsgi/3.3 Python/2.7.1 | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.8d Zend Core/2.5.0 PHP/5.2.5 | 1 |
Apache/2.4.9 (FreeBSD) PHP/5.5.13 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 PHP/5.4.29 | 1 |
Apache/2.0.58 (Unix) mod_ssl/2.0.58 OpenSSL/0.9.8e-fips-rhel5 PHP/4.4.9 | 1 |
Apache/2.2.25 (Win32) Resin/3.1.12 mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
Apache/2.0.59 (Win32) PHP/5.1.6 | 1 |
Apache/2.2.22 (Win32) DAV/2 PHP/5.4.7 | 1 |
Vagina Server 1.0 | 1 |
Boa with IPv6 | 1 |
Sys1 | 1 |
Samsung M337x 387x 407x Series, sn=ZDGGBJFF200077W | 1 |
Apache/2.2.16 (Debian) DAV/2 PHP/5.3.3-7+squeeze1 with Suhosin-Patch | 1 |
LANCOM 1781EW 8.62.0086 / 07.11.2012 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.6.2 SVN/1.8.10 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8k | 1 |
Apache/2.2.3 (CentOS) DAV/2 PHP/5.2.17 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 | 1 |
tune-webserver/1.0.4 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.3.28 mod_fastcgi/2.4.6 | 1 |
Apache/2.4.10 (Ubuntu) Phusion_Passenger/4.0.10 PHP/5.5.15-1+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN2C5CXJPZ05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.2.14 (Win32) DAV/2 SVN/1.6.9 mod_wsgi/3.3 Python/2.6.6 | 1 |
Wunderscale – powered by dynport.de | 1 |
Apache/2.2.17 (Win32) PHP/5.4.10 mod_jk/1.2.31 | 1 |
squid/3.3.10 | 1 |
Apache/2.2.21 (Win32) SVN/1.7.2 DAV/2 PHP/5.3.8 | 1 |
EHPAD-LA-PLEIADE | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t proxy_html/3.0.1 | 1 |
Apache/2.2.22 (Win32) PHP/5.3.15 | 1 |
LANCOM 1721 VPN (Annex A) 7.58.0045 / 14.11.2008 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8o PHP/5.3.26 | 1 |
Apache/1.3.37 (Unix) mod_jk/1.2.25 PHP/5.2.3 | 1 |
Apache/2.4.10 (FreeBSD) mod_fcgid/2.3.9 OpenSSL/0.9.8y | 1 |
Apache/2.0.50 (Unix) mod_perl/1.99_13 Perl/v5.8.4 mod_ssl/2.0.50 OpenSSL/0.9.7d PHP/5.0.0 DAV/2 | 1 |
BarracudaHTTP 2.0/2.2.10 (Unix) mod_auth_pgsql/2.0.3 mod_fastcgi/mod_fastcgi-SNAP-0811090952 mod_ssl/2.2.10 OpenSSL/0.9.8x mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e PHP/5.2.3 mod_apreq2-20051231/2.5.7 mod_perl/2.0.2 Perl/v5.8.7 | 1 |
Jana-Server/2.7.0.292 | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.4.7 | 1 |
Apache/2.2.6 | 1 |
Jetty(9.1.z-SNAPSHOT) | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 1 |
Apache/2.2.17 (Win32) PHP/5.2.17 mod_ssl/2.2.17 OpenSSL/0.9.8o | 1 |
WebConferenceServer Microsoft-HTTPAPI/2.0 | 1 |
Resin/4.0.33 | 1 |
PRTG/13.3.4.2556 | 1 |
Apache/2.4.6 (Ubuntu) SVN/1.7.9 PHP/5.5.3-1ubuntu2.4 | 1 |
Apache/2.2.16 (Debian) mod_fcgid/2.3.6 mod_ruby/1.2.6 Ruby/1.8.7(2010-08-16) mod_ssl/2.2.16 OpenSSL/0.9.8o mod_antiloris/0.4 | 1 |
pyServer | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips DAV/2 PHP/5.2.17 | 1 |
Apache/2.2.8 (Unix) DAV/2 PHP/5.2.5 | 1 |
Apache/2.2.14 (Win32) PHP/5.2.13 | 1 |
Apache/1.3.29 (Win32) PHP/4.3.4 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.11 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 Phusion_Passenger/3.0.13 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN23TBS1Q005KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/1.3.33 (Win32) PHP/5.0.3 | 1 |
Apache/2.4.7 (Mageia) OpenSSL/1.0.1e PHP/5.5.19 mod_perl/2.0.8-dev Perl/v5.18.1 | 1 |
EWS-NIC4/13.11 | 1 |
SimpleHelp/SSuite-4-2-20140718-141930 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042A; Serial Number: CN26S192FS05ST; Morgan_pp Built:Thu Dec 19, 2013 10:03:32PM {MGP1CN1351AR, ASIC id 0x003a0008} | 1 |
3Com/v1.0 | 1 |
HeiTel GmbH Web Server [V1.27/V1.15/V1.7] | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.12.3 | 1 |
JBox Web Server 1.0 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1f Communique/4.1.8 | 1 |
Apache/2.4.10 (Unix) PHP/5.4.31 | 1 |
Apache/2.2.23 (Unix) PHP/5.3.21 mod_ssl/2.2.23 OpenSSL/0.9.8x | 1 |
Apache/2.2.3 (Axentra) | 1 |
Debut/0.07 | 1 |
Apache/2.0.55 (Win32) DAV/2 PHP/5.1.1 | 1 |
CompactWeb | 1 |
Linux, HTTP/1.1, DIR-815 Ver 1.04 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN246B; Serial Number: CN0B52T7NT05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.2.27 (FreeBSD) DAV/2 PHP/5.5.13 mod_ssl/2.2.27 OpenSSL/1.0.1e-freebsd | 1 |
CSSWEB FLASH QUOTE SERVER/3.0 | 1 |
Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.5.1 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
HP HTTP Server; HP Deskjet 3050 J610 series – CH376B; Serial Number: CN13B390Q405HX; Sumba_pp Built:Mon Aug 23, 2010 02:15:36PM {SBP1FN1022FR, ASIC id 0x00340100} | 1 |
Apache/2.2.13 (Win32) mod_ssl/2.2.13 OpenSSL/0.9.8k mod_jk/1.2.28 | 1 |
e@sy-Pro v5.2.0 29/09/2011 | 1 |
Apache/2.4.7 (Ubuntu) mod_fastcgi/mod_fastcgi-SNAP-0910052141 PHP/5.5.9-1ubuntu4.3 OpenSSL/1.0.1f | 1 |
Apache/2.2.22 (Debian) mod_gnutls/0.5.10 PHP/5.4.35-1~dotdeb.1 | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1h PHP/5.5.13 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.6 mod_jk/1.2.40 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.7 with Suhosin-Patch mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Jetty(9.0.6.v20130930) | 1 |
Apache/1.3.27 (Win32) mod_bav/frameWorker/1.0 mod_ssl/2.8.12 OpenSSL/0.9.7 | 1 |
TeleEye3/1.0 | 1 |
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.10 | 1 |
HP HTTP Server; HP Officejet 7110 series – CR768A; Serial Number: CN4313M12S05R1; Built:Fri May 31, 2013 07:34:28PM {EIP1FN1322BR} | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1i mod_jk/1.2.40 | 1 |
Management Switch Web Server 0.01 | 1 |
Apache/2.2.3 (Debian) mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch16 proxy_html/2.5 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.4.4 (Win32) OpenSSL/1.0.1e PHP/5.3.27 | 1 |
Armida 1.0 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips | 1 |
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.17 with Suhosin-Patch | 1 |
WWX.Net DNWS | 1 |
cFos Personal Net v3.13 Microsoft-HTTPAPI/2.0 | 1 |
pve-api-daemon/3.0 | 1 |
OpenCms/8.0.3 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.7 DAV/2 | 1 |
PRTG/12.4.6.3230 | 1 |
nginx/1.2.7 + Phusion Passenger 3.0.19 | 1 |
MILAN-HQ-7P | 1 |
Apache/2.2.17 (Unix) PHP/5.4.11 | 1 |
Apache/2.2.11 (Win32) PHP/5.2.11 | 1 |
Serchio/2.0 | 1 |
Apache/2.0.55 (Win32) PHP/5.2.11 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.1e DAV/2 mod_scgi/1.13 PHP/5.4.16 | 1 |
WebCit 8.22 / Citadel 8.22 | 1 |
Apache/2.2.22 (Debian) DAV/2 PHP/5.4.4-14+deb7u12 mod_ssl/2.2.22 OpenSSL/1.0.1e mod_wsgi/3.3 Python/3.2.3 | 1 |
ScreenConnect/5.1.8341.5506-4035141315 Microsoft-HTTPAPI/2.0 | 1 |
Apache/2.2.6 (Unix) mod_ssl/2.2.6 OpenSSL/0.9.7g PHP/5.2.4 | 1 |
Apache/2.2.22 (Ubuntu) mod_perl/2.0.5 Perl/v5.14.2 | 1 |
Apache/2.2.27 (FreeBSD) PHP/5.4.20 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.12 (Win32) mod_ssl/2.2.12 OpenSSL/0.9.8k | 1 |
AV_Receiver/3.1 (RX-S600) | 1 |
nginx/1.1.12 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.12-2 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8o | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.3.16 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8n DAV/2 | 1 |
Apache/2.2.15 (Unix) PHP/5.2.10 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.30 DAV/2 SVN/1.6.11 Phusion_Passenger/3.0.11 | 1 |
PRTG/14.3.11.2749 | 1 |
IGoon | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8x DAV/2 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=288;ecid=72057889818481341,0) | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.17 mod_ssl/2.2.25 OpenSSL/1.0.1e DAV/2 | 1 |
Apache/2.4.6 (Ubuntu) OpenSSL/1.0.1e | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e | 1 |
Apache/1.3.34 (Debian) mod_gzip/1.3.26.1a mod_ssl/2.8.25 OpenSSL/0.9.8c PHP/5.2.0-8+etch11 | 1 |
Apusic/5.1 (Windows Server 2008 6.0 x86; JDK 1.6.0_10-rc2) | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8g | 1 |
HP HTTP Server; HP Officejet 7500 E910 – C9309A; Serial Number: MY1C6310W805JB; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.14 (Win32) mod_jk/1.2.37 | 1 |
Apache/2.0.55 (Win32) PHP/5.2.8 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN057172HN05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.4.10 (Unix) PHP/5.6.5 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.1e-fips DAV/2 PHP/5.3.6 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN479FV0NM060M; Thomson_pendiag_pp Built:Thu Aug 22, 2013 02:03:17PM {TSP5FN1334BR, ASIC id 0x00320104} | 1 |
TRAPI/1.0 | 1 |
Linux, HTTP/1.1, DIR-868L Ver 1.03 | 1 |
Sec/east4serv.com | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_fcgid/2.3.9 mod_perl/2.0.8 Perl/v5.10.1 | 1 |
Apache/2.2.15 (Win32) PHP/5.2.3 | 1 |
username.noodles.wixpress.com | 1 |
Apache/2.4.6 (Win32) PHP/5.5.5 mod_jk/1.2.40 | 1 |
Apache/2.2.22 (Debian) DAV/2 mod_fastcgi/mod_fastcgi-SNAP-0910052141 mod_fcgid/2.3.6 PHP/5.4.4-14+deb7u12 mod_python/3.3.1 Python/2.7.3 mod_ruby/1.2.6 Ruby/1.8.7(2012-02-08) mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.4.28 mod_wsgi/3.4 Python/2.7.2 | 1 |
ScreenConnect/5.1.8341.5506-2688967348 Microsoft-HTTPAPI/2.0 | 1 |
Jeus WebContainer/JEUS 5.0 (fix #27) | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.3.28 with Suhosin-Patch | 1 |
Apache/1.3.39 (Unix) PHP/5.2.3 | 1 |
ngx_openresty/1.2.6.1 | 1 |
Apache/2.0.59 (Unix) PHP/4.4.7 mod_jk/1.2.21 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.3 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.8 (Win32) mod_ssl/2.2.8 OpenSSL/0.9.8e PHP/5.2.5 | 1 |
LogicalSystemsWebServer | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.16 mod_jk/1.2.32 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN41KFW08V05KC; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Italia3DStreaminServer/1.01 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 mod_jk/1.2.40 | 1 |
Apache/2.2.26 (Unix) mod_wsgi/3.3 Python/2.7.5 mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8za DAV/2 PHP/5.4.30 | 1 |
APN HTTPD V1.3 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0k DAV/2 | 1 |
Apache/1.1 PHP/4.6 Yes, I’m crazy | 1 |
Apache/2.4.10 (FreeBSD) OpenSSL/1.0.1i PHP/5.5.16 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_qos/10.10 PHP/5.2.17 | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips PHP/5.5.19 | 1 |
Apache/2.4.7 (Ubuntu) SVN/1.8.8 Phusion_Passenger/4.0.37 PHP/5.5.9-1ubuntu4.7 OpenSSL/1.0.1f | 1 |
Zope/(2.13.15, python 2.6.6, linux2) ZServer/1.1 | 1 |
Apache/2.2.16 (Debian) mod_fcgid/2.3.6 mod_jk/1.2.30 PHP/5.3.28-1~dotdeb.0 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
Apache/2.2.27 (Win64) mod_ssl/2.2.27 OpenSSL/0.9.8y | 1 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.6 | 1 |
HSS Web Server | 1 |
EWS-NIC4/10.30 | 1 |
Alpha Five Application Server/10.0 Build/4138-3666 | 1 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8 | 1 |
Apache/2.4.6 (Unix) mod_jk/1.2.37 OpenSSL/0.9.8e-fips-rhel5 PHP/5.5.5 Phusion_Passenger/4.0.21 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny2 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8o | 1 |
Alpha Anywhere Application Server Application Server/12.0 Build/2399-4351 | 1 |
IceWarp/11.1.2.0 | 1 |
Apache/1.3.34 (Unix) PHP/5.2.9 mod_ssl/2.8.25 OpenSSL/0.9.8g | 1 |
Xymphony-WS | 1 |
Apache/2.0.55 (Ubuntu) PHP/5.1.2 | 1 |
Apache/2.4.7 (Unix) PHP/5.5.7 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=282;ecid=437514477916,0) | 1 |
dreamies.de | 1 |
ARx/1.0 | 1 |
David-WebBox/12.00a (0773) WIN32 | 1 |
internetdisk 7.0 rest server | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0g DAV/2 mod_jk/1.2.35 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.29 | 1 |
Apache/2.4.10 (FreeBSD) mod_fcgid/2.3.9 PHP/5.4.35 | 1 |
Code-Crafters Ability Mail Server 2012 | 1 |
Apache/2.4.3 (Unix) PHP/5.4.6 | 1 |
Apache/2.2.22 (Debian) DAV/2 SVN/1.6.17 PHP/5.4.35-0+deb7u2 | 1 |
Cougar/9.01.01.3862 | 1 |
squid/2.7.STABLE8 | 1 |
WinGate Engine | 1 |
TongWeb Server | 1 |
lighttpd/1.4.32-devel-18790M | 1 |
SimpleHTTP/0.6 Python/2.6.6 | 1 |
CommuniGatePro/6.0.7 | 1 |
Apache/2.2.11 (Win32) PHP/5.2.6 | 1 |
udpxy 1.0-23.0 (prod) standard [Linux 3.10.41-0-grsec x86_64] | 1 |
Apache/2.2.9 (Win32) PHP/5.2.5 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.7l PHP/5.2.15 | 1 |
Oracle Application Server Containers for J2EE 10g (10.0.3.0.0) – Developer Preview | 1 |
Apache/2.4.4 (Unix) OpenSSL/1.0.0g PHP/5.3.25 | 1 |
Apache/1.3.26 (Unix) Debian GNU/Linux PHP/4.1.2 | 1 |
HP HTTP Server; HP Officejet 7110 series – CR768A; Serial Number: CN35S1TG6D05R1; Built:Wed Nov 07, 2012 11:48:19AM {EIP1FN1245BR} | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e PHP/5.6.0 mod_jk/1.2.40 | 1 |
EWS-NIC4/8.43 | 1 |
HCP V6.0.0.95 | 1 |
WSGIServer/0.1 Python/2.7.4 | 1 |
IceWarp/11.0.0.3 | 1 |
Apache/1.3.42 (Unix) mod_jk/1.2.28 | 1 |
Apache/2.2.26 (FreeBSD) mod_fcgid/2.3.9 PHP/5.4.23 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.29 (FreeBSD) mod_jk/1.2.40 PHP/5.4.35 mod_ssl/2.2.29 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/1.3.28 (Unix) mod_perl/1.28 mod_ssl/2.8.15 OpenSSL/0.9.7b | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=1061;ecid=72058040165111614,0) | 1 |
Apache/2.4.10 (Win64) OpenSSL/1.0.1i PHP/5.6.0 | 1 |
HP HTTP Server; HP Officejet 6700 – CN583A; Serial Number: CN2332G1DB05RQ; Margarita_premium_mp2 Built:Tue Apr 15, 2014 06:10:37PM {MPM3CN1416AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny6 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.6 | 1 |
Apache/2.4.1 (Unix) OpenSSL/1.0.0-fips PHP/5.3.10 | 1 |
Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.22 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.12 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 1 |
NS Web Interface Version 1.3 | 1 |
magellan.der-eremit.eu | 1 |
Apache/1.3.6 (Unix) (SuSE/Linux) mod_perl/1.19 PHP/3.0.11 | 1 |
Apache/2.4.4 (Unix) OpenSSL/0.9.8x | 1 |
Ipswitch-IMail/8.22 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.5.15 | 1 |
ClearSCADA/6.72.4560.2 | 1 |
lwip/3.0 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8u mod_wsgi/3.3 Python/2.7.2 PHP/5.4.3 | 1 |
AOLserver/4.5.0 | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y mod_jk/1.2.32 | 1 |
Apache/2.2.3 (Win32) DAV/2 mod_ssl/2.2.3 OpenSSL/0.9.8d mod_autoindex_color PHP/5.1.6 | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 PHP/5.2.4-2ubuntu5.26 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Apache/2.2.19 (Win32) mod_ssl/2.2.19 OpenSSL/0.9.8r | 1 |
Apache/1.3.36 (Unix) mod_jk/1.2.5 DAV/1.0.3 PHP/4.4.2 mod_perl/1.29 | 1 |
nginx/0.8.17 | 1 |
Apache/2.2.22 (Win64) | 1 |
IS2 Web Server 1.61 | 1 |
Lightstreamer/5.1.1 build 1623.2 (Lightstreamer Push Server – www.lightstreamer.com) Allegro edition | 1 |
LANCOM 1711+ VPN 8.60.0189 / 02.04.2012 | 1 |
Saia PCD3.M9/1.16.45 | 1 |
Apache/2.2.17 (Win32) PHP/5.3.17 | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN13T4K40L05J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.12 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN428EV15V060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
JAWS/1.0 Oct 17 2014 | 1 |
Apache/1.3.41 (Unix) mod_perl/1.30 PHP/5.2.14 mod_ssl/2.8.31 OpenSSL/0.9.8e-fips-rhel5 | 1 |
PlugWebServer | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.6(2007-09-24) mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m mod_jk/1.2.30 | 1 |
Wing FTP Server(Image API) | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN35FBVK0W05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.4.9 (Win32) mod_fcgid/2.3.9 | 1 |
Apache/2.4.12 (Win32) OpenSSL/1.0.1l PHP/5.4.38 mod_wsgi/3.5 Python/2.7.9 | 1 |
Apache/2.4.9 (Win32) PHP/5.5.12 OpenSSL/1.0.1g | 1 |
Apache/2.2.22 (Win32) mod_jk/1.2.28 mod_ssl/2.2.22 OpenSSL/0.9.8t | 1 |
Wing FTP Server(Wolfgang Carli) | 1 |
PBX/4.0.1.3499 (Win32) | 1 |
Apache/1.3.24 With MMAP/EAPI (Win32) PHP/4.2.1 mod_ssl/2.8.8 OpenSSL/0.9.6c | 1 |
Apache/2.4.10 (Unix) PHP/5.6.2 OpenSSL/1.0.1j | 1 |
Apache/2.2.3 (Debian) DAV/2 PHP/5.2.0-8+etch16 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
HP HTTP Server; HP Officejet 4620 series – CZ152B; Serial Number: TH38F141XM05RT; Cesar_wl_mp1_usr_hf Built:Thu Sep 27, 2012 03:27:17PM {CWM1FN1240AR, ASIC id 0x00340104} | 1 |
Apache/2.2.3 (Debian) mod_jk/1.2.18 PHP/4.4.4-8+etch6 mod_ssl/2.2.3 OpenSSL/0.9.8c mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.2.25 (Win32) PHP/5.2.9-1 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.0-fips | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CQ840A; Serial Number: CN0C1AK9B2; Lorentz_base_pp_usr_hf Built:Wed Aug 01, 2012 03:26:12PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
Apache/2.4.9 (Raspbian) | 1 |
Apache/1.3.41 (Darwin) PHP/5.2.4 mod_jk/1.2.23 | 1 |
Apache/2.4.10 (Ubuntu) PHP/5.5.9-1ubuntu4.5 OpenSSL/1.0.1f | 1 |
LANCOM 1781-4G 8.80.0135 / 28.02.2013 | 1 |
Roxen | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.4.24 Phusion_Passenger/4.0.37 mod_ssl/2.2.26 OpenSSL/0.9.8y | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1e-fips PHP/5.3.3 | 1 |
lighttpd/1.4.28-devel-1650 | 1 |
ntop/5.0.1/64-bit (x86_64-2.6.32-431.11.2.el6.x86_64-linux-gnu) | 1 |
Apache/2.4.6 (Win64) PHP/5.5.5 | 1 |
ccbwebsrv/0.0.9 | 1 |
David-WebBox/12.00a (0910) | 1 |
Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.7e | 1 |
Apache/2.2.13 (iTools 9.0.5/Mac OS X) mod_ssl/2.2.13 OpenSSL/0.9.7l DAV/2 mod_fastcgi/mod_fastcgi-SNAP-0910052141 PHP/5.3.3 | 1 |
HP HTTP Server; HP Photosmart 7520 series – CZ045B; Serial Number: CN29K2B1B005VV; Built:Thu Aug 21, 2014 10:26:38AM {ELM1CN1434BR} | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.25 (Win32) mod_fastcgi/2.4.6 | 1 |
Apache/2.2.22 (Unix) mod_jk/1.2.23 | 1 |
speedr 1.0 backend | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.23 with Suhosin-Patch mod_wsgi/2.0 Python/2.5.2 | 1 |
LANCOM 1711 VPN 7.80.0081 / 06.01.2010 | 1 |
Apache/2.4.10 (Debian) PHP/5.6.0RC2 OpenSSL/1.0.1i-dev | 1 |
Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_ssl/2.8.12 OpenSSL/0.9.6 DAV/1.0.3 PHP/4.1.2 mod_perl/1.26 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.17 | 1 |
lighttpd/1.4.31 for KSWEB | 1 |
Apache/1.3.31 (Win32) PHP/4.3.8 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.7a mod_bwlimited/1.4 | 1 |
Apache/2.0.49 (Win32) PHP/4.4.1 | 1 |
Apache/2.2.4 (Unix) PHP/5.2.5 | 1 |
Gateway Web Server/1.0 | 1 |
$ProjectRevision: 4.0.2.38 $ | 1 |
IP Webcam Server 0.2 | 1 |
KwikNet Web Server | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.18 mod_perl/2.0.9-dev Perl/v5.18.4 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8k DAV/2 PHP/5.3.2 | 1 |
Apache/1.3.33 (Unix) PHP/5.0.4 mod_perl/1.29 mod_ssl/2.8.22 OpenSSL/0.9.7e | 1 |
Apache/2.2.9 (Win32) mod_bw/0.92 | 1 |
Apache/2.2.8 (Ubuntu) Phusion_Passenger/3.0.5 PHP/5.2.4-2ubuntu5.14 with Suhosin-Patch | 1 |
HP HTTP Server; HP Officejet 7500 E910 – C9309A; Serial Number: MY0B1110SX05JB; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.4.6 (Debian) PHP/5.5.4-1 | 1 |
Apache/2.4.6 (Win32) OpenSSL/1.0.1e PHP/5.5.4 | 1 |
Mongrel 1.1.3 | 1 |
PBX/5.2.3 (CentOS64) | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips DAV/2 PHP/5.3.8 | 1 |
Apache/2.2.9 (Mandriva Linux/PREFORK-12.9mdvmes5) | 1 |
HP HTTP Server; HP Photosmart 7520 series – CZ045B; Serial Number: CN2AU292FD05VV; Built:Mon May 13, 2013 09:33:26AM {ELM1CN1320AR} | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.4.28-1+deb.sury.org~precise+1 | 1 |
Apache/2.2.9 (Win32) DAV/2 mod_auth_sspi/1.0.4 mod_aspdotnet/2.2 PHP/5.3.8 | 1 |
Apache/2.2.17 (FreeBSD) mod_ssl/2.2.17 OpenSSL/0.9.8q DAV/2 PHP/5.4.21 | 1 |
thttpd/2.19-MX Jul 5 2010 | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CM755A; Serial Number: CN0B6AM2G0; Lorentz_base_pp_usr_hf Built:Wed Aug 01, 2012 03:26:12PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips DAV/2 PHP/5.4.5 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN31ABXJSN05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
Apache/2.2.22 (Debian) DAV/2 SVN/1.6.17 PHP/5.4.34-0+deb7u1 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8o DAV/2 PHP/5.2.12 | 1 |
IPOffice/7.0(27) | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN35BBWGHD05KC; Coulomb_base_pp Built:Tue Jan 10, 2012 07:08:19AM {CLP1CN1150CR, ASIC id 0x00320104} | 1 |
Apache/2.2.21 (Win32) mod_jk/1.2.37 | 1 |
ISC2000 HTTPserv:00002 | 1 |
EUROS-Web/2.10 | 1 |
Apache/2.4.9 (Win64) PHP/5.5.11 OpenSSL/1.0.1g | 1 |
Apache/2.2.26 (FreeBSD) mod_wsgi/3.4 Python/2.7.6 PHP/5.4.24 mod_ssl/2.2.26 OpenSSL/1.0.1e-freebsd | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.29 | 1 |
KFWebServer | 1 |
Apache/2.2.3 (Debian) DAV/2 SVN/1.4.2 mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch16 mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
4D_v13/13.4 | 1 |
Microsoft-IIS/6.0, FX-EWB-Compatible/2.0 | 1 |
Devline Linia Server | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8k DAV/2 PHP/5.3.6 | 1 |
Apache/2.2.16 (EL) | 1 |
Apache/2.4.4 (Fedora) OpenSSL/1.0.0-fips PHP/5.4.16 mod_perl/2.0.8-dev Perl/v5.16.3 | 1 |
Mailtraq/2.17.5.3364 | 1 |
Zope/(Zope 2.10.5-final, python 2.4.4, win32) ZServer/1.1 Plone/3.0.5 | 1 |
IIS/6.0 | 1 |
ÊÇÖÉÓÉÁÓ 25 | 1 |
iGuard Embedded Web Server/5.0.8816A (LM520) SN:VK-2003-527A-A3D1 | 1 |
Apache/2.4.3 (Fedora) OpenSSL/1.0.1c-fips PHP/5.4.11 mod_perl/2.0.7 Perl/v5.16.2 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.13 mod_jk/1.2.30 | 1 |
Linux, HTTP/1.1, DIR-600 Ver 2.13 | 1 |
squid/2.7.STABLE5 | 1 |
HP HTTP Server; HP Deskjet 3050A J611 series – B0N11B; Serial Number: CN29M1FJG505WK; Sumbamlk_pp Built:Fri Mar 16, 2012 06:51:44AM {SMP1FN1215BR, ASIC id 0x00340100} | 1 |
iGuard Embedded Web Server/3.6.5789A (FPS110) SN:VK-2003-0196-1227 | 1 |
Apache/2.4.9 (Unix) PHP/5.3.3 | 1 |
Kerio MailServer 6.7.1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1f PHP/5.2.10 | 1 |
Apache/2.2.15 (Unix) DAV/2 PHP/5.2.12 | 1 |
Apache/2.2.20 (Unix) PHP/5.2.17 | 1 |
UltraDNS Client Redirection Server | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips PHP/5.3.2 | 1 |
Jetty(8.1.16.v20140903) | 1 |
Apache/2.0.52 (FreeBSD) PHP/4.4.4 | 1 |
HP HTTP Server; HP Officejet 4620 series – CZ152B; Serial Number: CN337230TD05RT; Cesar_wl_mp1_usr_hf Built:Thu Mar 15, 2012 08:16:43AM {CWM1FN1211ER, ASIC id 0x00340104} | 1 |
Apache/2.2.8 (Ubuntu) mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.8 (Unix) PHP/5.2.6 | 1 |
Apache/2.2.22 (Ubuntu) DAV/2 | 1 |
HP HTTP Server; HP Officejet 4620 series – CZ152A; Serial Number: CN336231KZ05RT; Cesar_wl_mp1_usr_hf Built:Tue Jan 21, 2014 07:00:30PM {CWM1FN1404AR, ASIC id 0x00340104} | 1 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8g PHP/5.2.10 | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.5.16 mod_fcgid/2.3.9 | 1 |
Jetty/5.1.x (Linux/3.7.10-1.16-default amd64 java/1.7.0_21 | 1 |
Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4.6 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ruby/1.2.6 Ruby/1.8.7(2008-08-11) mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.11 (Mandriva Linux/PREFORK-10.2mdv2009.1) | 1 |
Apache/2.4.7 (Unix) PHP/5.5.8 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 1 |
Apache/1.3.33 (Debian GNU/Linux) PHP/4.3.10-16 mod_ssl/2.8.22 OpenSSL/0.9.7e | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1g PHP/5.5.1 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Jetty(8.1.10.v20130312) | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN29J1C6S005SY; Stuttgart_pp_usr_hf Built:Mon Jun 11, 2012 10:11:53AM {STP1FN1224AR, ASIC id 0x00340104} | 1 |
Apache/2.2.11 (Unix) mod_mono/2.4 | 1 |
Apache/2.2.11 (FreeBSD) mod_ssl/2.2.11 OpenSSL/0.9.8e | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1f PHP/5.5.9 | 1 |
Apache/2.2.3 (CentOS) DAV/2 PHP/5.3.3 | 1 |
HttpSvr/1.0 | 1 |
Geutebrueck-MSCWeb/1.0 | 1 |
Apache/2.2.15 (Win64) PHP/5.3.2 | 1 |
Secured By AmigoServ.com | 1 |
PRTG/13.4.7.3531 | 1 |
NAE01 | 1 |
HP HTTP Server; HP Photosmart 6510 series – CQ761B; Serial Number: CN1B2420S905QB; Epsilonplus Built:Mon Oct 29, 2012 05:09:07PM {ESP1CN1244AR, ASIC id 0x003a0008} | 1 |
Apache/2.0.55 (Win32) PHP/5.2.5 | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.4.7 | 1 |
IIT-ITS SIMFDS6-S2 2.20.187.113 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0d PHP/5.3.6 | 1 |
Apache/2.4.3 (Win32) OpenSSL/0.9.8x PHP/5.4.11 | 1 |
Apache/2.2.16 (Debian) DAV/2 PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
ConfD | 1 |
Zope/(Zope 2.7.5-final, python 2.3.5, linux2) ZServer/1.1 | 1 |
Apache/2.2.3 (Win32) PHP/5.2.6 | 1 |
Apache/2.2.13 (Unix) DAV/2 PHP/5.2.10 | 1 |
NAE-01 | 1 |
lighttpd 1 | 1 |
LANCOM 1611+ 6.32.0021 / 29.03.2007 | 1 |
Ninja Server | 1 |
ISLCP assistenza.bytesistem.it | 1 |
Apache/2.2.25 (Win32) SVN/1.8.8 DAV/2 | 1 |
Kerio Connect 7.4.2 | 1 |
Zope/(Zope 2.10.6-final, python 2.4.4, win32) ZServer/1.1 Plone/3.1.4 | 1 |
Jetty/4.2.27 (Linux/2.6.32-31-pve amd64 java/1.6.0_12) | 1 |
HP HTTP Server; HP HP Officejet Pro 8660 – E1D36A; Serial Number: CN49SD43GB; Built:Fri Jan 09, 2015 02:21:48PM {FDP1CN1502AR} | 1 |
username.portobello.wixpress.com | 1 |
thttpd/2.19-MX Jan 30 2009 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.3.27 with Suhosin-Patch | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.1 (G;max-age=0+0;age=0;ecid=720576418455661148,1) | 1 |
Embedded HTTP Server 2.07 | 1 |
Footprint Distributor V4.8 | 1 |
lighttpd/1.4.21 | 1 |
Wing FTP Server(studio11 di vittorio veneziano) | 1 |
YYY | 1 |
Apache/2.2.22 (Win32) SVN/1.6.16 DAV/2 | 1 |
Apache-Coyote/1.09 | 1 |
Apache/2.2.22 (Unix) PHP/5.2.17 mod_ssl/2.2.22 OpenSSL/0.9.8x | 1 |
Kerio Connect 7.2.4 | 1 |
FB2700 Nestor (V1.35.001 2014-12-03T11:42:49) | 1 |
Apache/2.4.4 (Win32) PHP/5.4.9 | 1 |
wiseLight | 1 |
Apache/1.3.31 (Unix) mod_ssl/2.8.19 OpenSSL/0.9.7d PHP/4.3.8 | 1 |
lighttpd/1.4.28-devel-8307 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.7m DAV/2 PHP/5.3.27 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8o PHP/5.3.8-ZS5.5.0 mod_jk/1.2.28 | 1 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7a mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.6 | 1 |
Apache/2.2.21 (Unix) DAV/2 mod_jk/1.2.32 | 1 |
Apache/2.2.3 (Debian) mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch16 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
xt-creations | 1 |
Apache/2.2.8 (Unix) PHP/5.4.10 | 1 |
Apache/2.2.27 (FreeBSD) DAV/2 mod_ssl/2.2.27 OpenSSL/1.0.1i mod_hcgi/0.9.4 | 1 |
Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/1.0.1e-fips DAV/2 PHP/5.5.9 | 1 |
Web Server/4.10 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.4.0 mod_jk/1.2.35 SVN/1.6.11 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 PHP/5.2.17 | 1 |
Apache/2.4.9 (FreeBSD) mod_wsgi/3.4 Python/2.7.6 | 1 |
THOR | 1 |
Apache/2.4.9 (Debian) OpenSSL/1.0.1e | 1 |
HLK-RM04-Webs | 1 |
nginx/1.0.11 + Phusion Passenger 3.0.11 (mod_rails/mod_rack) | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.14 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/4.4.9 | 1 |
Apache/2.4.6 (CentOS) mod_auth_kerb/5.4 PHP/5.4.16 | 1 |
HiIpcam | 1 |
HP HTTP Server; HP Officejet 6500 E710a-f – CN553A; Serial Number: CN2264523K05P2; Syrah_mp2_usr_hf Built:Tue Jun 28, 2011 07:39:26PM {SYM2FN1126AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.26 (Unix) mod_wsgi/3.3 Python/2.7.5 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.4.6 (FreeBSD) | 1 |
CarelDataServer/1.5.1.0 | 1 |
monit 5.4 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN39QEXHWJ05KC; Coulomb_base_pp Built:Fri May 31, 2013 08:21:06PM {CLP1CN1322CR, ASIC id 0x00320104} | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=1325213232650,0) | 1 |
Apache/2.2.9 (Ubuntu) | 1 |
Apache/2.4.9 (Unix) PHP/5.5.19 | 1 |
Apache/2.4.2 (Unix) OpenSSL/1.0.1 Phusion_Passenger/3.0.15 | 1 |
Apache/2.0.54 (Unix) PHP/4.3.11 | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.16 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.15 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Oracle-Application-Server-10g/10.1.2.2.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (N;ecid=336203706689,0) | 1 |
Zope/(Zope 2.10.6-final, python 2.4.5, linux2) ZServer/1.1 | 1 |
Apache/2.2.11 (Win32) DAV/2 SVN/1.6.0 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.1f | 1 |
Apache/2.2.17 (Win32) PHP/5.3.26 | 1 |
KCA 3016 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.2.17 | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CM756A; Serial Number: CN1ADEG2YF; Lorentz_pp_usr_hf Built:Wed Aug 01, 2012 05:50:43PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
Apache/2.0.52 (Unix) PHP/5.2.6 | 1 |
Apache/2.4.10 (FreeBSD) mod_fcgid/2.3.9 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.7l DAV/2 PHP/5.2.10 | 1 |
Apache/2.4.4 (Win32) OpenSSL/1.0.0g PHP/5.4.16 | 1 |
HP HTTP Server; HP Officejet 7500 E910 – C9309A; Serial Number: MY34R3105C05JB; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/2.2.26 (Unix) DAV/2 PHP/5.3.28 mod_ssl/2.2.26 OpenSSL/0.9.8zc | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.2.14 | 1 |
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8l PHP/5.3.1 | 1 |
LogMote | 1 |
Cassini/1.0.0.0 | 1 |
Jetty(winstone-2.5) | 1 |
Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16 SVN/1.7.14 | 1 |
Apache/2.2.21 (Win32) mod_aspdotnet/2.2 PHP/5.3.27 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips PHP/4.4.9 | 1 |
Apache/2.0.59 (Win32) PHP/5.2.5 | 1 |
Apache/2.4.10 (Win32) mod_wsgi/4.4.1 Python/2.6.1 | 1 |
HP HTTP Server; HP Photosmart Prem C410 series – CQ521A; Serial Number: CN11ID101B05KV; Vadermlk_usr_hf Built:Tue May 24, 2011 09:10:31AM {VAx2FN1121AR, ASIC id 0x00280004} | 1 |
Apache/2.2.17 (FreeBSD) mod_ssl/2.2.17 OpenSSL/0.9.8n DAV/2 PHP/5.3.3 with Suhosin-Patch SVN/1.6.15 | 1 |
Play! Framework;1.2.7;dev | 1 |
darkhttpd/1.10 | 1 |
Apache/2.2.21 (Win32) mod_antiloris/0.5.2 PHP/5.3.8 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips PHP/5.4.16 mod_jk/1.2.31 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.2.22 (Win32) Resin/3.1.9 | 1 |
Apache/2.2.15 (Unix) DAV/2 PHP/5.2.9 | 1 |
WEBrick/1.3.1 (Ruby/2.2.0/2014-12-25) | 1 |
Apache/2.2.19 (Unix) DAV/2 mod_jk/1.2.32 | 1 |
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.4.6 (Win32) OpenSSL/1.0.1e PHP/5.3.27 | 1 |
Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u9 mod_ssl/2.2.22 OpenSSL/1.0.1e mod_perl/2.0.7 Perl/v5.14.2 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 mod_jk/1.2.14 | 1 |
AscenVision HTTP 1.0 | 1 |
Apache/2.2.19 (Unix) DAV/2 PHP/5.2.17 | 1 |
NetEVI/3.03 | 1 |
MIG WebService Gateway | 1 |
megadrom@gate | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8m | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/1.0.0a PHP/5.3.3 | 1 |
Jetty(9.2.6.v20141205) | 1 |
Apache/2.2.24 (Win32) PHP/5.4.15 | 1 |
Autonomic Controls/3.0.11599.2 Microsoft-HTTPAPI/1.0 | 1 |
KEDACOM-Webs | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.3.28 with Suhosin-Patch DAV/2 | 1 |
Apache/1.3.17 (Win32) | 1 |
Apache/2.2.17 (Win32) PHP/5.3.5 mod_fcgid/2.3.6 | 1 |
Apache/2.2.22 (Unix) PHP/5.3.15 mod_ssl/2.2.22 OpenSSL/0.9.8x | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CM755A; Serial Number: CN0A8AM0YF; Lorentz_base_pp_usr_hf Built:Thu Feb 17, 2011 09:52:43AM {LRP1FN1107AR, ASIC id 0x00320104} | 1 |
Apache/2.2.3 (CentOS) DAV/2 PHP/5.3.25 | 1 |
Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8p DAV/2 PHP/5.2.14 | 1 |
CrushFTP HTTP Server Version 4.9.8 | 1 |
Apache/2.4.7 (Unix) PHP/5.3.27 OpenSSL/1.0.1e | 1 |
Apache/2.2.22 (Win32) PHP/5.2.5 | 1 |
IPOffice/8.1(65) | 1 |
Apache/2.4.4 (Win64) PHP/5.5.13 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8o DAV/2 PHP/4.4.6 | 1 |
Apache/2.2.3 (Linux/SUSE) mod_ssl/2.2.3 OpenSSL/0.9.8a PHP/5.2.14 with Suhosin-Patch | 1 |
Apache/2.2.11 (Unix) PHP/5.3.3 | 1 |
Apache/2.4.10 (Fedora) PHP/5.5.17 mod_wsgi/3.5 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.0.59 (Unix) DAV/2 PHP/4.4.4 mod_watch/4.3 | 1 |
Apache/1.3.33 (Win32) PHP/5.2.5 | 1 |
Apache/2.2.8 (Ubuntu) mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 | 1 |
Icecast 2.4.0 | 1 |
Linux, HTTP/1.1, DIR-860L Ver 1.05 | 1 |
Zope/(Zope 2.7.6-final, python 2.3.5, win32) ZServer/1.1 | 1 |
Apache/2.2.22 (Win32) PHP/5.2.8 | 1 |
Apache/2.4.10 (Ubuntu) PHP/5.5.15-1+deb.sury.org~precise+1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1g DAV/2 | 1 |
Apache/1.3.26 Ben-SSL/1.48 (Unix) PHP/4.2.2 | 1 |
Apache mod_perl/2.0.6 Perl/v5.10.1 | 1 |
EK | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.37 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0e DAV/2 mod_jk/1.2.32 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8o DAV/2 PHP/5.3.6 Phusion_Passenger/4.0.26 | 1 |
Apache/2.2.27 (FreeBSD) mod_fastcgi/mod_fastcgi-SNAP-0910052141 PHP/5.4.28 mod_ssl/2.2.27 OpenSSL/0.9.8y DAV/2 | 1 |
PBX/5.2.4 (snom ONE mini) | 1 |
yopongoelhielo.com | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8r PHP/5.3.13 | 1 |
Showroom.pl | 1 |
Apache/2.2.27 (Unix) PHP/5.2.5 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0j PHP/5.4.12 | 1 |
Apache/2.2.9 (Debian) DAV/2 PHP/5.2.6-1+lenny16 with Suhosin-Patch | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny10 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g Phusion_Passenger/3.0.17 | 1 |
Apache/1.3.27 Ben-SSL/1.48 (Unix) PHP/4.0.6 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 mod_jk/1.2.26 Phusion_Passenger/2.2.11 PHP/5.2.6-1+lenny16 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.1 | 1 |
anij | 1 |
OpenBSD relayd | 1 |
HP HTTP Server; HP Officejet 7610 series – CR769A; Serial Number: CN43C3M0BC05SP; Built:Fri Jun 28, 2013 01:38:47PM {EGM1CN1326AR} | 1 |
Dethklok (Unix/0.2.3) | 1 |
Apache/2.2.22 (FreeBSD) PHP/5.4.5 mod_ssl/2.2.22 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.2.22 (Win32) PHP/5.4.0 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze15 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_ruby/1.2.6 Ruby/1.8.7(2010-08-16) mod_ssl/2.2.16 OpenSSL/0.9.8o mod_perl/2.0.4 Perl/v5.10.1 | 1 |
LANCOM 1711 VPN 8.82.0100 / 28.08.2013 | 1 |
Apache/2.2.21 (Win32) PHP/5.3.3 mod_ssl/2.2.21 OpenSSL/0.9.8r | 1 |
ScreenConnect/5.1.8341.5506-3701651602 | 1 |
Cherokee/1.2.103 (Arch Linux) | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1g DAV/2 PHP/5.2.17 Phusion_Passenger/3.0.9 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.11 (Mandriva Linux/PREFORK-10.10mdv2009.1) | 1 |
Apache/2.0.61 (Unix) mod_ssl/2.0.61 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.6 | 1 |
Apache/2.4.10 (Fedora) mod_nss/2.4.6 NSS/3.15.2 Basic ECC PHP/5.5.19 | 1 |
Apache/2.2.22 (Debian) mod_fcgid/2.3.6 mod_ssl/2.2.22 OpenSSL/1.0.1e Phusion_Passenger/4.0.53 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_jk/1.2.35 | 1 |
DvrHttpd/3.5.26 | 1 |
kangle/3.2.7 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.0-fips PHP/5.5.0 | 1 |
WebSEAL/6.1.1.5 (Build 120405) | 1 |
WEBrick/1.3.1 (Ruby/1.9.3/2014-11-13) | 1 |
Apache/2.4.6 (CentOS) PHP/5.4.37 | 1 |
Microsoft-IIS/7.5, 5.9.12.100 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze19 with Suhosin-Patch mod_python/3.3.1 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.2.9 (Unix) PHP/5.2.6 mod_ssl/2.2.9 OpenSSL/0.9.7l DAV/2 mod_jk/1.2.23 mod_scgi_pubsub/1.11-pubsub mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.2 OpenSSL/1.0.1f | 1 |
raptor | 1 |
app1 | 1 |
kangle/3.2.1 | 1 |
INEOQUEST/2.0 | 1 |
Apache/2.2.8 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8e | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN27OBWGJ405KC; Coulomb_base_pp Built:Fri Aug 03, 2012 03:39:21PM {CLP1CN1232AR, ASIC id 0x00320104} | 1 |
Embedded Web Server ver 5.0 | 1 |
Gohigh Embedded Web Server/1.0 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.5.9 mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2 | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/1.0.0d DAV/2 PHP/5.3.6 with Suhosin-Patch | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.26 | 1 |
HP HTTP Server; HP Deskjet 4620 series – CZ284B; Serial Number: CN2CN2106B05TN; Cesar_wl_ia_pp_usr_hf Built:Tue Jan 21, 2014 07:02:10PM {CAP1FN1404AR, ASIC id 0x00340104} | 1 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.7a PHP/5.2.1 | 1 |
Apache/2.2.25 (Win32) DAV/2 SVN/1.8.8 | 1 |
Apache/2.4.6 (Fedora) PHP/5.5.20 Phusion_Passenger/3.0.21 | 1 |
ECD (ory/43A1) | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8zc PHP/5.2.5 | 1 |
ScreenConnect/5.1.8473.5522-331514618 | 1 |
Apache/2.2.9 (Debian) mod_python/3.3.1 Python/2.5.2 mod_wsgi/2.5 | 1 |
Apache/2.2.17 (Unix) DAV/2 mod_jk/1.2.31 | 1 |
NaviServer/4.99.6 | 1 |
Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e PHP/5.2.1 mod_apreq2-20051231/2.5.7 mod_perl/2.0.2 Perl/v5.8.7 | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=5448381835425,0) | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1e PHP/5.5.15 | 1 |
Apache/2.4.7 (Ubuntu) mpm-itk/2.4.6-01 PHP/5.5.9-1ubuntu4.4 OpenSSL/1.0.1f | 1 |
Hestia | 1 |
Apache/2.2.4 (Ubuntu) PHP/5.2.3-1ubuntu6 | 1 |
Apache/2.4.9 (FreeBSD) PHP/5.4.26 | 1 |
PT7137 | 1 |
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.26 with Suhosin-Patch mod_ssl/2.2.14 OpenSSL/0.9.8k | 1 |
Apache/2.2.14 (Win64) mod_jk/1.2.28 | 1 |
Apache/2.2.22 (Win32) SVN/1.7.7 mod_ssl/2.2.22 OpenSSL/0.9.8u PHP/5.4.3 DAV/2 | 1 |
Apache/2.2.22 (Ubuntu) DAV/2 SVN/1.6.17 PHP/5.3.10-1ubuntu3.7 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
ipsWeb | 1 |
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny13 with Suhosin-Patch mod_ruby/1.2.6 Ruby/1.8.7(2008-08-11) | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=4400410017975,0) | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13 mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
Apache/2.4.10 (Unix) PHP/5.4.20 | 1 |
Boa/0.94.9 | 1 |
Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.8e-fips-rhel5 | 1 |
Apache/2.2.16 (Debian) DAV/2 mod_fcgid/2.3.6 mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
Apache/2.2.23 (Unix) DAV/2 PHP/5.4.12 | 1 |
Apache/2.2.14 (Unix) PHP/5.1.6 | 1 |
:) | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
LANCOM 1823 VoIP (Annex A) 7.58.0045 / 14.11.2008 | 1 |
nginx/1.6.2 (Ubuntu/Rusoft) | 1 |
iGuard Embedded Web Server/5.0.9000A (LM520) SN:VK-2003-51F3-BC31 | 1 |
Apache/2.2.17 (FreeBSD) mod_ssl/2.2.17 OpenSSL/0.9.8q DAV/2 SVN/1.6.15 PHP/5.3.5 with Suhosin-Patch | 1 |
ITR/1.0 | 1 |
Apache/2.0.59 (rPath) | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN35LBWG9S05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.1e PHP/5.5.6 | 1 |
AdRem NetCrunch HTTP Server | 1 |
Commodore BASIC 2.03 | 1 |
BMR/0.09 | 1 |
Apache/2.2.21 (Win32) PHP/5.2.6 | 1 |
Apache/2.2.17 (Win32) mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.12.3 | 1 |
Apache/2.2.8 (Ubuntu) DAV/2 PHP/5.2.4-2ubuntu5.24 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g | 1 |
Apache/2.2.9 (Debian) DAV/2 mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.0.54 (Unix) mod_jk2/2.0.4 | 1 |
Apache/2.0.63 (Win32) PHP/4.4.7 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.4.9-4ubuntu2.4 | 1 |
LANCOM 1721+ VPN 8.50.0214 / 13.12.2011 | 1 |
SorfNetworks | 1 |
Apache/2.2.22 (Unix) DAV/2 mod_jk/1.2.37 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.3.14 | 1 |
Apache/2.2.29 (Unix) mod_wsgi/3.5 Python/2.7.8 | 1 |
Apache/2.0.65 (Win32) mod_jk/1.2.37 | 1 |
Hitachi European Web Servers | 1 |
Apache/2.2.11 (i5) | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.5 OpenSSL/1.0.1f mod_perl/2.0.8 Perl/v5.18.2 | 1 |
Apache/2.2.25 (Win32) Resin/3.1.9 mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.7l DAV/2 | 1 |
AV_Receiver/3.1 (RX-V675) | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8o DAV/2 PHP/5.2.17 SVN/1.6.11 mod_fcgid/2.3.7 mod_wsgi/3.4 Python/2.7.6 Phusion_Passenger/4.0.17 | 1 |
Apache/2.2.4 (Win32) mod_jk/1.2.28 | 1 |
Apache/2.4.4 (Fedora) | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze1 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
Apache/2.4.7 (Ubuntu) Phusion_Passenger/4.0.42 | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=5200;ecid=72057816823473796,0) | 1 |
lighttpd/1.4.24 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips DAV/2 PHP/5.4.37 | 1 |
AOLserver/4.0.10 | 1 |
HP HTTP Server; HP Officejet 4630 series – D4J78B; Serial Number: CN44B390V505Y0; Built:Thu Dec 04, 2014 11:06:46AM {MYM1FN1449AR} | 1 |
HP HTTP Server; HP Deskjet 5520 series – CZ282C; Serial Number: CN44U7104R05SX; Morgan_ia_pendiag_pp Built:Thu Dec 19, 2013 10:03:35PM {MAP5CN1351AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.22 (Ubuntu) DAV/2 SVN/1.6.17 PHP/5.3.10-1ubuntu3.13 with Suhosin-Patch | 1 |
IPCheck/5.4.2.898 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 | 1 |
MyTickets.it Web Server | 1 |
Diva HTTP Plugin 2.0 | 1 |
Zope/(Zope 2.5.1 (binary release, python 2.1, win32-x86), python 2.1.3, win32) ZServer/1.1b1 | 1 |
Apache/2.2.9 (Debian) PHP/5.3.16-1~dotdeb.0 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8o | 1 |
Skamasle | 1 |
CRYPTOCard/6.1 | 1 |
Apache/2.2.19 (Win32) PHP/5.3.5 | 1 |
BaseHTTP/0.3 Python/2.7.9 | 1 |
Apache/2.4.10 (Win64) PHP/5.6.4 | 1 |
JAWS/1.0 Mar 19 2014 | 1 |
kx-ns300_500 | 1 |
TornadoServer/3.1 | 1 |
Indy/9.0.17 | 1 |
Apache/2.2.14 (Mandriva Linux/PREFORK-1mdv2010.0) | 1 |
Apache/2.4.7 (Unix) OpenSSL/1.0.1h SVN/1.7.16 PHP/5.4.30 | 1 |
AllegroServe/1.2.50 | 1 |
ATS/5.0.0 | 1 |
kangle/3.4.6 | 1 |
Apache/1.3.42 (Unix) PHP/4.4.9 mod_ssl/2.8.31 OpenSSL/0.9.7b | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.1 (G;max-age=0+0;age=0;ecid=144115700511979372,0) | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8n PHP/5.3.5 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.11 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
IS2 Web Server 1.69 | 1 |
Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.4.17 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.8 | 1 |
iKlive SandCastle Server | 1 |
dtHTTPd/1.1 | 1 |
Apache/2.2.27 (Unix) DAV/2 PHP/5.5.10 | 1 |
HsHttpServer/2.2.0.0 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8l DAV/2 PHP/5.3.3 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.18 | 1 |
RT-Webserver/1.0-2 | 1 |
Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t mod_jk/1.2.37 | 1 |
ListManagerWeb/9.3e (based on Tcl-Webserver/3.4.2) | 1 |
AV_Receiver/3.1 (RX-V671) | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN33JB4J3H05MX; Thomson_pp_usr_hf Built:Mon Dec 05, 2011 04:30:05PM {TSP1FN1148IR, ASIC id 0x00320104} | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.4.20-1+debphp.org~precise+1 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0g DAV/2 | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.15 | 1 |
nginx/0.9.5 | 1 |
Apache-Coyote/1.1, CJServer/1.1 | 1 |
Apache/2.2.11 (Win32) mod_aspdotnet/2.2 | 1 |
Web Server 1.0 | 1 |
Apache/2.4.9 (FreeBSD) OpenSSL/1.0.1h-freebsd mod_wsgi/3.5 Python/2.7.8 PHP/5.4.30 | 1 |
Cygnus X-1 | 1 |
AbaSioux/2010.00 | 1 |
Apache/2.2.26 (Win32) mod_fastcgi/2.4.6 mod_ssl/2.2.26 OpenSSL/0.9.8y | 1 |
Poland-KCB-Chorzowska-Athens-North | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN4487C6VM0602; Morgan_pendiag_pp Built:Mon Oct 27, 2014 08:44:08AM {MGP5CN1444AR, ASIC id 0x003a0008} | 1 |
Apache/2.0.55 (Unix) PHP/4.4.7 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips PHP/5.2.17 | 1 |
HP HTTP Server; HP Deskjet 2540 series – A9U22A; Serial Number: CN39Q2DKCP0604; Built:Tue Jun 18, 2013 09:32:43AM {CBP1FN1325AR} | 1 |
HP HTTP Server; HP Officejet 6600 – CZ155A; Serial Number: CN39C7QG1C05RN; Margarita_mid_mp2 Built:Tue Apr 15, 2014 05:09:06PM {MIM2CN1416AR, ASIC id 0x003a0008} | 1 |
Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8a DAV/2 | 1 |
Asterisk/ | 1 |
Apache/2.4.6 (CentOS) Phusion_Passenger/4.0.50 | 1 |
Apache/2.2.22 (Trisquel_GNU/Linux) | 1 |
HP HTTP Server; HP Photosmart B110 series – CN245B; Serial Number: CN09H2H60905J8; Chiplus_usr_hf Built:Tue Nov 06, 2012 11:45:41AM {CHL1FN1244AR, ASIC id 0x00280004} | 1 |
Apache/2.0.63 (Unix) DAV/2 mod_watch/4.3 PHP/5.2.14 | 1 |
Stackfast | 1 |
Apache/2.2.14 (Unix) PHP/5.2.16 | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CM755A; Serial Number: CN0C8AR0HR; Lorentz_base_pp_usr_hf Built:Wed Aug 01, 2012 03:26:12PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8o PHP/5.4.30 | 1 |
Apache/2.4.3 (Unix) OpenSSL/1.0.1g PHP/5.4.9 | 1 |
U S Software Web Server | 1 |
Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.5.17 | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.3.6 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.0 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN3AQEVJS9060M; Thomson_pp_usr_hf Built:Fri May 31, 2013 06:16:21PM {TSP1FN1322CR, ASIC id 0x00320104} | 1 |
Apache/2.2.17 (Win32) DAV/2 mod_ssl/2.2.17 OpenSSL/0.9.8q PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.10 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN2CIBVGHN05MX; Thomson_pp_usr_hf Built:Mon Dec 05, 2011 04:30:05PM {TSP1FN1148IR, ASIC id 0x00320104} | 1 |
Apache/2.0.63 (Unix) DAV/2 PHP/5.3.0 mod_watch/4.3 | 1 |
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4 mod_wsgi/3.4 Python/2.7.3 | 1 |
Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/0.9.8r mod_cluster/1.2.6.Final | 1 |
Benuks | 1 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.2.12 | 1 |
lighttpd/1.4.23-devel-158886 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 PHP/5.6.2 mod_jk/1.2.37 | 1 |
Apache/2.4.6 (Fedora) PHP/5.5.1 Phusion_Passenger/3.0.21 | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch7 mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.18 | 1 |
Apache/2.2.14 (Win32) mod_jk/1.2.29 PHP/5.2.5 | 1 |
Resin/3.1.6 | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN1CS1K0G705MX; Thomson_pp_usr_hf Built:Tue Aug 09, 2011 12:04:49AM {TSP1FN1131AR, ASIC id 0x00320104} | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.3.27 | 1 |
WEBrick/1.3.1 (Ruby/1.8.7/2011-06-30) | 1 |
Apache/2.4.9 (Fedora) PHP/5.5.15 | 1 |
ArisDario Server for Master Sport | 1 |
Nginx/Ascentia Web 1 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN41HFW2NW05KC; Coulomb_base_kaiser_pendiag_pp Built:Wed Aug 21, 2013 06:30:18PM {CKP5CN1334ER, ASIC id 0x00320104} | 1 |
HomeLogic Gateway | 1 |
Abyss/2.8.0.5-X2/B2-Win32 AbyssLib/2.8.0.1 | 1 |
HP HTTP Server; HP Deskjet 3070 B611 series – CQ191B; Serial Number: CN1AQ4723L05MQ; Munich_mp1 Built:Thu Apr 28, 2011 03:49:36PM {MUM1FN1117BR, ASIC id 0x00340100} | 1 |
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16.buffetti | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_wsgi/3.3 Python/2.6.6 mod_bwlimited/1.4 | 1 |
Apache/2.4.7 (Ubuntu) SVN/1.8.8 PHP/5.5.9-1ubuntu4.5 OpenSSL/1.0.1f | 1 |
Apache/2.2.23 (Fedora) DAV/2 PHP/5.4.17 | 1 |
Apache/2.2.4 (Unix) DAV/2 PHP/5.2.9 | 1 |
Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8i JRun/4.0 | 1 |
Apache/2.4.4 (Win32) PHP/5.4.15 | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0f DAV/2 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_mono/2.6.3 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 1 |
Apache/2.2.17 (Unix) DAV/2 PHP/5.3.8 mod_perl/2.0.5 Perl/v5.12.3 | 1 |
Apache/1.3.34 (Debian) PHP/5.2.3 | 1 |
Apache/2.2.25 (Win32) mod_jk/1.2.39 mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
Apache/2.2.22 (Win32) PHP/5.3.28 | 1 |
IBM HTTP Server/V5R3M0 | 1 |
Apache/2.2.9 (Debian) PHP/4.4.4-8+etch6 mod_python/3.3.1 Python/2.5.2 | 1 |
Apache/2.2.18 (Unix) mod_ssl/2.2.18 OpenSSL/0.9.8p DAV/2 SVN/1.6.15 mod_fastcgi/2.4.2 PHP/5.2.17 | 1 |
Linux, HTTP/1.1, DIR-815 Ver 1.01SS | 1 |
Apache/2.0.58 (FreeBSD) PHP/4.4.2 mod_ssl/2.0.58 OpenSSL/0.9.7e-p1 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.4.9 (Ubuntu) mod_fastcgi/mod_fastcgi-SNAP-0910052141 Phusion_Passenger/4.0.10 PHP/5.5.14-2+deb.sury.org~precise+1 OpenSSL/1.0.1 | 1 |
Apache/2.2.19 (CentOS) | 1 |
Apache/2.2.25 (Win32) mod_ssl/2.2.25 OpenSSL/0.9.8y PHP/5.4.26 | 1 |
Apache/2.2.3 (Unix) PHP/5.3.2 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.12 mod_wsgi/3.4 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.2 | 1 |
Apache/2.2.21 (Win64) | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 PHP/5.2.0 mod_jk/1.2.39 | 1 |
Oracle-Application-Server-11g Oracle-Web-Cache-11g/11.1.1.4.0 (G;max-age=0+0;age=0;ecid=73000851656733768,0:1:1) | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.0 (G;max-age=0+0;age=0;ecid=3695264451826,0) | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=10;ecid=1047633100721,1) | 1 |
Apache/2.2.26 (Win32) mod_ssl/2.2.26 OpenSSL/1.0.1e mod_ftp/0.9.6 | 1 |
Embedded HTTP Server 4.01.44 | 1 |
Apache/2.0.48 (Win32) | 1 |
Apache/2.2.3 (Win32) DAV/2 mod_autoindex_color PHP/4.4.4 | 1 |
Apache/2.2.15 (Win32) PHP/5.2.14 | 1 |
Zope/(unreleased version, python 2.4.4, linux2) ZServer/1.1 Plone/3.3.5 | 1 |
Apache/2.0.63 (FreeBSD) PHP/4.4.7 with Suhosin-Patch | 1 |
Apache/2.0.61 (Unix) PHP/4.4.7 | 1 |
Apache/2.4.7 (Ubuntu) mod_wsgi/4.4.6 Python/3.4.0 | 1 |
Apache/2.4.7 (Ubuntu) SVN/1.8.8 mod_jk/1.2.37 PHP/5.5.9-1ubuntu4.4 OpenSSL/1.0.1f | 1 |
lighttpd/1.4.33-devel-12153 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.3.19 mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 1 |
OTENET OnDSL Live Camera | 1 |
ArchiMED – Agenda Web | 1 |
HP HTTP Server; HP Photosmart Prem C410 series – CQ521A; Serial Number: CN0CDD103L05KV; Vadermlk_usr_hf Built:Tue May 24, 2011 09:10:31AM {VAx2FN1121AR, ASIC id 0x00280004} | 1 |
Oracle-Web-Cache-11g/11.1.1.6.0 (N;ecid=3263515055005397,0:1) | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips Phusion_Passenger/4.0.14 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 | 1 |
JAWS/1.0 Mar 6 2014 | 1 |
Apache/2.2.25 (Amazon) | 1 |
HP HTTP Server; HP Officejet 6500 E710n-z – CN557A; Serial Number: CN1C6354BS05JW; Chianti_pp_usr_hf Built:Tue Jun 28, 2011 11:12:36AM {CIP1FN1126AR, ASIC id 0x001c2105} | 1 |
Apache/2.0.50 (Linux/SUSE) | 1 |
Linux, HTTP/1.1, DIR-645 Ver 1.03 | 1 |
Apache/1.3.37 (Unix) PHP/5.1.6 with Suhosin-Patch | 1 |
Oracle-Application-Server-10g/10.1.2.3.0 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.3.2 (TH;max-age=2592000+0;age=9;ecid=433453334107,1) | 1 |
Apache/2.2.20 (Unix) mod_jk/1.2.37 mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.16 | 1 |
pkern-nginx | 1 |
playchess | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/1.0.0-fips DAV/2 mod_jk/1.2.37 | 1 |
HP HTTP Server; HP HP Officejet Pro 8620 – A7F65A; Serial Number: CN41BB600G; Built:Thu Dec 05, 2013 01:31:41PM {FDP1CN1348CR} | 1 |
FCS-3000 Day/Night IP Dome Camera | 1 |
HP HTTP Server; HP ENVY 110 series – CQ809B; Serial Number: CN276C201T05QS; Serenity_pp Built:Tue Oct 04, 2011 07:32:22PM {SEP1CN1140BR, ASIC id 0x0038000c} | 1 |
Data ONTAP/7.3.2 | 1 |
HP HTTP Server; HP ENVY 4500 series – A9T80B; Serial Number: CN3AM2R47805X4; Built:Tue Jul 22, 2014 11:55:10AM {MKM1FN1430ER} | 1 |
Grandstream BT200 1.2.1.4 | 1 |
radex/0.1 | 1 |
Apache Tomcat/4.0-b7 (HTTP/1.1 Connector) | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1k-fips PHP/5.6.5 | 1 |
mcas/3.0 (RTS300NE Ver 4.63; B2BUA; NTTEAST/NTTWEST) | 1 |
Apache/2.2.3 (Ubuntu) mod_jk/1.2.18 PHP/5.2.1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1e-fips PHP/5.3.27 | 1 |
Apache/2.2.9 (Debian) PHP/4.4.4-8+etch6 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Oracle GlassFish Server 3.0.1 | 1 |
Apache/2.2.22 (Win32) PHP/5.3.17 DAV/2 SVN/1.6.6 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/1.0.0-fips mod_bwlimited/1.4 mod_perl/2.0.6 Perl/v5.10.1 | 1 |
Apache/2.4.9 (Unix) PHP/5.5.13 OpenSSL/1.0.1e-fips | 1 |
Apache/1.3.34 (Debian) mod_gzip/1.3.26.1a PHP/5.2.0-8+etch16 mod_throttle/3.1.2 mod_perl/1.29 | 1 |
ScreenConnect/4.4.7175.5302-1344472039 Microsoft-HTTPAPI/2.0 | 1 |
Apache/1.3.27 (Unix) (Red-Hat/Linux) | 1 |
Helix Mobile Server/14.3.0.268 (win-x86_64-vc10) | 1 |
Apache/2.2.22 (Win32) DAV/2 mod_ssl/2.2.22 OpenSSL/0.9.8t PHP/5.2.17 | 1 |
JAWS/1.0 May 9 2014 | 1 |
Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.8e DAV/2 PHP/5.2.5 mod_jk/1.2.21 | 1 |
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 SVN/1.7.7 | 1 |
EWS-NIC4/13.13 | 1 |
nginx/1.6.2 + Phusion Passenger 5.0.5 | 1 |
sws | 1 |
David-WebBox/11.00a (0679) | 1 |
squid/3.2.11 | 1 |
PRTG/13.1.1.1089 | 1 |
ecu | 1 |
Mbedthis-Appweb/0.0.0 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1f PHP/5.6.2 | 1 |
Apache/2.2.9 (Debian) mod_python/3.3.1 Python/2.5.2 mod_perl/2.0.4 Perl/v5.10.0 | 1 |
Apache/2.4.10 (Win32) PHP/5.5.17 | 1 |
Apache/2.2.24 (FreeBSD) mod_ssl/2.2.24 OpenSSL/0.9.8n DAV/2 PHP/5.3.22 with Suhosin-Patch | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips PHP/5.2.17 | 1 |
HP HTTP Server; HP HP Officejet Pro 8610 – A7F64A; Serial Number: CN45ABW16Z; Built:Tue Apr 15, 2014 04:30:24PM {FDP1CN1416AR} | 1 |
China-Webber /0.0 | 1 |
Apache/2.2.21 (Unix) PHP/5.3.9-ZS5.6.0 mod_ssl/2.2.21 OpenSSL/0.9.8o | 1 |
RealVNC/E4 | 1 |
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1i DAV/2 PHP/5.6.4 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.7l DAV/2 PHP/5.2.15 | 1 |
LANCOM WLC-4006 8.80.0157 / 16.04.2013 | 1 |
Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.8h | 1 |
Apache/2.4.6 (CentOS) PHP/5.6.5 | 1 |
Apache/2.2.15 (CentOS) DAV/2 PHP/5.3.21 | 1 |
Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/1.0.1h | 1 |
Apache/2.4.9 (Ubuntu) PHP/5.5.14-1+deb.sury.org~saucy+1 | 1 |
HeiTel GmbH Web Server [V1.26/V1.15/V1.7] | 1 |
JDC server | 1 |
Apache/2.0.55 (Unix) PHP/4.4.2 | 1 |
IPOffice/8.0(53) | 1 |
PicLan-IP 2.0.0 (build 171) | 1 |
Apache/2.2.17 (Win32) mod_jk/1.2.26 | 1 |
Apache/2.2.16 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch | 1 |
Served by Mr Wilson | 1 |
THEOS HTTP Server/5.0.212 | 1 |
Astra | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_wsgi/3.3 Python/2.6.6 mod_bwlimited/1.4 PHP/5.3.24 | 1 |
BaseHTTP/0.3 Python/2.5.2 | 1 |
Hiawatha v7.8.2 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.25 OpenSSL/0.9.8y | 1 |
IPConsult HTTP Server 7.1.89.20 | 1 |
Apache/2.0.52 (Win32) PHP/5.0.5 | 1 |
NWS_CDN_TEST | 1 |
Apache/2.2.3 (Debian) mod_python/3.2.10 Python/2.4.4 PHP/5.2.0-8+etch10 mod_perl/2.0.2 Perl/v5.8.8 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_fcgid/2.3.9 | 1 |
JAWS/1.0 Jul 24 2013 | 1 |
nginx/1.5.12 + Phusion Passenger 4.0.19 | 1 |
Guggenheim-Seattle | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8zb DAV/2 SVN/1.6.21 | 1 |
Apache/2.2.22 (Debian) DAV/2 SVN/1.6.17 mod_fcgid/2.3.6 Phusion_Passenger/3.0.13 PHP/5.4.4-14+deb7u3 mod_ssl/2.2.22 OpenSSL/1.0.1e | 1 |
Apache/2.2.6 (Unix) PHP/5.2.4 | 1 |
Apache/2.4.10 (Win64) PHP/5.4.8 | 1 |
Apache/2.4.10 (Unix) PHP/5.4.32 | 1 |
Serv-U/11.0.0.0 | 1 |
Apache/2.2.21 (Win32) PHP/5.3.17 | 1 |
Apache/2.2.6 (FreeBSD) mod_ssl/2.2.6 OpenSSL/0.9.7e-p1 DAV/2 PHP/4.4.8 with Suhosin-Patch | 1 |
Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips PHP/5.2.10 | 1 |
Apache/2.2.19 (Win32) mod_fcgid/2.3.6 | 1 |
lighttpd/1.4.32 – Palapa Web Server (http://alfanla.com) | 1 |
CallCenterEasy/1.4.2.2 | 1 |
Apache/2.0.65 (Win32) mod_jk/1.2.32 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch | 1 |
Apache/2.2.22 (Win32) PHP/5.3.20 | 1 |
HFS 2.2a | 1 |
Prozeda c200 | 1 |
HttpComponents/1.1 | 1 |
Apache/2.0.61 (Unix) DAV/2 PHP/4.4.9 | 1 |
nginx/1.0.7 | 1 |
Apache/2.2.15 (CentOS) DAV/2 mod_jk/1.2.37 mod_ssl/2.2.15 OpenSSL/1.0.0-fips | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1g PHP/5.5.11 SVN/1.8.8 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.2.17 with Suhosin-Patch mod_ssl/2.2.23 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.2.24 (Unix) DAV/2 PHP/5.3.26 SVN/1.6.17 mod_ssl/2.2.24 OpenSSL/0.9.8y | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN28J125PK05SY; Stuttgart_pp_usr_hf Built:Mon Oct 15, 2012 11:37:04AM {STP1FN1241BR, ASIC id 0x00340104} | 1 |
Apache/2.2.25 (Win32) PHP/5.4.30 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8g PHP/5.3.13 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN41C710W70602; Morgan_pendiag_pp Built:Mon Oct 27, 2014 08:44:08AM {MGP5CN1444AR, ASIC id 0x003a0008} | 1 |
HP HTTP Server; HP Deskjet 3520 series – CX052B; Serial Number: CN27D111KQ05SY; Stuttgart_pp Built:Fri Mar 30, 2012 03:40:38AM {STP1FN1213HR, ASIC id 0x00340104} | 1 |
HP HTTP Server; HP Officejet Pro 8100 – CM752A; Serial Number: CN3CBFVH6405MX; Thomson_kaiser_pendiag_pp Built:Thu Aug 22, 2013 02:06:39PM {TKP5FN1334BR, ASIC id 0x00320104} | 1 |
Apache/2.2.14 (Win32) mod_wsgi/3.0 Python/2.6.5 PHP/5.3.2 | 1 |
Apache/2.2.2 (Unix) DAV/2 PHP/5.2.17 | 1 |
Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/1.0.1e-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_qos/10.10 mod_perl/2.0.6 Perl/v5.10.1 | 1 |
Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.8e-fips-rhel5 PHP/5.3.10 | 1 |
OverSIP/1.4.1 | 1 |
AV_Receiver/3.0 (RX-V3067) | 1 |
Apache/1.3.37 (Unix) PHP/4.4.6 | 1 |
Gordian Embedded1.0 | 1 |
Apache/2.2.6 (Unix) PHP/5.2.3 core-innes/1.11.12 webfeed-innes/1.11.10 wsman-innes/1.11.13 Ftpd-innes/0.13.1-6 DAV/2 mod_ssl/2.2.6 OpenSSL/0.9.8e-fips-rhel5 | 1 |
PTP | 1 |
ODERLAND Apache | 1 |
Codestuff/3.0.1851.148 | 1 |
Apache/1.3.34 (Unix) mod_ssl/2.8.25 OpenSSL/0.9.7d | 1 |
Apache/2.2.23 (Unix) Resin/3.0.24 | 1 |
Linux, HTTP/1.1, DHP-W310AV Ver 1.01 | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/1.0.0c DAV/2 | 1 |
Tandberg Television Web server | 1 |
spark@rc-0.4 | 1 |
Apache/2.2.14 (Win32) mod_fcgid/2.3.6 | 1 |
Apache/2.4.9 (Unix) PHP/5.5.20 OpenSSL/0.9.8za | 1 |
JAWS/1.0 Aug 2 2013 | 1 |
Apache/1.3.37 (Unix) PHP/4.4.7 | 1 |
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.2 with Suhosin-Patch mod_ssl/2.2.14 OpenSSL/0.9.8k | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN2A5167LS05ST; Morgan_pp Built:Thu Dec 19, 2013 10:03:32PM {MGP1CN1351AR, ASIC id 0x003a0008} | 1 |
Apache/2.4.10 (Linux/SUSE) | 1 |
Apache/2.2.22 (Unix) PHP/5.2.16 DAV/2 | 1 |
Apache/2.4.9 (Ubuntu) PHP/5.5.12-1+deb.sury.org~precise+1 mod_wsgi/3.4 Python/2.7.3 | 1 |
Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 mod_jk/1.2.26 mod_ssl/2.2.9 OpenSSL/0.9.8g | 1 |
Apache/2.2.25-3-beget (Unix) | 1 |
Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r PHP/5.3.8 | 1 |
PBX/5.2.3 (Debian32) | 1 |
ScreenConnect/4.1.6060.5144-4094459301 Microsoft-HTTPAPI/2.0 | 1 |
Loxone 6.2.12.2 | 1 |
IBM-HTTP-Server/1.0 | 1 |
Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips PHP/5.1.4 | 1 |
ARC-4C 1.13 | 1 |
Apache/2.2.17 (FreeBSD) mod_ssl/2.2.17 OpenSSL/0.9.8n DAV/2 PHP/5.2.17 with Suhosin-Patch | 1 |
Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.0.2 (G;max-age=0+0;age=0;ecid=84715497113,0) | 1 |
G-Presto/1.0 | 1 |
Apache/2.2.25 (Win32) PHP/5.4.20 | 1 |
Plexworks/1.0 | 1 |
Jetty(8.0.1.v20110908) | 1 |
Apache/2.4.9 (Unix) OpenSSL/1.0.1e-fips PHP/5.4.30 | 1 |
Apache/2.2.8 (Win32) mod_ssl/2.2.8 OpenSSL/0.9.8g PHP/5.2.6 DAV/2 | 1 |
TELES dynamic HTML httpd/1.01 | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 PHP/5.2.9 | 1 |
LANCOM 1711+ VPN 8.00.0221 / 07.10.2010 | 1 |
lighttpd/1.4.29-devel-103 | 1 |
Apache/2.2.24 (FreeBSD) PHP/5.4.15 mod_wsgi/3.4 Python/2.7.3 mod_jk/1.2.37 mod_ssl/2.2.24 OpenSSL/0.9.8q DAV/2 | 1 |
Apache/2.4.10 (Win64) OpenSSL/1.0.1j PHP/5.6.3 | 1 |
Apache/2.0.53 (FreeBSD) PHP/4.3.10 | 1 |
HP HTTP Server; HP Officejet Pro 8600 – CM749A; Serial Number: CN348BXG6W05KC; Coulomb_base_pp Built:Thu Aug 28, 2014 02:09:39PM {CLP1CN1435AR, ASIC id 0x00320104} | 1 |
Werkzeug/0.8.3 Python/2.6.5 | 1 |
Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze22 with Suhosin-Patch mod_ssl/2.2.16 OpenSSL/0.9.8o | 1 |
RepatchD Powered By JaeHo Song | 1 |
Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 mod_jk/1.2.31 | 1 |
miru_http/1.0 | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042A; Serial Number: CN34D145ZC0602; Morgan_pp Built:Mon Oct 27, 2014 08:28:54AM {MGP1CN1444AR, ASIC id 0x003a0008} | 1 |
David-WebBox/12.00a (0935) WIN32 | 1 |
Apache/2.2.22 (Win32) mod_aspdotnet/2.2 | 1 |
Allegro-Software-RomPager/4.30 | 1 |
Apache/2.4.9 (Fedora) OpenSSL/1.0.1e-fips mod_nss/2.4.6 NSS/3.15.3 Basic ECC PHP/5.5.13 mod_wsgi/3.4 Python/2.7.5 mod_perl/2.0.9-dev Perl/v5.18.4 | 1 |
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 mod_jk/1.2.40 | 1 |
Apache/2.4.6 (Unix) OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.5.0 mod_ssl/2.2.25 OpenSSL/0.9.8x DAV/2 | 1 |
Apache/2.2.8 (EL) | 1 |
Apache/1.3.37 (Unix) PHP/4.4.2 mod_ssl/2.8.28 OpenSSL/0.9.8e-fips-rhel5 | 1 |
HP HTTP Server; HP Officejet Pro 8500 A910 – CQ840A; Serial Number: CN1BLDM0G9; Lorentz_base_pp_usr_hf Built:Wed Aug 01, 2012 03:26:12PM {LRP1FN1231AR, ASIC id 0x00320104} | 1 |
HP HTTP Server; HP Officejet 7500 E910 – C9309A; Serial Number: MY27B310ZF05JB; Edelman_pp1_usr_hf Built:Thu Feb 02, 2012 08:12:02AM {EMP1FN1206AR, ASIC id 0x001c2105} | 1 |
Apache/1.3.33 (Unix) mod_jk/1.2.10 | 1 |
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.5 | 1 |
Apache/2.2.25 (Unix) mod_ssl/2.2.25 OpenSSL/0.9.8za | 1 |
Resin/4.0.37 | 1 |
Nginxweb | 1 |
Oracle_WebDb_Listener/2.1 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.4.4 | 1 |
Apache/2.2.3 (Debian) PHP/4.4.4-8+etch6 mod_ssl/2.2.3 OpenSSL/0.9.8c | 1 |
Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.4.11 mod_jk/1.2.14 | 1 |
ListManagerWeb/11.0 (based on Tcl-Webserver/3.4.2) | 1 |
Apache/2.2.3 (CentOS) DAV/2 | 1 |
Korea WebServer/Enterprise(FreeBSD) | 1 |
HP HTTP Server; HP Photosmart 5520 series – CX042B; Serial Number: CN3CO6C4RB0602; Morgan_pendiag_pp Built:Thu Dec 19, 2013 10:03:27PM {MGP5CN1351AR, ASIC id 0x003a0008} | 1 |
MONAE35-01 | 1 |
Apache/2.0.59 (Trustix Secure Linux/Linux) | 1 |
Apache/2.4.10 (FreeBSD) PHP/5.5.16 SVN/1.8.10 | 1 |
CherryPy/3.1.3 | 1 |
Apache/2.4.3 (Unix) PHP/5.4.26 | 1 |
DH | 1 |
LANCOM 1751 UMTS 8.80.0159 / 19.04.2013 | 1 |
Apache/2.4.6 (Ubuntu) PHP/5.5.5-1+debphp.org~precise+2 OpenSSL/1.0.1 | 1 |
Apache/2.2.17 (Win32) PHP/5.2.7 | 1 |
Apache/2.2.22 (Ubuntu) PHP/5.4.34-1+deb.sury.org~precise+1 mod_ssl/2.2.22 OpenSSL/1.0.1 | 1 |
Apache/2.4.6 (Ubuntu) SVN/1.7.9 PHP/5.5.3-1ubuntu2.6 mod_python/3.3.1 Python/2.7.5+ OpenSSL/1.0.1e | 1 |
iCatcher Console/5.3.26 | 1 |
Apache/2.0.63 (Unix) DAV/2 PHP/4.4.2 | 1 |
Easy File Sharing Web Server v1.24 | 1 |
Apache/2.4.6 (CentOS) mod_auth_kerb/5.4 mod_nss/2.4.6 NSS/3.15.4 Basic ECC mod_wsgi/3.4 Python/2.7.5 | 1 |
CAEhttpd | 1 |
$ProjectRevision: 4.2 $ | 1 |
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8g DAV/2 PHP/5.3.17 | 1 |
e@sy-pro v6.0.4 28/06/2012 | 1 |
Apache/2.2.26 (FreeBSD) PHP/5.4.13 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 | 1 |
Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8g PHP/5.2.10 proxy_html/3.1.2 | 1 |
Apache/2.2.29 (FreeBSD) PHP/5.4.32 mod_ssl/2.2.29 OpenSSL/0.9.8za-freebsd DAV/2 | 1 |
nginx/0.8.53 + Phusion Passenger 3.0.0 (mod_rails/mod_rack) | 1 |
Apache/2.2.23 (FreeBSD) SVN/1.7.8 mod_python/3.3.1 Python/2.7.3 PHP/5.4.11 mod_ssl/2.2.23 OpenSSL/0.9.8e DAV/2 | 1 |
Apache/2.4.10 (Debian) PHP/5.6.0RC4 mod_scgi/1.13 OpenSSL/1.0.1i | 1 |
Apache/2.4.10 (Fedora) OpenSSL/1.0.1e-fips PHP/5.5.21 SVN/1.8.11 mod_wsgi/3.5 Python/2.7.5 | 1 |
NET-DK/1.0 | 1 |
HP HTTP Server; HP Officejet 7110 series – CR768A; Serial Number: CN3CO3MG6W05R1; Built:Fri May 31, 2013 07:34:28PM {EIP1FN1322BR} | 1 |
kozaczek.pl | 1 |
Apache/1.3.41 (Unix) PHP/4.3.10 | 1 |
BMR/1.00 | 1 |
Apache/2.2.22 (Unix) PHP/5.2.17 DAV/2 mod_jk/1.2.21 | 1 |
CR800.Std.26 | 1 |
Apache/2.2.27 (Gentoo) | 1 |
Apache/2.4.9 (Unix) PHP/5.4.29 | 1 |
Apache/2.2.11 (Win32) PHP/5.3.1 | 1 |
TS@NetFUNNEL/2.4.2 | 1 |
Apache/2.4.9 (FreeBSD) OpenSSL/1.0.1i PHP/5.5.15 | 1 |
Apache/2.2.21 (FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.7e-p1 DAV/2 mod_jk/1.2.23 PHP/5.3.8 with Suhosin-Patch | 1 |
cspw | 1 |
Apache/2.2.17 (Unix) DAV/2 mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.31 | 1 |
HP HTTP Server; HP Deskjet 3070 B611 series – CQ191B; Serial Number: CN1CN6C4WN05MQ; Munich_mp1 Built:Thu Apr 28, 2011 03:49:36PM {MUM1FN1117BR, ASIC id 0x00340100} | 1 |
Ecogeek-HTTP/19.3.3 | 1 |
HP HTTP Server; HP HP Officejet Pro 8660 – E1D36A; Serial Number: CN474C6027; Built:Tue Apr 15, 2014 04:41:23PM {FDP1CN1416AR} | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.7a DAV/2 PHP/5.2.14 | 1 |
Apache/1.3.42 (Unix) PHP/4.3.11 | 1 |
Apache/2.2.25 (FreeBSD) PHP/5.4.19 mod_ssl/2.2.25 OpenSSL/0.9.8x DAV/2 mod_wsgi/2.8 Python/2.7.5 | 1 |
PRTG/14.4.12.3410 | 1 |
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 | 1 |
LANCOM 1823 VoIP (Annex B) 8.80.0157 / 16.04.2013 | 1 |
Apache/2.2.23 (Win32) | 1 |
Apache/2.4.7 (Win32) PHP/5.5.6 | 1 |
Apache/2.0.54 (Unix) mod_ssl/2.0.54 OpenSSL/0.9.7e DAV/2 PHP/5.3.2 | 1 |
Apache/2.2.23 (FreeBSD) PHP/5.3.18 with Suhosin-Patch mod_ssl/2.2.23 OpenSSL/0.9.8y DAV/2 | 1 |
Jak widać niewiele osób dba o produkcyjne nagłówki w swoich serwerach zdradzając nie tylko wersje daemonów httpd, ale również inne oprogramowanie obsługujące ich języki programowania, czy rodzaje i wersje urządzeń.
Więcej informacji: httpd1to5.log.gz