├── .gitattributes ├── COPYING.TXT ├── Concat.cls ├── README.md ├── config └── default.cfg ├── config_templates ├── agent_names.contem ├── long_request_length.contem ├── methods_not_allowed.contem ├── methods_not_existing.contem ├── protocols_wrong.contem ├── resources_attack_item.contem ├── resources_available.contem └── resources_not_available.contem ├── curhand.cur ├── database ├── attack_request │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── delete_existing │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── options-allowed.fdb │ ├── options-delimited.fdb │ ├── options-public.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── get_existing │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── get_long │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── get_nonexisting │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── head_existing │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── options-public.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── htrdbc.sh ├── options │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── options-allowed.fdb │ ├── options-delimited.fdb │ ├── options-public.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── wrong_method │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── options-allowed.fdb │ ├── options-delimited.fdb │ ├── options-public.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb └── wrong_version │ ├── accept-range.fdb │ ├── banner.fdb │ ├── cache-control.fdb │ ├── connection.fdb │ ├── content-type.fdb │ ├── etag-length.fdb │ ├── etag-quotes.fdb │ ├── header-capitalafterdash.fdb │ ├── header-order.fdb │ ├── header-space.fdb │ ├── htaccess-realm.fdb │ ├── pragma.fdb │ ├── protocol-name.fdb │ ├── protocol-version.fdb │ ├── statuscode.fdb │ ├── statustext.fdb │ ├── vary-capitalize.fdb │ ├── vary-delimiter.fdb │ ├── vary-order.fdb │ └── x-powered-by.fdb ├── frmAbout.frm ├── frmAbout.frx ├── frmConfiguration.frm ├── frmConfiguration.frx ├── frmConfiguration.log ├── frmDetails.frx ├── frmMain.frm ├── frmMain.frx ├── frmMain.log ├── frmReport.frm ├── frmReport.frx ├── frmReport.log ├── frmSave.frm ├── frmSave.frx ├── frmUpdate.frm ├── frmUpdate.frx ├── httprecon.vbp ├── httprecon.vbw ├── ico_buttons ├── btnconfigcancel.gif ├── btnconfigsave.gif ├── btndatabasecancel.gif ├── btndatabasesave.gif ├── btnreportcancel.gif ├── btnreportsave.gif ├── btnupdatecancel.gif ├── btnupdatecheck.gif ├── icoconfig.ico ├── icodatabase.ico ├── icoreport.ico ├── icoupdate.ico ├── pichitpointsmax.gif ├── pichitpointsmin.gif ├── piclongrequestchar.gif ├── piclongrequestlength.gif ├── picmethodnotallowed.gif ├── picmethodnotexisting.gif ├── picprotocollegitimate.gif ├── picprotocolwrong.gif ├── picresourceattack.gif ├── picresourceavailable.gif ├── picresourcenotavailable.gif ├── pictests.gif ├── pictimeoutconnect.gif ├── pictimeoutreceive.gif ├── pictimeoutsend.gif ├── picuseragentdetails.gif └── picuseragentname.gif ├── ico_webserver ├── 4d.gif ├── abyss.gif ├── allegro.gif ├── and.gif ├── antiweb.gif ├── aol.gif ├── apache.gif ├── axis.gif ├── badblue.gif ├── barracuda.gif ├── bea.gif ├── belkin.gif ├── boa.gif ├── bozohttpd.gif ├── caudium.gif ├── cherokee.gif ├── cisco.gif ├── clhttp.gif ├── compaq.gif ├── debian.gif ├── dell.gif ├── divar.gif ├── domino.gif ├── dwhttpd.gif ├── emule.gif ├── firecat.gif ├── flexwatch.gif ├── fnord.gif ├── freebsd.gif ├── gatling.gif ├── globalscape.gif ├── google.gif ├── hiawatha.gif ├── hp.gif ├── httpi.gif ├── ibm.gif ├── icewarp.gif ├── idhttp.gif ├── iis4_5.gif ├── iis51_6.gif ├── jana.gif ├── jetty.gif ├── konica.gif ├── lancom.gif ├── lexmark.gif ├── lighttpd.gif ├── linksys.gif ├── litespeed.gif ├── mikrotik.gif ├── mongrel.gif ├── net2phone.gif ├── netgear.gif ├── netopia.gif ├── netscape.gif ├── nginx.gif ├── novell.gif ├── omnihttpd.gif ├── oracle.gif ├── orion.gif ├── osu.gif ├── packetshaper.gif ├── philips.gif ├── publicfile.gif ├── python.gif ├── qnap.gif ├── resin.gif ├── ricoh.gif ├── roxen.gif ├── smc.gif ├── snap.gif ├── sonicwall.gif ├── sony.gif ├── squid.gif ├── stweb.gif ├── sun.gif ├── suse.gif ├── swat.gif ├── symantec.gif ├── tandberg.gif ├── tclhttpd.gif ├── thttpd.gif ├── tomcat.gif ├── tux.gif ├── ubicom.gif ├── unknown.gif ├── userland.gif ├── virtuoso.gif ├── vnc.gif ├── vqserver.gif ├── vswebserver.gif ├── w3c.gif ├── wdaemon.gif ├── webcamxp.gif ├── webrick.gif ├── wn.gif ├── xerver.gif ├── xitami.gif ├── yaws.gif ├── zeus.gif ├── zope.gif └── zyxel.gif ├── icohttprecon.ico ├── modAnalysisAccept.bas ├── modAnalysisAuthenticate.bas ├── modAnalysisBanner.bas ├── modAnalysisCache.bas ├── modAnalysisConnection.bas ├── modAnalysisEtag.bas ├── modAnalysisHeaders.bas ├── modAnalysisOptions.bas ├── modAnalysisProtocol.bas ├── modAnalysisStatus.bas ├── modBrowserCall.bas ├── modComboboxAutocomplete.bas ├── modConfiguration.bas ├── modDatabaseHandling.bas ├── modDirectoryBrowser.bas ├── modFileHandling.bas ├── modHttpConnectivity.bas ├── modHttpHandler.bas ├── modIdentification.bas ├── modIdentificationDetails.bas ├── modInputValidation.bas ├── modListViewSort.bas ├── modLogging.bas ├── modReporting.bas ├── modReportingCsv.bas ├── modReportingHtml.bas ├── modReportingTxt.bas ├── modReportingXml.bas ├── modTiming.bas └── scans ├── apache-1.3.26.fps ├── apache-2.2.3-centos.fps ├── apache-2.2.3-debian.fps ├── apache-2.2.8.fps ├── dreambox_dm600.fps ├── kget-2.1.3.fps ├── microsoft_iis-6.0.fps ├── vmware_esx_web_server.fps └── vnc_enterprise-e4.2.5 .fps /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /Concat.cls: -------------------------------------------------------------------------------- 1 | VERSION 1.0 CLASS 2 | BEGIN 3 | MultiUse = -1 'True 4 | Persistable = 0 'NotPersistable 5 | DataBindingBehavior = 0 'vbNone 6 | DataSourceBehavior = 0 'vbNone 7 | MTSTransactionMode = 0 'NotAnMTSObject 8 | END 9 | Attribute VB_Name = "Concat" 10 | Attribute VB_GlobalNameSpace = False 11 | Attribute VB_Creatable = True 12 | Attribute VB_PredeclaredId = False 13 | Attribute VB_Exposed = False 14 | Option Explicit 15 | 16 | Private Buffer As String 17 | Private BufferLen As Long 18 | Private Pointer As Long 19 | 20 | Public Sub Clear() 21 | Pointer = 1 22 | End Sub 23 | 24 | Public Sub Concat(ByRef Value As String) 25 | Dim PointerNew As Long 26 | 27 | PointerNew = Pointer + LenB(Value) 28 | 29 | If PointerNew > BufferLen Then 30 | Buffer = Buffer & Space$(PointerNew) 31 | BufferLen = LenB(Buffer) 32 | End If 33 | 34 | MidB$(Buffer, Pointer) = Value 35 | Pointer = PointerNew 36 | End Sub 37 | 38 | Public Property Get Length() As Long 39 | Length = Pointer \ 2 40 | End Property 41 | 42 | Public Property Get Value() As String 43 | Value = LeftB$(Buffer, Pointer - 1) 44 | End Property 45 | 46 | Private Sub Class_Initialize() 47 | Clear 48 | End Sub 49 | -------------------------------------------------------------------------------- /config/default.cfg: -------------------------------------------------------------------------------- 1 | # httprecon 7.3 configuration file 2 | # 3 | # Date 28.03.2010 4 | # Time 21:51:58 5 | # File C:\Users\mruef\development\httprecon-7.3\config\default.cfg 6 | # User mruef 7 | # 8 | # Disclaimer: This config file is generated automatically by the software 9 | # itself during runtime. Please do not manually edit these values unless you 10 | # do know what you are doing. Manual changes work only if the application is 11 | # not running. 12 | # 13 | # See the online help, documentation and the official project web site at 14 | # http://www.computec.ch/projekte/httprecon/ for more details. 15 | 16 | # Scan 17 | scan_targethost=www.scip.ch 18 | scan_targetport=80 19 | scan_targetsecure=0 20 | 21 | # Statistics 22 | app_hitpoints_minimum=7 23 | app_hitpoints_maximum=14 24 | 25 | # Tests 26 | scan_test_getexisting=1 27 | scan_test_getnonexisting=1 28 | scan_test_getlong=1 29 | scan_test_head=1 30 | scan_test_options=1 31 | scan_test_wrongmethod=1 32 | scan_test_nonexistingmethod=1 33 | scan_test_wrongprotocol=1 34 | scan_test_attack=1 35 | 36 | # Requests 37 | req_timeout_connect=4961 38 | req_timeout_send=4994 39 | req_timeout_receive=4952 40 | req_protocol_legitimate=HTTP/1.1 41 | req_protocol_wrong=HTTP/9.8 42 | req_resource_available=/ 43 | req_resource_notavailable=/uB6zG0.html 44 | req_resource_attack=/etc/passwd?format=%%%%&xss=">&traversal=../../&sql=' OR 1; 45 | req_longrequest_length=1024 46 | req_longrequest_char=u 47 | req_method_notallowed=DELETE 48 | req_method_notexisting=TEST 49 | req_agent_name=Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.12 50 | req_agent_noredirect=0 51 | 52 | # Timing 53 | time_decimals=3 54 | 55 | -------------------------------------------------------------------------------- /config_templates/long_request_length.contem: -------------------------------------------------------------------------------- 1 | 256 2 | 512 3 | 1024 4 | 2048 5 | 4096 6 | 8192 7 | 16384 -------------------------------------------------------------------------------- /config_templates/methods_not_allowed.contem: -------------------------------------------------------------------------------- 1 | DELETE 2 | PUT 3 | TRACE 4 | TRACK 5 | OPTIONS 6 | CONNECT 7 | PROPFIND 8 | PROPPATCH 9 | MKCOL 10 | COPY 11 | MOVE 12 | LOCK 13 | UNLOCK -------------------------------------------------------------------------------- /config_templates/methods_not_existing.contem: -------------------------------------------------------------------------------- 1 | TEST 2 | FOO 3 | BLAH 4 | ABCDE 5 | QWERTY -------------------------------------------------------------------------------- /config_templates/protocols_wrong.contem: -------------------------------------------------------------------------------- 1 | HTTP/9.8 2 | HTTP/1.9 3 | HTTP/X.Y -------------------------------------------------------------------------------- /config_templates/resources_attack_item.contem: -------------------------------------------------------------------------------- 1 | /etc/passwd?format=%%%%&xss="">&traversal=../../&sql=' OR 1; 2 | ../../etc/passwd 3 | /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir 4 | /forum.php?user= 5 | /forum.php?user=' OR 1; 6 | /%00 -------------------------------------------------------------------------------- /config_templates/resources_available.contem: -------------------------------------------------------------------------------- 1 | / 2 | /index.html 3 | /index.htm 4 | /index.php 5 | /index.php3 6 | /index.php4 7 | /index.php5 8 | /index.jsp 9 | /index.cgi 10 | /default.html 11 | /default.htm 12 | /default.asp 13 | /default.aspx 14 | /default.jsp 15 | /action.do -------------------------------------------------------------------------------- /config_templates/resources_not_available.contem: -------------------------------------------------------------------------------- 1 | /404test_.html 2 | /foo_.html 3 | /blah_.html 4 | /abcde_.html 5 | /qwerty_.html -------------------------------------------------------------------------------- /curhand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/curhand.cur -------------------------------------------------------------------------------- /database/attack_request/accept-range.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 4.5;bytes 2 | 4D WebSTAR 5.3.3;bytes 3 | Apache 1.3.26;bytes 4 | Apache 1.3.27;bytes 5 | Apache 1.3.33;bytes 6 | Apache 1.3.37;bytes 7 | Apache 2.0.45;bytes 8 | Apache 2.0.46;bytes 9 | Apache 2.0.49;bytes 10 | Apache 2.0.50;bytes 11 | Apache 2.0.51;bytes 12 | Apache 2.0.52;bytes 13 | Apache 2.0.53;bytes 14 | Apache 2.0.54;bytes 15 | Apache 2.0.59;bytes 16 | Apache 2.2.2;bytes 17 | Apache 2.2.3;bytes 18 | Apache 2.2.4;bytes 19 | Apache 2.2.6;bytes 20 | Apache 2.2.9;bytes 21 | Ashleys Webserver;bytes 22 | Barracuda Networks Spam Firewall;bytes 23 | Boa 0.94.14rc21;bytes 24 | Caudium 1.4.9;bytes 25 | IBM HTTP Server 2.0.47.1;bytes 26 | IBM HTTP Server 6.0.2.19;bytes 27 | lighttpd 1.4.16;bytes 28 | Lotus Domino Go Webserver 4.6.2.5;bytes 29 | Microsoft IIS 6.0;bytes 30 | Microsoft IIS 7.0;bytes 31 | NetBotz 320 thttpd 2.25b;bytes 32 | NetBotz 420 thttpd 2.25b;bytes 33 | NetBotz 500 thttpd 2.25b;bytes 34 | Oracle Application Server 10g 10.1.2.2.0;bytes 35 | Oracle Application Server 10g 10.1.3.1.0;bytes 36 | Orion 2.0.7;bytes 37 | QNAP GNS-8000A 4.1.4.0118;bytes 38 | QNAP NAS-2108R 2.27.1024;bytes 39 | QNAP NAS-4010 4.2.0.0606;bytes 40 | QNAP NAS-4100 2.26.0517;bytes 41 | QNAP TS-101 2.0.1.0302;bytes 42 | QNAP TS-101 2.1.0.612T;bytes 43 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 44 | QNAP TS-109 1.1.2.1009T;bytes 45 | QNAP TS-109 1.1.3.1101T;bytes 46 | QNAP TS-209 1.1.1.0831T;bytes 47 | QNAP TS-209 1.1.3.1101T;bytes 48 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 49 | QNAP TS-411U 1.2.0.0531;bytes 50 | Roxen 2.2.213;bytes 51 | Roxen 4.5.111;bytes 52 | Roxen 4.5.145;bytes 53 | Sun ONE Web Server 6.1;bytes 54 | thttpd 2.19-MX;bytes 55 | thttpd 2.20b;bytes 56 | thttpd 2.23beta1;bytes 57 | thttpd 2.24;bytes 58 | thttpd 2.26;bytes 59 | Virtuoso 5.0.3;bytes 60 | WallBotz 500 thttpd 2.25b;bytes 61 | Zeus 4.3;bytes 62 | Zeus 4.41;bytes 63 | -------------------------------------------------------------------------------- /database/attack_request/cache-control.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.5.0.0 X1;no-store, no-cache, must-revalidate 2 | AOLserver 3.4.2;no-cache, must-revalidate, post-check=0, pre-check=0 3 | AOLserver 4.0.10;max-age=0 4 | AOLserver 4.0.10;no-cache, no-store, private, max-age=0 5 | Apache 1.3.26;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 6 | Apache 1.3.26;post-check=0, pre-check=0 7 | Apache 1.3.33;max-age=60 8 | Apache 1.3.33;private 9 | Apache 1.3.34;no-cache 10 | Apache 1.3.37;private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 11 | Apache 2.0.46;max-age=3600 12 | Apache 2.0.52;no-cache, no-store, must-revalidate 13 | Apache 2.0.52;no-store, no-cache, must-revalidate, post-check=0, pre-check=0, private 14 | Apache 2.0.59;no-cache,no-store,max-age=0 15 | Apache 2.2.3;max-age=300 16 | Apache 2.2.3;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 17 | Apache 2.2.4;private, must-revalidate, max-age=0 18 | Apache 2.2.6;no-store, no-cache, must-revalidate 19 | Barracuda Networks Spam Firewall;no-cache,no-store 20 | Cherokee 0.6.0;no-cache 21 | Cherokee 0.99;no-cache 22 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;no-cache 23 | Cougar 9.5.6001.6264;max-age=0, no-cache 24 | FlexWATCH FW-3440-B;no-cache 25 | GlobalSCAPE Secure Server 3.3;private 26 | IBM HTTP Server 6.0.2.19;max-age=0, no-cache, no-store 27 | IceWarp 8.3.0;no-store, no-cache, must-revalidate 28 | Jetty 6.1.1;max-age=0, no-store 29 | KLone 2.1.0rc1;no-cache, must-revalidate 30 | lighttpd 1.4.18;must-revalidate, max-age=30 31 | lighttpd 1.4.18;no-cache, must-revalidate, max-age=0 32 | lighttpd 1.4.19;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 33 | lighttpd 1.4.22;no-store, no-cache, must-revalidate 34 | lighttpd 1.5.0;no-cache 35 | ListManagerWeb 8.8c;max-age=0 36 | LiteSpeed Web Server 3.3;private, no-cache, max-age=0 37 | Lotus Domino Go Webserver 4.6.2.5;no-cache 38 | Microsoft IIS 5.0;max-age=300 39 | Microsoft IIS 6.0;max-age=0, no-cache, no-store 40 | Microsoft IIS 6.0;no-cache 41 | Microsoft IIS 6.0;no-cache, no-store, must-revalidate, post-check=0, pre-check=0 42 | Microsoft IIS 6.0;private,max-age=0 43 | Microsoft IIS 7.0;max-age=600 44 | Microsoft IIS 7.0;no-cache 45 | Microsoft ISA Server 2006;no-cache 46 | NetBotz 320 thttpd 2.25b;no-cache,no-store 47 | NetBotz 420 thttpd 2.25b;no-cache,no-store 48 | NetBotz 500 thttpd 2.25b;no-cache,no-store 49 | nginx 0.5.32;max-age=0, no-cache, no-store 50 | nginx 0.5.33;no-cache, must-revalidate, max-age=0 51 | nginx 0.5.35;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 52 | nginx 0.6.16;no-cache, must-revalidate, max-age=0 53 | nginx 0.6.20;no-cache 54 | Oracle Application Server 10g 10.1.2.0.2;no-cache, max-age=0, must-revalidate, proxy-mustcheck 55 | Oracle Application Server 10g 10.1.2.2.0;max-age=0 56 | Oracle Application Server 9i 9.0.3.1;private 57 | PacketShaper httpd 1.00;no-cache 58 | Resin 2.1.17;no-cache 59 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 60 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 61 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 62 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 63 | Sun Java System Web Server 7.0;public, max-age=1800 64 | Sun ONE Web Server 6.1;max-age=600 65 | Sun ONE Web Server 6.1;max-age=7697 66 | thttpd 2.26;no-cache,no-store 67 | WallBotz 500 thttpd 2.25b;no-cache,no-store 68 | webcamXP PRO 2006 2.16.456x BETA;no-cache, must revalidate 69 | webcamXP PRO 2006 2.20.024;no-cache, must revalidate 70 | webcamXP PRO 2006 2.37.144;no-cache, must revalidate 71 | webcamXP PRO 2007 3.60.220;no-cache, must revalidate 72 | webcamXP PRO 2007 3.72.440;no-cache, must revalidate 73 | webcamXP PRO 2007 3.96.000 beta;no-cache, must revalidate 74 | Zope 2.10.4;max-age=10 75 | Zope 2.5.0;max-age=3600 76 | Zope 2.7.6;max-age=3600, must-revalidate 77 | Zope 2.7.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 78 | Zope 2.8.4;max-age=3600 79 | -------------------------------------------------------------------------------- /database/attack_request/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.26;" 2 | Apache 1.3.27;" 3 | Apache 1.3.33;" 4 | Apache 1.3.37;" 5 | Apache 2.0.45;" 6 | Apache 2.0.46;" 7 | Apache 2.0.49;" 8 | Apache 2.0.51;" 9 | Apache 2.0.52;" 10 | Apache 2.0.53;" 11 | Apache 2.0.54;" 12 | Apache 2.2.3;" 13 | Apache 2.2.4;" 14 | IBM HTTP Server 2.0.47.1;" 15 | IBM HTTP Server 6.0.2.19;" 16 | lighttpd 1.4.16;" 17 | lighttpd 1.4.18;" 18 | lighttpd 1.4.19;" 19 | Microsoft IIS 6.0;" 20 | Microsoft IIS 7.0;" 21 | Netscape Enterprise Server 4.1;" 22 | Oracle Application Server 10g 10.1.2.2.0;" 23 | Oracle Application Server 10g 10.1.3.1.0;" 24 | Roxen 4.5.111;" 25 | Sun ONE Web Server 6.1;" 26 | WN Server 2.4.7;" 27 | -------------------------------------------------------------------------------- /database/attack_request/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | GlobalSCAPE Secure Server 3.3;192.168.4.72 2 | KGet web interface 2.1.3;KGet Webinterface Authorization 3 | lighttpd 1.4.18;freenas 4 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 5 | SWAT 3.0.24;SWAT 6 | Tandberg Videoconference Management;InterMediaLab 7 | -------------------------------------------------------------------------------- /database/attack_request/pragma.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.5.0.0 X1;no-cache 2 | AOLserver 3.4.2;no-cache 3 | AOLserver 4.0.10;no-cache 4 | Apache 1.3.26;no-cache 5 | Apache 1.3.33;no-cache 6 | Apache 1.3.34;no-cache 7 | Apache 1.3.37;no-cache 8 | Apache 2.0.52;no-cache 9 | Apache 2.0.59;no-cache 10 | Apache 2.0.59;No-cache 11 | Apache 2.2.3;no-cache 12 | Apache 2.2.6;no-cache 13 | Cherokee 0.6.0;no-cache 14 | Cherokee 0.99;no-cache 15 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;no-cache 16 | Cougar 9.5.6001.6264;no-cache, xResetStrm=1 17 | Dell 1710n;no-cache 18 | Dell 3232;no-cache 19 | Dell M5200;no-cache 20 | FlexWATCH FW-3440-B;no-cache 21 | GlobalSCAPE Secure Server 3.3;no-cache 22 | IBM HTTP Server 6.0.2.19;no-cache 23 | IceWarp 8.3.0;no-cache 24 | Jana-Server 2.4.8.51;no-cache 25 | Jetty 6.1.1;no-cache 26 | KLone 2.1.0rc1;no-cache 27 | Lexmark C750;no-cache 28 | Lexmark E323;no-cache 29 | Lexmark T630;no-cache 30 | lighttpd 1.4.18;no-cache 31 | lighttpd 1.4.19;no-cache 32 | lighttpd 1.4.22;no-cache 33 | LiteSpeed Web Server 3.3;no-cache 34 | Lotus Domino Go Webserver 4.6.2.5;no-cache 35 | Microsoft IIS 6.0;no-cache 36 | Microsoft IIS 7.0;no-cache 37 | Microsoft ISA Server 2006;no-cache 38 | nginx 0.5.32;no-cache 39 | nginx 0.5.35;no-cache 40 | nginx 0.6.16;no-cache 41 | nginx 0.6.20;no-cache 42 | Novell Access Manager 3;no-cache 43 | Resin 2.1.17;no-cache 44 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 45 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 46 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 47 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 48 | Symantec Mail Security for SMTP;No-Cache 49 | webcamXP PRO 2006 2.16.456x BETA;no-cache 50 | webcamXP PRO 2006 2.20.024;no-cache 51 | webcamXP PRO 2006 2.37.144;no-cache 52 | webcamXP PRO 2007 3.60.220;no-cache 53 | webcamXP PRO 2007 3.72.440;no-cache 54 | webcamXP PRO 2007 3.96.000 beta;no-cache 55 | Zope 2.6.0;no-cache 56 | Zope 2.6.1;no-cache 57 | Zope 2.7.5;no-cache 58 | Zope 2.7.7;no-cache 59 | Zope 2.9.5;no-cache 60 | -------------------------------------------------------------------------------- /database/attack_request/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;1 2 | AOLserver 4.0.10;1 3 | Apache 1.3.26;0 4 | Apache 1.3.33;1 5 | Apache 2.0.52;1 6 | Apache 2.0.53;0 7 | Apache 2.0.54;0 8 | Apache 2.0.54;1 9 | Apache 2.0.55;1 10 | Apache 2.0.59;0 11 | Apache 2.0.63;1 12 | Apache 2.2.11;1 13 | Apache 2.2.2;0 14 | Apache 2.2.2;1 15 | Apache 2.2.3;0 16 | Apache 2.2.4;1 17 | Apache 2.2.6;0 18 | BaseHTTPServer 0.3;1 19 | lighttpd 1.4.19;1 20 | Microsoft IIS 6.0;1 21 | Mongrel 1.0;1 22 | nginx 0.5.33;1 23 | nginx 0.6.20;1 24 | nginx 0.7.35;1 25 | Oracle Application Server 10g 10.1.2.2.0;1 26 | Oracle Application Server 10g 10.1.3.1.0;0 27 | Roxen 4.5.145;0 28 | Zeus 4.3;1 29 | Zeus 4.41;0 30 | Zope 2.10.4;1 31 | Zope 2.7.6;1 32 | Zope 2.8.4;1 33 | Zope 2.8.6;1 34 | Zope 2.9.6;1 35 | -------------------------------------------------------------------------------- /database/attack_request/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;, 2 | Apache 1.3.26;, 3 | Apache 1.3.33;, 4 | Apache 1.3.34;, 5 | Apache 2.0.52;, 6 | Apache 2.0.53;, 7 | Apache 2.0.54;, 8 | Apache 2.0.59;, 9 | Apache 2.0.63;, 10 | Apache 2.2.2;, 11 | Apache 2.2.3;, 12 | Apache 2.2.4;, 13 | Apache 2.2.6;, 14 | lighttpd 1.4.18;, 15 | lighttpd 1.4.19;, 16 | Microsoft IIS 6.0;, 17 | nginx 0.7.35;, 18 | Zope 2.9.6;, 19 | -------------------------------------------------------------------------------- /database/attack_request/vary-order.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;Accept,Accept-Encoding,Accept-Language 2 | AOLserver 4.0.10;Accept-Encoding 3 | Apache 1.3.26;negotiate,accept-language 4 | Apache 1.3.33;Accept-Encoding,#User-Agent 5 | Apache 1.3.34;Accept-Encoding 6 | Apache 1.3.34;Accept-Encoding,User-Agent 7 | Apache 2.0.52;Accept-Encoding,User-Agent 8 | Apache 2.0.53;accept-language,accept-charset 9 | Apache 2.0.54;Accept-Encoding 10 | Apache 2.0.54;accept-language,accept-charset 11 | Apache 2.0.55;Accept-Encoding 12 | Apache 2.0.59;accept-language,accept-charset 13 | Apache 2.0.63;User-Agent,Accept-Encoding 14 | Apache 2.2.11;Accept-Encoding 15 | Apache 2.2.2;Accept-Encoding 16 | Apache 2.2.2;accept-language,accept-charset 17 | Apache 2.2.3;accept-language,accept-charset 18 | Apache 2.2.4;Accept-Encoding,Cookie,User-Agent 19 | Apache 2.2.4;User-Agent 20 | Apache 2.2.6;accept-language,accept-charset 21 | Apache 2.3.0;Accept-Encoding 22 | BaseHTTPServer 0.3;Host 23 | lighttpd 1.4.18;Accept-Encoding,Cookie 24 | lighttpd 1.4.19;Accept-Encoding,User-Agent 25 | Microsoft IIS 6.0;Accept-Encoding 26 | Microsoft IIS 6.0;Accept-Encoding,User-Agent 27 | Mongrel 1.0;Accept-Encoding 28 | nginx 0.5.33;Accept-Encoding 29 | nginx 0.6.20;Accept-Language 30 | nginx 0.7.35;Accept-Encoding,User-Agent 31 | Oracle Application Server 10g 10.1.2.2.0;Host 32 | Oracle Application Server 10g 10.1.3.1.0;accept-language 33 | Roxen 4.5.145;* 34 | Zeus 4.3;Accept-Encoding 35 | Zeus 4.41;* 36 | Zope 2.10.4;Accept-Encoding 37 | Zope 2.7.6;Cookie 38 | Zope 2.8.4;Accept-Encoding 39 | Zope 2.8.6;Accept-Encoding 40 | Zope 2.9.6;Accept-Encoding 41 | Zope 2.9.6;Accept-Encoding,User-Agent 42 | -------------------------------------------------------------------------------- /database/attack_request/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;PHP/5.1.2 2 | Abyss 2.5.0.0 X1;PHP/5.2.2 3 | Abyss 2.5.0.0 X1;PHP/5.2.4 4 | Abyss 2.5.0.0 X2;PHP/5.2.2 5 | Abyss 2.5.0.0 X2;PHP/5.2.5 6 | Apache 1.3.26;PHP/4.1.2 7 | Apache 1.3.26;PHP/4.3.11 8 | Apache 1.3.33;PHP/4.3.8-9 9 | Apache 1.3.33;PHP/4.4.2 10 | Apache 1.3.33;PHP/5.2.5-0.dotdeb.1 11 | Apache 1.3.34;PHP/4.4.2 12 | Apache 1.3.37;PHP/4.3.10-22 13 | Apache 1.3.37;PHP/4.4.7 14 | Apache 1.3.39;PHP/5.2.5 15 | Apache 2.0.46;PHP/5.1.6 16 | Apache 2.0.49;PHP/4.3.9 17 | Apache 2.0.52;PHP/4.3.9 18 | Apache 2.0.52;PHP/5.1.4 19 | Apache 2.0.52;PHP/5.1.6 20 | Apache 2.0.54;PHP/4.3.10-22 21 | Apache 2.0.54;PHP/4.4.6 22 | Apache 2.0.59;PHP/5.2.1 23 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 24 | Apache 2.2.3;Agavi/0.11.0-dev on PHP/5.2.4 25 | Apache 2.2.3;PHP/4.3.9 26 | Apache 2.2.3;PHP/4.4.4-8+etch4 27 | Apache 2.2.3;PHP/5.1.6 28 | Apache 2.2.3;PHP/5.2.1 29 | Apache 2.2.3;PHP/5.2.3 30 | Apache 2.2.3;PHP/5.2.5-0.dotdeb.1 31 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 32 | Apache 2.2.4;PHP/5.2.0 33 | Apache 2.2.4;PHP/5.2.2 34 | Apache 2.2.6;PHP/5.2.5 35 | lighttpd 1.4.18;PHP/5.2.1 36 | lighttpd 1.4.19;PHP/5.2.8 37 | lighttpd 1.4.22;PHP/5.2.5 38 | Microsoft IIS 5.0;ASP.NET 39 | Microsoft IIS 6.0;ASP.NET 40 | Microsoft IIS 6.0;ASP.NET 2.0 41 | Microsoft IIS 7.0;ASP.NET 42 | nginx 0.6.16;PHP/5.2.4 43 | nginx 0.7.35;PHP/5.2.4 44 | Oracle Application Server 10g 10.1.2.0.2;PHP/4.3.4 45 | Zeus 4.3;PHP/5.1.6 46 | -------------------------------------------------------------------------------- /database/delete_existing/accept-range.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.37;bytes 2 | Apache 2.0.50;bytes 3 | Apache 2.0.54;bytes 4 | Apache 2.0.55;bytes 5 | Apache 2.0.59;bytes 6 | Apache 2.2.3;bytes 7 | Apache 2.2.6;bytes 8 | Ashleys Webserver;bytes 9 | BarracudaDrive 3.9.1;bytes 10 | Barracuda Networks Spam Firewall;bytes 11 | Boa 0.94.14rc21;bytes 12 | Caudium 1.4.9;bytes 13 | IBM HTTP Server 6.0.2.19;bytes 14 | IBM HTTP Server 6.1.0.19;bytes 15 | Lotus Domino Go Webserver 4.6.2.5;bytes 16 | NetBotz 320 thttpd 2.25b;bytes 17 | NetBotz 420 thttpd 2.25b;bytes 18 | NetBotz 500 thttpd 2.25b;bytes 19 | QNAP GNS-8000A 4.1.4.0118;bytes 20 | QNAP NAS-2108R 2.27.1024;bytes 21 | QNAP NAS-4010 4.2.0.0606;bytes 22 | QNAP NAS-4100 2.26.0517;bytes 23 | QNAP TS-101 2.0.1.0302;bytes 24 | QNAP TS-101 2.1.0.612T;bytes 25 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 26 | QNAP TS-109 1.1.2.1009T;bytes 27 | QNAP TS-109 1.1.3.1101T;bytes 28 | QNAP TS-209 1.1.1.0831T;bytes 29 | QNAP TS-209 1.1.3.1101T;bytes 30 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 31 | QNAP TS-411U 1.2.0.0531;bytes 32 | Roxen 2.2.213;bytes 33 | Roxen 4.5.111;bytes 34 | Roxen 4.5.145;bytes 35 | thttpd 2.19-MX;bytes 36 | thttpd 2.20b;bytes 37 | thttpd 2.24;bytes 38 | thttpd 2.26;bytes 39 | Virtuoso 5.0.3;bytes 40 | WallBotz 500 thttpd 2.25b;bytes 41 | Zeus 4.41;bytes 42 | -------------------------------------------------------------------------------- /database/delete_existing/cache-control.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | Apache 1.3.26;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 3 | Apache 1.3.26;post-check=0, pre-check=0 4 | Apache 1.3.33;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 5 | Apache 1.3.37;private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 6 | Apache 2.0.52;no-cache, must-revalidate 7 | Apache 2.0.54;no-cache, pre-check=0, post-check=0 8 | Apache 2.0.54;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 9 | Apache 2.2.11;must-revalidate 10 | Apache 2.2.2;max-age=60 11 | Apache 2.2.3;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 12 | Apache 2.2.3;private 13 | Apache 2.2.4;no-cache, no-store, max-age=0, must-revalidate 14 | Apache 2.2.4;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 15 | Apache 2.2.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 16 | Apache 2.2.6;private 17 | Apache 2.2.8;max-age=86400, 18 | BarracudaDrive 3.9.1;No-Cache 19 | Barracuda Networks Spam Firewall;no-cache,no-store 20 | Cherokee 0.6.0;no-cache 21 | FlexWATCH FW-3440-B;no-cache 22 | GlobalSCAPE Secure Server 3.3;private 23 | IBM HTTP Server 6.0.2.19;no-cache 24 | IBM HTTP Server 6.1.0.19;no-cache 25 | IceWarp 8.3.0;no-store, no-cache, must-revalidate 26 | KLone 2.1.0rc1;no-cache, must-revalidate 27 | lighttpd 1.4.13;no-cache 28 | lighttpd 1.4.18;must-revalidate, max-age=30 29 | lighttpd 1.4.19;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 30 | lighttpd 1.4.22;no-store, no-cache, must-revalidate 31 | ListManagerWeb 8.8c;max-age=0 32 | LiteSpeed Web Server 3.3;no-store, no-cache, must-revalidate 33 | Lotus Domino Go Webserver 4.6.2.5;no-cache 34 | Microsoft IIS 6.0;max-age=0, no-cache, no-store 35 | Microsoft IIS 6.0;no-cache 36 | Microsoft IIS 6.0;proxy-revalidate 37 | Microsoft IIS 7.0;no-cache 38 | Mongrel 1.0;no-cache 39 | NetBotz 320 thttpd 2.25b;no-cache,no-store 40 | NetBotz 420 thttpd 2.25b;no-cache,no-store 41 | NetBotz 500 thttpd 2.25b;no-cache,no-store 42 | nginx 0.5.33;no-cache, must-revalidate, max-age=0 43 | nginx 0.5.35;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 44 | nginx 0.6.16;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 45 | nginx 0.6.26;private, max-age=0, must-revalidate 46 | Oracle Application Server 10g 10.1.2.0.2;no-cache, max-age=0, must-revalidate, proxy-mustcheck 47 | Oracle Application Server 9i 9.0.3.1;private 48 | PacketShaper httpd 1.00;no-cache 49 | Resin 2.1.17;no-cache 50 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 51 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 52 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 53 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 54 | SnapStream Digital Video Recorder;no-cache 55 | thttpd 2.26;no-cache,no-store 56 | WallBotz 500 thttpd 2.25b;no-cache,no-store 57 | Xerox Phaser 6200;no-cache 58 | Xerox Phaser 7300;no-cache 59 | Xerox Phaser 8200;no-cache 60 | Xerox Phaser 860;no-cache 61 | Zoom ADSL;no-cache 62 | Zope 2.10.4;max-age=10 63 | Zope 2.5.0;max-age=3600 64 | Zope 2.7.6;max-age=3600, must-revalidate 65 | Zope 2.7.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 66 | Zope 2.7.7;no-cache 67 | Zope 2.8.4;max-age=3600 68 | -------------------------------------------------------------------------------- /database/delete_existing/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.37;" 2 | Apache 2.2.3;" 3 | Apache 2.2.8;" 4 | IBM HTTP Server 6.1.0.19;" 5 | lighttpd 1.4.18;" 6 | lighttpd 1.4.19;" 7 | nginx 0.6.26;" 8 | Yaws 1.65;" 9 | -------------------------------------------------------------------------------- /database/delete_existing/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 5.3.1;webdav 2 | AOLserver 2.3.3;server1 3 | Apache 2.0.59;Zope 4 | GlobalSCAPE Secure Server 3.3;192.168.4.72 5 | Jigsaw 2.2.5;w3t 6 | KGet web interface 2.1.3;KGet Webinterface Authorization 7 | lighttpd 1.4.18;freenas 8 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 9 | Netscape Enterprise Server 3.5.1;Enterprise Server 10 | Netscape Enterprise Server 6.0;iPlanet Web Server 11 | nginx 0.5.30;Zope 12 | Sun Java System Web Server 6.1;iPlanet Web Server 13 | Sun ONE Web Server 6.1;iPlanet Web Server 14 | Virtuoso 5.0.3;DAV 15 | vqServer 1.9.56;System administrators@ 16 | Zoom ADSL;WebAdmin 17 | Zope 2.10.4;Zope 18 | Zope 2.5.0;Zope 19 | Zope 2.5.1;Zope 20 | Zope 2.6.0;Zope 21 | Zope 2.6.1;Zope 22 | Zope 2.7.4;Zope 23 | Zope 2.7.5;Zope 24 | Zope 2.7.6;Zope 25 | Zope 2.7.8;Zope 26 | Zope 2.7.9;Zope 27 | Zope 2.8.0;Zope 28 | Zope 2.8.2;Zope 29 | Zope 2.8.4;Zope 30 | Zope 2.8.6;Zope 31 | Zope 2.8.7;Zope 32 | Zope 2.9.3;Zope 33 | Zope 2.9.5;Zope 34 | Zope 2.9.6;Zope 35 | Zope 2.9.8;Zope 36 | -------------------------------------------------------------------------------- /database/delete_existing/options-delimited.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.5.0.0 X1;, 2 | Abyss 2.5.0.0 X2;, 3 | Abyss 2.6.0.0 X2;, 4 | and-httpd 0.99.11;, 5 | Apache 1.2.6;, 6 | Apache 1.3.12;, 7 | Apache 1.3.17;, 8 | Apache 1.3.26;, 9 | Apache 1.3.27;, 10 | Apache 1.3.31;, 11 | Apache 1.3.33;, 12 | Apache 1.3.34;, 13 | Apache 1.3.35;, 14 | Apache 1.3.37;, 15 | Apache 1.3.39;, 16 | Apache 1.3.41;, 17 | Apache 2.0.46;, 18 | Apache 2.0.48;, 19 | Apache 2.0.49;, 20 | Apache 2.0.50;, 21 | Apache 2.0.52;, 22 | Apache 2.0.54;, 23 | Apache 2.0.55;, 24 | Apache 2.0.58;, 25 | Apache 2.2.0;, 26 | Apache 2.2.2;, 27 | Apache 2.2.3;, 28 | Apache 2.2.4;, 29 | Apache 2.2.6;, 30 | Apache 2.2.8;, 31 | Apache 2.2.9;, 32 | Apache 2.3.0;, 33 | BarracudaDrive 3.9.1;, 34 | bozohttpd 20060517;, 35 | bozohttpd 20080303;, 36 | Dell 1710n;, 37 | Dell 3232;, 38 | Dell M5200;, 39 | Divar 1.00;, 40 | Divar 1.10.538.0;, 41 | Divar 1.11.626.0;, 42 | Divar 1.12.649.0;, 43 | IBM HTTP Server 6.0.2.19;, 44 | IPC@CHIP 1.01;, 45 | IPC@CHIP 1.04;, 46 | Jigsaw 2.2.6;, 47 | Jigsaw 2.3.0-beta1;, 48 | Lexmark C750;, 49 | Lexmark E323;, 50 | Lexmark Optra S 1255;, 51 | Lexmark T630;, 52 | Lotus Domino Go Webserver 4.6.2.5;, 53 | Microsoft IIS 7.0;, 54 | Netgear RP114 3.26;, 55 | Netopia Router Allegro RomPager 2.10;, 56 | OpenSA 1.0.1;, 57 | Oracle Application Server 10g 10.1.2.0.0;, 58 | Oracle Application Server 10g 10.1.2.0.2;, 59 | Oracle Application Server 10g 10.1.2.2.0;, 60 | Oracle Application Server 10g 10.1.3.0.0;, 61 | Oracle Application Server 10g 10.1.3.1.0;, 62 | Oracle Application Server 10g 9.0.4.0.0;, 63 | Oracle Application Server 10g 9.0.4.2.0;, 64 | Oracle Application Server 10g 9.0.4.3.0;, 65 | Oracle Application Server 9i 9.0.2;, 66 | Sony SNC-RZ30 NetEVI 1.09;, 67 | Sony SNC-RZ30 NetEVI 2.05;, 68 | Sony SNC-RZ30 NetEVI 2.05g;, 69 | Sony SNC-RZ30 NetEVI 2.06;, 70 | Sony SNC-RZ30 NetEVI 2.13;, 71 | Sony SNC-RZ30 NetEVI 2.14;, 72 | Sony SNC-RZ30 NetEVI 2.24;, 73 | Sony SNC-RZ30 NetEVI 3.01;, 74 | Sony SNC-RZ30 NetEVI 3.02;, 75 | Sony SNC-RZ30 NetEVI 3.03;, 76 | Sony SNC-RZ30 NetEVI 3.10;, 77 | Sony SNC-RZ30 NetEVI 3.10a;, 78 | Sony SNC-RZ30 NetEVI 3.14;, 79 | Sony SNC-Z20 NetZoom 1.00;, 80 | StWeb 1.3.27;, 81 | WN Server 2.4.7;, 82 | Xerox DocuPrint N4025 Allegro RomPager 3.06b1;, 83 | Xerox Phaser 6200;, 84 | Xerox Phaser 7300;, 85 | Xerox Phaser 8200;, 86 | Xerox Phaser 860;, 87 | Zeus 4.3;, 88 | Zyxel Prestige 662H-61 RomPager 4.07;, 89 | Zyxel Prestige 662H-63/67 RomPager 4.07;, 90 | Zyxel ZyWALL 10W RomPager 4.07;, 91 | -------------------------------------------------------------------------------- /database/delete_existing/options-public.fdb: -------------------------------------------------------------------------------- 1 | Cougar 9.5.6001.6264;GET,POST,OPTIONS 2 | -------------------------------------------------------------------------------- /database/delete_existing/pragma.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | Apache 1.3.26;no-cache 3 | Apache 1.3.33;no-cache 4 | Apache 1.3.34;no-cache 5 | Apache 1.3.37;no-cache 6 | Apache 2.0.52;no-cache 7 | Apache 2.0.54;no-cache 8 | Apache 2.0.59;no-cache 9 | Apache 2.2.3;no-cache 10 | Apache 2.2.3;private 11 | Apache 2.2.4;no-cache 12 | Apache 2.2.6;no-cache 13 | Cherokee 0.6.0;no-cache 14 | Cougar 9.5.6001.6264;no-cache 15 | FlexWATCH FW-3440-B;no-cache 16 | GlobalSCAPE Secure Server 3.3;no-cache 17 | IBM HTTP Server 6.0.2.19;no-cache 18 | IceWarp 8.3.0;no-cache 19 | Jana-Server 2.4.8.51;no-cache 20 | KLone 2.1.0rc1;no-cache 21 | lighttpd 1.4.19;no-cache 22 | lighttpd 1.4.22;no-cache 23 | LiteSpeed Web Server 3.3;no-cache 24 | Lotus Domino Go Webserver 4.6.2.5;no-cache 25 | Microsoft IIS 6.0;no-cache 26 | Microsoft IIS 7.0;no-cache 27 | nginx 0.5.35;no-cache 28 | nginx 0.6.16;no-cache 29 | Novell Access Manager 3;no-cache 30 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 31 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 32 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 33 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 34 | SnapStream Digital Video Recorder;no-cache 35 | Zope 2.6.0;no-cache 36 | Zope 2.7.7;no-cache 37 | -------------------------------------------------------------------------------- /database/delete_existing/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 4.0.10;1 2 | Apache 1.3.33;0 3 | Apache 2.0.46;1 4 | Apache 2.0.50;0 5 | Apache 2.0.52;1 6 | Apache 2.0.54;0 7 | Apache 2.0.54;1 8 | Apache 2.0.55;1 9 | Apache 2.0.59;0 10 | Apache 2.0.63;1 11 | Apache 2.2.11;1 12 | Apache 2.2.2;1 13 | Apache 2.2.3;0 14 | Apache 2.2.4;1 15 | Apache 2.2.6;0 16 | lighttpd 1.4.19;1 17 | Mongrel 1.0;1 18 | nginx 0.5.33;1 19 | Roxen 4.5.111;1 20 | Zeus 4.3;1 21 | Zope 2.10.4;1 22 | Zope 2.7.6;1 23 | Zope 2.8.4;1 24 | Zope 2.8.6;1 25 | Zope 2.9.6;1 26 | -------------------------------------------------------------------------------- /database/delete_existing/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.33;, 2 | Apache 1.3.34;, 3 | Apache 2.0.50;, 4 | Apache 2.0.52;, 5 | Apache 2.0.54;, 6 | Apache 2.0.55;, 7 | Apache 2.0.59;, 8 | Apache 2.0.63;, 9 | Apache 2.2.3;, 10 | Apache 2.2.4;, 11 | Apache 2.2.6;, 12 | lighttpd 1.4.18;, 13 | lighttpd 1.4.19;, 14 | Roxen 4.5.111;, 15 | Zope 2.9.6;, 16 | -------------------------------------------------------------------------------- /database/delete_existing/vary-order.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 4.0.10;Accept-Encoding 2 | Apache 1.3.33;accept-language,accept-charset 3 | Apache 1.3.34;Accept-Encoding,User-Agent 4 | Apache 2.0.46;Accept-Encoding 5 | Apache 2.0.50;accept-language,accept-charset 6 | Apache 2.0.52;Accept-Encoding,User-Agent 7 | Apache 2.0.54;Accept-Encoding 8 | Apache 2.0.54;accept-language,accept-charset 9 | Apache 2.0.54;negotiate,accept-language 10 | Apache 2.0.55;Accept-Encoding 11 | Apache 2.0.55;accept-language,accept-charset 12 | Apache 2.0.59;accept-language,accept-charset 13 | Apache 2.0.63;User-Agent,Accept-Encoding 14 | Apache 2.2.11;Accept-Encoding 15 | Apache 2.2.2;Accept-Encoding 16 | Apache 2.2.3;accept-language,accept-charset 17 | Apache 2.2.4;Accept-Encoding,Cookie 18 | Apache 2.2.6;accept-language,accept-charset 19 | Apache 2.3.0;Accept-Encoding 20 | lighttpd 1.4.18;Accept-Encoding,Cookie 21 | lighttpd 1.4.19;Accept-Encoding,User-Agent 22 | Microsoft IIS 6.0;Accept-Encoding 23 | Mongrel 1.0;Accept-Encoding 24 | nginx 0.5.33;Accept-Encoding 25 | Roxen 4.5.111;Cookie,User-Agent 26 | Zeus 4.3;Accept-Encoding 27 | Zope 2.10.4;Accept-Encoding 28 | Zope 2.7.6;Cookie 29 | Zope 2.8.4;Accept-Encoding 30 | Zope 2.8.6;Accept-Encoding 31 | Zope 2.9.6;Accept-Encoding 32 | Zope 2.9.6;Accept-Encoding,User-Agent 33 | -------------------------------------------------------------------------------- /database/delete_existing/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.0.0.20 X2;PHP/5.2.0 2 | Abyss 2.4.0.3 X2;PHP/4.3.9 3 | Abyss 2.4.0.3 X2;PHP/5.1.2 4 | Abyss 2.4.0.3 X2;PHP/5.2.0 5 | Abyss 2.5.0.0 X1;PHP/5.2.4 6 | Abyss 2.5.0.0 X2;PHP/5.2.2 7 | Abyss 2.5.0.0 X2;PHP/5.2.4 8 | Abyss 2.5.0.0 X2;PHP/5.2.5 9 | Apache 1.3.26;PHP/4.1.2 10 | Apache 1.3.26;PHP/4.2.2 11 | Apache 1.3.26;PHP/4.3.11 12 | Apache 1.3.27;PHP/4.1.2 13 | Apache 1.3.33;PHP/4.3.8-9 14 | Apache 1.3.33;PHP/4.4.7 15 | Apache 1.3.33;PHP/5.2.4 16 | Apache 1.3.34;PHP/4.4.2 17 | Apache 1.3.34;PHP/4.4.4-8+etch4 18 | Apache 1.3.37;PHP/4.4.6 19 | Apache 1.3.37;PHP/5.2.1 20 | Apache 2.0.49;PHP/4.3.9 21 | Apache 2.0.51;PHP/4.3.10 22 | Apache 2.0.52;PHP/4.3.9 23 | Apache 2.0.52;PHP/4.4.1 24 | Apache 2.0.52;PHP/5.1.4 25 | Apache 2.0.53;PHP/4.3.10 26 | Apache 2.0.54;PHP/4.3.10-22 27 | Apache 2.0.54;PHP/4.4.0 28 | Apache 2.0.54;PHP/4.4.6 29 | Apache 2.0.54;PHP/4.4.7 30 | Apache 2.0.54;PHP/5.0.5-Debian-0.8~sarge1 31 | Apache 2.0.55;PHP/5.1.2 32 | Apache 2.0.58;PHP/5.1.5 33 | Apache 2.0.59;PHP/5.2.1 34 | Apache 2.0.59;PHP/5.2.4 35 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 36 | Apache 2.2.11;PHP/5.2.8 37 | Apache 2.2.3;Agavi/0.11.0-dev on PHP/5.2.4 38 | Apache 2.2.3;PHP/4.4.4-8+etch4 39 | Apache 2.2.3;PHP/5.2.0-8+etch7 40 | Apache 2.2.3;PHP/5.2.1 41 | Apache 2.2.3;PHP/5.2.3 42 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 43 | Apache 2.2.4;PHP/4.4.4-9+lenny1 44 | Apache 2.2.4;PHP/5.1.6 45 | Apache 2.2.4;PHP/5.2.1RC3-dev 46 | Apache 2.2.4;PHP/5.2.2 47 | Apache 2.2.6;PHP/5.2.5 48 | Apache 2.2.8;PHP/5.2.5 49 | lighttpd 1.4.19;PHP/5.2.8 50 | lighttpd 1.4.22;PHP/5.2.5 51 | Microsoft IIS 5.0;ASP.NET 52 | Microsoft IIS 5.1;ASP.NET 53 | Microsoft IIS 6.0;ASP.NET 54 | Microsoft IIS 6.0;ASP.NET 2.0 55 | Microsoft IIS 7.0;ASP.NET 56 | nginx 0.6.16;PHP/5.2.4 57 | OpenSA 1.0.4;PHP/4.2.2 58 | -------------------------------------------------------------------------------- /database/get_existing/accept-range.fdb: -------------------------------------------------------------------------------- 1 | 0W 0.8c;bytes 2 | 4D WebSTAR 4.5;bytes 3 | 4D WebSTAR 5.3.3;bytes 4 | and-httpd 0.99.11;bytes 5 | Apache 1.2.6;bytes 6 | Apache 1.3.12;bytes 7 | Apache 1.3.17;bytes 8 | Apache 1.3.26;bytes 9 | Apache 1.3.27;bytes 10 | Apache 1.3.29;bytes 11 | Apache 1.3.31;bytes 12 | Apache 1.3.33;bytes 13 | Apache 1.3.34;bytes 14 | Apache 1.3.35;bytes 15 | Apache 1.3.37;bytes 16 | Apache 1.3.39;bytes 17 | Apache 1.3.41;bytes 18 | Apache 2.0.46;bytes 19 | Apache 2.0.48;bytes 20 | Apache 2.0.49;bytes 21 | Apache 2.0.50;bytes 22 | Apache 2.0.52;bytes 23 | Apache 2.0.54;bytes 24 | Apache 2.0.55;bytes 25 | Apache 2.0.59;bytes 26 | Apache 2.2.0;bytes 27 | Apache 2.2.2;bytes 28 | Apache 2.2.3;bytes 29 | Apache 2.2.4;bytes 30 | Apache 2.2.6;bytes 31 | Apache 2.2.8;bytes 32 | Apache 2.2.9;bytes 33 | Apache 2.3.0;bytes 34 | Ashleys Webserver;bytes 35 | BadBlue 2.4;bytes 36 | BadBlue 2.5;bytes 37 | BadBlue 2.6;bytes 38 | BarracudaDrive 3.9.1;bytes 39 | Barracuda Networks Spam Firewall;bytes 40 | Boa 0.94.14rc21;bytes 41 | bozohttpd 20080303;bytes 42 | Caudium 1.4.9;bytes 43 | CL-HTTP 70.216;bytes 44 | Compaq HTTP Server 9.9;bytes 45 | Fortinet Fortigate;bytes 46 | Gatling 0.10;bytes 47 | lighttpd 1.4.13;bytes 48 | lighttpd 1.4.16;bytes 49 | lighttpd 1.4.18;bytes 50 | lighttpd 1.5.0;bytes 51 | Lotus Domino Go Webserver 4.6.2.5;bytes 52 | Microsoft IIS 5.0;bytes 53 | Microsoft IIS 5.1;bytes 54 | Microsoft IIS 6.0;bytes 55 | Microsoft IIS 7.0;bytes 56 | Netscape Enterprise Server 3.5.1;bytes 57 | Netscape Enterprise Server 3.5.1G;bytes 58 | Netscape Enterprise Server 6.0;bytes 59 | Netscape Fasttrack 3.02a;bytes 60 | NetWare Enterprise Web Server 5.1;bytes 61 | nginx 0.5.19;bytes 62 | nginx 0.5.32;bytes 63 | OpenSA 1.0.1;bytes 64 | Oracle Application Server 10g 10.1.2.0.0;bytes 65 | Oracle Application Server 10g 10.1.2.0.2;bytes 66 | Oracle Application Server 10g 10.1.2.2.0;bytes 67 | Oracle Application Server 10g 10.1.3.0.0;bytes 68 | Oracle Application Server 10g 10.1.3.1.0;bytes 69 | Oracle Application Server 10g 9.0.4.0.0;bytes 70 | Oracle Application Server 10g 9.0.4.2.0;bytes 71 | Oracle Application Server 10g 9.0.4.3.0;bytes 72 | Oracle Application Server 9i 9.0.2;bytes 73 | QNAP GNS-8000A 4.1.4.0118;bytes 74 | QNAP NAS-2108R 2.27.1024;bytes 75 | QNAP NAS-4010 4.2.0.0606;bytes 76 | QNAP NAS-4100 2.26.0517;bytes 77 | QNAP TS-101 2.0.1.0302;bytes 78 | QNAP TS-101 2.1.0.612T;bytes 79 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 80 | QNAP TS-109 1.1.2.1009T;bytes 81 | QNAP TS-109 1.1.3.1101T;bytes 82 | QNAP TS-209 1.1.1.0831T;bytes 83 | QNAP TS-209 1.1.3.1101T;bytes 84 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 85 | QNAP TS-411U 1.2.0.0531;bytes 86 | Resin 3.0.6;bytes 87 | Roxen 2.2.213;bytes 88 | Roxen 4.5.111;bytes 89 | Roxen 4.5.145;bytes 90 | Sun ONE Web Server 6.1;bytes 91 | TheServer 2.21L;bytes 92 | thttpd 2.20b;bytes 93 | thttpd 2.23beta1;bytes 94 | thttpd 2.24;bytes 95 | thttpd 2.25b;bytes 96 | thttpd 2.26;bytes 97 | Virtuoso 5.0.3;bytes 98 | vqServer 1.9.56;bytes 99 | Zeus 4.3;bytes 100 | Zeus 4.41;bytes 101 | -------------------------------------------------------------------------------- /database/get_existing/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;" 2 | Apache 1.2.6;" 3 | Apache 1.3.12;" 4 | Apache 1.3.17;" 5 | Apache 1.3.26;" 6 | Apache 1.3.27;" 7 | Apache 1.3.29;" 8 | Apache 1.3.31;" 9 | Apache 1.3.33;" 10 | Apache 1.3.34;" 11 | Apache 1.3.35;" 12 | Apache 1.3.37;" 13 | Apache 1.3.39;" 14 | Apache 1.3.41;" 15 | Apache 2.0.46;" 16 | Apache 2.0.48;" 17 | Apache 2.0.49;" 18 | Apache 2.0.52;" 19 | Apache 2.0.54;" 20 | Apache 2.0.59;" 21 | Apache 2.2.0;" 22 | Apache 2.2.2;" 23 | Apache 2.2.3;" 24 | Apache 2.2.4;" 25 | Apache 2.2.6;" 26 | Apache 2.2.8;" 27 | Apache 2.3.0;" 28 | BadBlue 2.4;" 29 | BadBlue 2.5;" 30 | BadBlue 2.6;" 31 | CL-HTTP 70.216;" 32 | Compaq HTTP Server 9.9;" 33 | Fortinet Fortigate;" 34 | Jigsaw 2.2.6;" 35 | Jigsaw 2.3.0-beta1;" 36 | lighttpd 1.4.13;" 37 | lighttpd 1.4.16;" 38 | lighttpd 1.4.18;" 39 | lighttpd 1.4.19;" 40 | lighttpd 1.5.0;" 41 | Microsoft IIS 5.0;" 42 | Microsoft IIS 5.1;" 43 | Microsoft IIS 6.0;" 44 | Microsoft IIS 7.0;" 45 | Netscape Enterprise Server 3.5.1;" 46 | Netscape Enterprise Server 3.5.1G;" 47 | Netscape Enterprise Server 4.1;" 48 | Netscape Enterprise Server 6.0;" 49 | NetWare Enterprise Web Server 5.1;" 50 | nginx 0.6.26;" 51 | OpenSA 1.0.1;" 52 | Oracle Application Server 10g 10.1.2.0.0;" 53 | Oracle Application Server 10g 10.1.2.0.2;" 54 | Oracle Application Server 10g 10.1.2.2.0;" 55 | Oracle Application Server 10g 10.1.3.0.0;" 56 | Oracle Application Server 10g 10.1.3.1.0;" 57 | Oracle Application Server 10g 9.0.4.0.0;" 58 | Oracle Application Server 10g 9.0.4.2.0;" 59 | Oracle Application Server 10g 9.0.4.3.0;" 60 | Oracle Application Server 9i 9.0.2;" 61 | Resin 3.0.6;" 62 | Roxen 4.5.111;" 63 | Roxen 4.5.145;" 64 | Sun ONE Web Server 6.1;" 65 | Virtuoso 5.0.3;" 66 | Yaws 1.65;" 67 | Zeus 4.41;" 68 | -------------------------------------------------------------------------------- /database/get_existing/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | GlobalSCAPE Secure Server 3.3;192.168.4.72 2 | Jigsaw 2.2.5;w3t 3 | KGet web interface 2.1.3;KGet Webinterface Authorization 4 | lighttpd 1.4.18;freenas 5 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 6 | NetBotz 320 thttpd 2.25b;NetBotz Appliance 7 | NetBotz 420 thttpd 2.25b;NetBotz Appliance 8 | NetBotz 500 thttpd 2.25b;NetBotz Appliance 9 | Netgear RP114 3.26;RP114 10 | SWAT 3.0.24;SWAT 11 | WallBotz 500 thttpd 2.25b;NetBotz Appliance 12 | Zoom ADSL;WebAdmin 13 | -------------------------------------------------------------------------------- /database/get_existing/pragma.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | Abyss 2.5.0.0 X1;no-cache 3 | AOLserver 3.3.1;No-Cache 4 | AOLserver 4.0.10a;no-cache 5 | AOLserver 4.0.10;no-cache 6 | AOLserver 4.5.0;no-cache 7 | Apache 1.3.26;no-cache 8 | Apache 1.3.27;no-cache 9 | Apache 1.3.28;no-cache 10 | Apache 1.3.33;no-cache 11 | Apache 1.3.34;no-cache 12 | Apache 1.3.37;no-cache 13 | Apache 1.3.39;no-cache 14 | Apache 2.0.45;no-cache 15 | Apache 2.0.46;no-cache 16 | Apache 2.0.52;no-cache 17 | Apache 2.0.54;no-cache 18 | Apache 2.0.55;no-cache 19 | Apache 2.0.59;no-cache 20 | Apache 2.0.59;nocache 21 | Apache 2.0.59;No-cache 22 | Apache 2.2.2;no-cache 23 | Apache 2.2.3;no-cache 24 | Apache 2.2.3;private 25 | Apache 2.2.4;no-cache 26 | Apache 2.2.6;no-cache 27 | Belkin Router 2.00.002;no-cache 28 | Cherokee 0.6.0;no-cache 29 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;no-cache 30 | Cougar 9.5.6001.6264;no-cache, xResetStrm=1 31 | FlexWATCH FW-3440-B;no-cache 32 | fnord 1.8a;no-cache 33 | GlobalSCAPE Secure Server 3.3;no-cache 34 | Hiawatha 6.11;no-cache 35 | Hiawatha 6.2;no-cache 36 | IBM HTTP Server 6.0.2.19;no-cache 37 | IceWarp 8.3.0;no-cache 38 | IPC@CHIP 1.04;no-cache 39 | Jana-Server 2.4.8.51;no-cache 40 | Jetty 6.1.1;no-cache 41 | LANCOM DSL/I-10 3.58.0006;no-cache 42 | LANCOM DSL/I-10 Office 3.59.0006;no-cache 43 | LANCOM DSL/I-1611 4.02.0003;no-cache 44 | LANCOM DSL/I-1611 4.12.0031;no-cache 45 | LANCOM DSL/I-1611 5.06.0005;no-cache 46 | LANCOM DSL/I-1611 6.02.0008;no-cache 47 | LANCOM DSL/I-1611 6.06.0012;no-cache 48 | LANCOM DSL/I-1611 6.24.0012;no-cache 49 | LANCOM DSL/I-1611 6.26.0022;no-cache 50 | LANCOM DSL/I-1611 6.32.0021;no-cache 51 | lighttpd 1.4.19;no-cache 52 | lighttpd 1.4.22;no-cache 53 | LiteSpeed Web Server 3.3;no-cache 54 | Microsoft IIS 6.0;no-cache 55 | Microsoft ISA Server 2006;no-cache 56 | Nanoweb 2.2.10;no-cache 57 | nginx 0.5.32;no-cache 58 | nginx 0.5.35;no-cache 59 | nginx 0.6.16;no-cache 60 | nginx 0.6.20;no-cache 61 | Novell Access Manager 3;no-cache 62 | OpenSA 1.0.5;no-cache 63 | Resin 2.1.17;no-cache 64 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 65 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 66 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 67 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 68 | Roxen 2.2.213;no-cache 69 | SnapStream Digital Video Recorder;no-cache 70 | Sony SNC-RZ30 NetEVI 1.09;no-cache 71 | Sony SNC-RZ30 NetEVI 2.05g;no-cache 72 | Sony SNC-RZ30 NetEVI 2.05;no-cache 73 | Sony SNC-RZ30 NetEVI 2.06;no-cache 74 | Sony SNC-RZ30 NetEVI 2.13;no-cache 75 | Sony SNC-RZ30 NetEVI 2.14;no-cache 76 | Sony SNC-RZ30 NetEVI 2.24;no-cache 77 | Sony SNC-RZ30 NetEVI 3.01;no-cache 78 | Sony SNC-RZ30 NetEVI 3.02;no-cache 79 | Sony SNC-RZ30 NetEVI 3.03;no-cache 80 | Sony SNC-RZ30 NetEVI 3.10a;no-cache 81 | Sony SNC-RZ30 NetEVI 3.10;no-cache 82 | Sony SNC-RZ30 NetEVI 3.14;no-cache 83 | Sony SNC-Z20 NetZoom 1.00;no-cache 84 | Symantec Mail Security for SMTP;No-Cache 85 | WDaemon 9.6.1;no-cache 86 | webcamXP PRO 2006 2.16.456x BETA;no-cache 87 | webcamXP PRO 2006 2.20.024;no-cache 88 | webcamXP PRO 2006 2.37.144;no-cache 89 | webcamXP PRO 2007 3.60.220;no-cache 90 | webcamXP PRO 2007 3.72.440;no-cache 91 | webcamXP PRO 2007 3.96.000 beta;no-cache 92 | Zope 2.6.0;no-cache 93 | Zope 2.6.1;no-cache 94 | Zope 2.7.4;No-cache 95 | Zope 2.7.5;no-cache 96 | Zope 2.7.7;no-cache 97 | Zyxel P-2602HW-D1A RomPager 4.51;no-cache 98 | Zyxel P-660R-D3 RomPager 4.51;no-cache 99 | Zyxel P-661H-D1 RomPager 4.51;no-cache 100 | Zyxel P-662HW-D1 RomPager 4.51;no-cache 101 | Zyxel Prestige 662H-61 RomPager 4.07;no-cache 102 | Zyxel Prestige 662H-63/67 RomPager 4.07;no-cache 103 | Zyxel ZyWALL 10W RomPager 4.07;no-cache 104 | -------------------------------------------------------------------------------- /database/get_existing/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;1 2 | AOLserver 3.4.2;1 3 | AOLserver 4.0.10;1 4 | Apache 1.3.33;0 5 | Apache 1.3.33;1 6 | Apache 1.3.37;1 7 | Apache 2.0.46;1 8 | Apache 2.0.52;1 9 | Apache 2.0.54;0 10 | Apache 2.0.54;1 11 | Apache 2.0.55;1 12 | Apache 2.0.63;1 13 | Apache 2.2.11;1 14 | Apache 2.2.2;1 15 | Apache 2.2.3;1 16 | Apache 2.2.4;1 17 | Apache 2.2.6;1 18 | BaseHTTPServer 0.3;1 19 | Compaq HTTP Server 9.9;0 20 | IBM HTTP Server 6.1.0.19;0 21 | lighttpd 1.4.19;1 22 | Lotus Domino Go Webserver 4.6.2.5;0 23 | Microsoft IIS 6.0;1 24 | Mongrel 1.0;1 25 | Netscape Enterprise Server 3.5.1;1 26 | nginx 0.5.33;1 27 | nginx 0.6.20;1 28 | Oracle Application Server 10g 10.1.2.0.0;0 29 | Oracle Application Server 10g 10.1.2.2.0;1 30 | Roxen 4.5.145;0 31 | Zeus 4.3;1 32 | Zope 2.10.4;1 33 | Zope 2.7.5;0 34 | Zope 2.7.6;1 35 | Zope 2.8.4;1 36 | Zope 2.8.6;1 37 | Zope 2.9.6;1 38 | Zope 2.9.7;1 39 | Zope 2.9.8;1 40 | -------------------------------------------------------------------------------- /database/get_existing/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.33;, 2 | Apache 1.3.34;, 3 | Apache 2.0.52;, 4 | Apache 2.0.54;, 5 | Apache 2.0.63;, 6 | Apache 2.2.2;, 7 | Apache 2.2.4;, 8 | Apache 2.2.6;, 9 | Compaq HTTP Server 9.9;, 10 | lighttpd 1.4.18;, 11 | lighttpd 1.4.19;, 12 | Microsoft IIS 6.0;, 13 | Zope 2.9.6;, 14 | Zope 2.9.7;, 15 | Zope 2.9.8;, 16 | -------------------------------------------------------------------------------- /database/get_existing/vary-order.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;Accept-Encoding 2 | AOLserver 3.4.2;Accept-Encoding 3 | AOLserver 4.0.10;Accept-Encoding 4 | Apache 1.3.33;* 5 | Apache 1.3.33;Accept-Encoding 6 | Apache 1.3.33;negotiate,accept-language,accept-charset 7 | Apache 1.3.34;Accept-Encoding 8 | Apache 1.3.34;Accept-Encoding,User-Agent 9 | Apache 1.3.37;* 10 | Apache 1.3.37;Host 11 | Apache 2.0.46;Accept-Encoding 12 | Apache 2.0.52;Accept-Encoding,User-Agent 13 | Apache 2.0.54;Accept-Encoding 14 | Apache 2.0.54;negotiate,accept-language 15 | Apache 2.0.55;Accept-Encoding 16 | Apache 2.0.63;User-Agent,Accept-Encoding 17 | Apache 2.2.11;Accept-Encoding 18 | Apache 2.2.2;Accept-Encoding 19 | Apache 2.2.2;Accept-Encoding,Cookie 20 | Apache 2.2.3;Accept-Encoding 21 | Apache 2.2.4;Accept-Encoding,Cookie,User-Agent 22 | Apache 2.2.4;User-Agent 23 | Apache 2.2.6;Cookie,User-Agent,Accept-Language 24 | Apache 2.3.0;Accept-Encoding 25 | BaseHTTPServer 0.3;Host 26 | Compaq HTTP Server 9.9;negotiate,accept-language 27 | IBM HTTP Server 6.1.0.19;* 28 | lighttpd 1.4.18;Accept-Encoding,Cookie 29 | lighttpd 1.4.19;Accept-Encoding,User-Agent 30 | Lotus Domino Go Webserver 4.6.2.5;* 31 | Microsoft IIS 6.0;Accept-Encoding 32 | Microsoft IIS 6.0;Accept-Encoding,User-Agent 33 | Mongrel 1.0;Accept-Encoding 34 | Netscape Enterprise Server 3.5.1;Accept-language 35 | nginx 0.5.33;Accept-Encoding 36 | nginx 0.6.20;Accept-Language 37 | Oracle Application Server 10g 10.1.2.0.0;negotiate 38 | Oracle Application Server 10g 10.1.2.2.0;Host 39 | Roxen 4.5.145;* 40 | Zeus 4.3;Accept-Encoding 41 | Zope 2.10.4;Accept-Encoding 42 | Zope 2.7.5;* 43 | Zope 2.7.6;Cookie 44 | Zope 2.8.4;Accept-Encoding 45 | Zope 2.8.6;Accept-Encoding 46 | Zope 2.9.6;Accept-Encoding 47 | Zope 2.9.6;Accept-Encoding,Accept-Language,User-Agent 48 | Zope 2.9.7;Accept-Encoding,Accept-Language 49 | Zope 2.9.8;Accept-Encoding,Accept-Language,User-Agent 50 | -------------------------------------------------------------------------------- /database/get_existing/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.0.0.20 X2;PHP/5.2.0 2 | Abyss 2.4.0.3 X2;PHP/4.3.9 3 | Abyss 2.4.0.3 X2;PHP/5.1.2 4 | Abyss 2.4.0.3 X2;PHP/5.2.0 5 | Abyss 2.5.0.0 X1;PHP/5.2.2 6 | Abyss 2.5.0.0 X1;PHP/5.2.4 7 | Abyss 2.5.0.0 X2;PHP/5.2.2 8 | Abyss 2.5.0.0 X2;PHP/5.2.4 9 | Abyss 2.5.0.0 X2;PHP/5.2.5 10 | Anti-Web HTTPD 3.0.7;PHP/4.3.6 11 | AOLserver 4.0.10a;PHP/5.0.3 12 | Apache 1.3.26;PHP/4.1.2 13 | Apache 1.3.26;PHP/4.2.2 14 | Apache 1.3.26;PHP/4.3.11 15 | Apache 1.3.27;PHP/4.1.2 16 | Apache 1.3.33;PHP/4.3.10 17 | Apache 1.3.33;PHP/4.3.8-9 18 | Apache 1.3.33;PHP/4.4.2 19 | Apache 1.3.33;PHP/4.4.7 20 | Apache 1.3.33;PHP/5.2.4 21 | Apache 1.3.33;PHP/5.2.5-0.dotdeb.1 22 | Apache 1.3.34;PHP/4.4.2 23 | Apache 1.3.34;PHP/4.4.4-8+etch4 24 | Apache 1.3.34;PHP/5.2.0-8+etch7 25 | Apache 1.3.37;PHP/4.3.11 26 | Apache 1.3.37;PHP/4.4.6 27 | Apache 1.3.37;PHP/4.4.7 28 | Apache 1.3.37;PHP/5.1.2 29 | Apache 1.3.37;PHP/5.2.1 30 | Apache 1.3.39;PHP/4.4.7 31 | Apache 1.3.39;PHP/5.2.3 32 | Apache 2.0.46;PHP/4.3.2 33 | Apache 2.0.46;PHP/5.1.2 34 | Apache 2.0.46;PHP/5.1.6 35 | Apache 2.0.49;PHP/4.3.9 36 | Apache 2.0.51;PHP/4.3.10 37 | Apache 2.0.52;PHP/4.3.9 38 | Apache 2.0.52;PHP/4.4.1 39 | Apache 2.0.52;PHP/5.1.4 40 | Apache 2.0.52;PHP/5.1.6 41 | Apache 2.0.53;PHP/4.3.10 42 | Apache 2.0.54;PHP/4.3.10-18 43 | Apache 2.0.54;PHP/4.3.10-22 44 | Apache 2.0.54;PHP/4.4.0 45 | Apache 2.0.54;PHP/4.4.6 46 | Apache 2.0.54;PHP/4.4.7 47 | Apache 2.0.54;PHP/5.0.5-Debian-0.8~sarge1 48 | Apache 2.0.54;PHP/5.2.4-0.dotdeb.0 49 | Apache 2.0.55;PHP/5.1.2 50 | Apache 2.0.55;PHP/5.2.3 51 | Apache 2.0.58;PHP/5.1.5 52 | Apache 2.0.59;PHP/5.2.1 53 | Apache 2.0.59;PHP/5.2.4 54 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 55 | Apache 2.2.11;PHP/5.2.8 56 | Apache 2.2.2;PHP/5.1.6 57 | Apache 2.2.3;Agavi/0.11.0-dev on PHP/5.2.4 58 | Apache 2.2.3;PHP/4.4.4-8+etch4 59 | Apache 2.2.3;PHP/5.1.6 60 | Apache 2.2.3;PHP/5.2.0 61 | Apache 2.2.3;PHP/5.2.0-8+etch10 62 | Apache 2.2.3;PHP/5.2.0-8+etch7 63 | Apache 2.2.3;PHP/5.2.1 64 | Apache 2.2.3;PHP/5.2.3 65 | Apache 2.2.3;PHP/5.2.5-0.dotdeb.1 66 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 67 | Apache 2.2.4;PHP/4.4.4-9+lenny1 68 | Apache 2.2.4;PHP/5.1.6 69 | Apache 2.2.4;PHP/5.2.0 70 | Apache 2.2.4;PHP/5.2.1RC3-dev 71 | Apache 2.2.4;PHP/5.2.2 72 | Apache 2.2.6;PHP/5.2.5 73 | Apache 2.2.8;PHP/5.2.5 74 | Cherokee 0.6.0;PHP/5.0.5-3 75 | lighttpd 1.4.18;PHP/5.2.1 76 | lighttpd 1.4.19;PHP/5.2.8 77 | lighttpd 1.4.22;PHP/5.2.5 78 | Microsoft IIS 5.0;ASP.NET 79 | Microsoft IIS 6.0;ASP.NET 80 | Microsoft IIS 6.0;ASP.NET 2.0 81 | Microsoft IIS 7.0;ASP.NET 82 | Nanoweb 2.2.10;t0x-engine/1.4.12 PHP/5.2.9 83 | nginx 0.5.35;Zope (www.zope.org), Python (www.python.org) 84 | nginx 0.6.16;PHP/5.2.4 85 | OpenSA 1.0.4;PHP/4.2.2 86 | Zeus 4.3;PHP/5.1.4 87 | Zeus 4.3;PHP/5.1.6 88 | -------------------------------------------------------------------------------- /database/get_long/accept-range.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 4.5;bytes 2 | 4D WebSTAR 5.3.3;bytes 3 | and-httpd 0.99.11;bytes 4 | Apache 1.3.33;bytes 5 | Apache 1.3.37;bytes 6 | Apache 2.0.54;bytes 7 | Apache 2.0.55;bytes 8 | Apache 2.0.59;bytes 9 | Apache 2.2.2;bytes 10 | Apache 2.2.3;bytes 11 | Apache 2.2.4;bytes 12 | Apache 2.2.6;bytes 13 | Ashleys Webserver;bytes 14 | BadBlue 2.4;bytes 15 | BadBlue 2.5;bytes 16 | BadBlue 2.6;bytes 17 | BadBlue 2.7;bytes 18 | Barracuda Networks Spam Firewall;bytes 19 | Boa 0.94.14rc21;bytes 20 | Caudium 1.4.9;bytes 21 | Hiawatha 6.2;bytes 22 | IBM HTTP Server 6.1.0.19;bytes 23 | Lotus Domino Go Webserver 4.6.2.5;bytes 24 | NetBotz 320 thttpd 2.25b;bytes 25 | NetBotz 420 thttpd 2.25b;bytes 26 | NetBotz 500 thttpd 2.25b;bytes 27 | nginx 0.7.35;bytes 28 | Oracle Application Server 10g 10.1.2.2.0;bytes 29 | Orion 2.0.7;bytes 30 | QNAP GNS-8000A 4.1.4.0118;bytes 31 | QNAP NAS-2108R 2.27.1024;bytes 32 | QNAP NAS-4010 4.2.0.0606;bytes 33 | QNAP NAS-4100 2.26.0517;bytes 34 | QNAP TS-101 2.0.1.0302;bytes 35 | QNAP TS-101 2.1.0.612T;bytes 36 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 37 | QNAP TS-109 1.1.2.1009T;bytes 38 | QNAP TS-109 1.1.3.1101T;bytes 39 | QNAP TS-209 1.1.1.0831T;bytes 40 | QNAP TS-209 1.1.3.1101T;bytes 41 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 42 | QNAP TS-411U 1.2.0.0531;bytes 43 | Roxen 2.2.213;bytes 44 | Roxen 4.5.145;bytes 45 | thttpd 2.19-MX;bytes 46 | thttpd 2.20b;bytes 47 | thttpd 2.23beta1;bytes 48 | thttpd 2.24;bytes 49 | thttpd 2.26;bytes 50 | Virtuoso 5.0.3;bytes 51 | WallBotz 500 thttpd 2.25b;bytes 52 | Zeus 4.3;bytes 53 | Zeus 4.41;bytes 54 | -------------------------------------------------------------------------------- /database/get_long/cache-control.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;max-age=691200 2 | AOLserver 3.4.2;no-cache, must-revalidate, post-check=0, pre-check=0 3 | AOLserver 4.0.10;max-age=0 4 | AOLserver 4.0.10;no-cache, no-store, private, max-age=0 5 | AOLserver 4.0.10;private, no-cache, no-cache="Set-Cookie", no-store, must-revalidate, max-age=0, proxy-revalidate, no-transform 6 | Apache 1.3.33;max-age=60 7 | Apache 1.3.33;private 8 | Apache 1.3.37;private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 9 | Apache 2.0.59;no-cache,no-store,max-age=0 10 | Apache 2.2.3;max-age=173 11 | Apache 2.2.3;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 12 | Apache 2.2.4;no-cache, no-store, max-age=0, must-revalidate 13 | Apache 2.2.6;no-store, no-cache, must-revalidate 14 | Barracuda Networks Spam Firewall;no-cache,no-store 15 | Cherokee 0.6.0;no-cache 16 | Cherokee 0.99;no-cache 17 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;no-cache 18 | Cougar 9.5.6001.6264;max-age=0, no-cache 19 | firecat 1.0.0 Beta;private 20 | FlexWATCH FW-3440-B;no-cache 21 | GlobalSCAPE Secure Server 3.3;private 22 | Hiawatha 6.11;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 23 | IBM HTTP Server 6.0.2.19;max-age=0, no-cache, no-store 24 | IBM HTTP Server 6.1.0.19;no-cache 25 | Jetty 6.1.1;max-age=0, no-store 26 | KLone 2.1.0rc1;no-cache, must-revalidate 27 | lighttpd 1.4.22;no-store, no-cache, must-revalidate 28 | lighttpd 1.5.0;no-cache 29 | ListManagerWeb 8.8c;max-age=0 30 | LiteSpeed Web Server 3.3;no-store, no-cache, must-revalidate 31 | Lotus Domino Go Webserver 4.6.2.5;no-cache 32 | Microsoft IIS 5.0;max-age=900 33 | Microsoft IIS 6.0;max-age=0, no-cache, no-store 34 | Microsoft ISA Server 2006;no-cache,max-age=0,must-revalidate 35 | NetBotz 320 thttpd 2.25b;no-cache,no-store 36 | NetBotz 420 thttpd 2.25b;no-cache,no-store 37 | NetBotz 500 thttpd 2.25b;no-cache,no-store 38 | nginx 0.5.32;max-age=0, no-cache, no-store 39 | nginx 0.6.20;no-cache 40 | Oracle Application Server 10g 10.1.2.0.2;no-cache, max-age=0, must-revalidate, proxy-mustcheck 41 | Oracle Application Server 9i 9.0.3.1;private 42 | PacketShaper httpd 1.00;no-cache 43 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 44 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 45 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 46 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 47 | Sun Java System Web Server 7.0;public, max-age=1780 48 | Sun Java System Web Server 7.0;public, max-age=1800 49 | Sun ONE Web Server 6.1;max-age=7699 50 | thttpd 2.26;no-cache,no-store 51 | WallBotz 500 thttpd 2.25b;no-cache,no-store 52 | webcamXP PRO 2006 2.16.456x BETA;no-cache, must revalidate 53 | webcamXP PRO 2006 2.20.024;no-cache, must revalidate 54 | webcamXP PRO 2006 2.37.144;no-cache, must revalidate 55 | webcamXP PRO 2007 3.60.220;no-cache, must revalidate 56 | webcamXP PRO 2007 3.72.440;no-cache, must revalidate 57 | webcamXP PRO 2007 3.96.000 beta;no-cache, must revalidate 58 | Zope 2.10.4;max-age=10 59 | Zope 2.5.0;max-age=3600 60 | Zope 2.7.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 61 | Zope 2.8.4;max-age=3600 62 | -------------------------------------------------------------------------------- /database/get_long/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;" 2 | Apache 1.3.33;" 3 | Apache 1.3.37;" 4 | Apache 2.2.3;" 5 | Apache 2.2.4;" 6 | IBM HTTP Server 6.1.0.19;" 7 | Microsoft IIS 5.0;" 8 | Netscape Enterprise Server 4.1;" 9 | Oracle Application Server 10g 10.1.2.2.0;" 10 | Sun ONE Web Server 6.1;" 11 | WN Server 2.4.7;" 12 | -------------------------------------------------------------------------------- /database/get_long/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | GlobalSCAPE Secure Server 3.3;192.168.4.72 2 | Jigsaw 2.2.5;w3t 3 | KGet web interface 2.1.3;KGet Webinterface Authorization 4 | lighttpd 1.4.18;freenas 5 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 6 | SWAT 3.0.24;SWAT 7 | Tandberg Videoconference Management;InterMediaLab 8 | -------------------------------------------------------------------------------- /database/get_long/pragma.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 3.4.2;no-cache 2 | AOLserver 4.0.10;no-cache 3 | Apache 1.3.33;no-cache 4 | Apache 1.3.37;no-cache 5 | Apache 2.0.59;no-cache 6 | Apache 2.0.59;No-cache 7 | Apache 2.2.3;no-cache 8 | Apache 2.2.4;no-cache 9 | Apache 2.2.6;no-cache 10 | Cherokee 0.6.0;no-cache 11 | Cherokee 0.99;no-cache 12 | Cougar 9.5.6001.6264;no-cache, xResetStrm=1 13 | Dell 1710n;no-cache 14 | Dell 3232;no-cache 15 | Dell M5200;no-cache 16 | FlexWATCH FW-3440-B;no-cache 17 | GlobalSCAPE Secure Server 3.3;no-cache 18 | Hiawatha 6.11;no-cache 19 | IBM HTTP Server 6.0.2.19;no-cache 20 | Jana-Server 2.4.8.51;no-cache 21 | Jetty 6.1.1;no-cache 22 | KLone 2.1.0rc1;no-cache 23 | Lexmark C750;no-cache 24 | Lexmark E323;no-cache 25 | Lexmark T630;no-cache 26 | lighttpd 1.4.22;no-cache 27 | LiteSpeed Web Server 3.3;no-cache 28 | Lotus Domino Go Webserver 4.6.2.5;no-cache 29 | Microsoft IIS 6.0;no-cache 30 | Microsoft ISA Server 2006;no-cache 31 | nginx 0.5.32;no-cache 32 | nginx 0.6.20;no-cache 33 | Novell Access Manager 3;no-cache 34 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 35 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 36 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 37 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 38 | Symantec Mail Security for SMTP;No-Cache 39 | webcamXP PRO 2006 2.16.456x BETA;no-cache 40 | webcamXP PRO 2006 2.20.024;no-cache 41 | webcamXP PRO 2006 2.37.144;no-cache 42 | webcamXP PRO 2007 3.60.220;no-cache 43 | webcamXP PRO 2007 3.72.440;no-cache 44 | webcamXP PRO 2007 3.96.000 beta;no-cache 45 | Zope 2.6.0;no-cache 46 | Zope 2.6.1;no-cache 47 | Zope 2.7.5;no-cache 48 | Zope 2.7.7;no-cache 49 | Zope 2.9.5;no-cache 50 | -------------------------------------------------------------------------------- /database/get_long/statustext.fdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/database/get_long/statustext.fdb -------------------------------------------------------------------------------- /database/get_long/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;1 2 | AOLserver 4.0.10;1 3 | Apache 1.3.26;0 4 | Apache 2.0.46;1 5 | Apache 2.0.54;0 6 | Apache 2.0.54;1 7 | Apache 2.0.55;1 8 | Apache 2.0.59;0 9 | Apache 2.0.63;1 10 | Apache 2.2.11;1 11 | Apache 2.2.2;0 12 | Apache 2.2.2;1 13 | Apache 2.2.3;0 14 | Apache 2.2.3;1 15 | Apache 2.2.4;1 16 | Apache 2.2.6;0 17 | BaseHTTPServer 0.3;1 18 | Jetty 5.1.1;1 19 | Mongrel 1.0;1 20 | nginx 0.5.33;1 21 | nginx 0.6.20;1 22 | nginx 0.7.35;1 23 | Oracle Application Server 10g 10.1.2.2.0;1 24 | Roxen 4.5.145;0 25 | Zeus 4.3;1 26 | Zeus 4.41;0 27 | Zope 2.10.4;1 28 | Zope 2.8.4;1 29 | Zope 2.8.6;1 30 | Zope 2.9.6;1 31 | -------------------------------------------------------------------------------- /database/get_long/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.26;, 2 | Apache 2.0.54;, 3 | Apache 2.0.59;, 4 | Apache 2.0.63;, 5 | Apache 2.2.2;, 6 | Apache 2.2.3;, 7 | Apache 2.2.4;, 8 | Apache 2.2.6;, 9 | nginx 0.7.35;, 10 | Zope 2.9.6;, 11 | -------------------------------------------------------------------------------- /database/get_long/vary-order.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;Accept-Encoding 2 | AOLserver 4.0.10;Accept-Encoding 3 | Apache 1.3.26;negotiate,accept-language 4 | Apache 1.3.34;Accept-Encoding 5 | Apache 2.0.46;Accept-Encoding 6 | Apache 2.0.54;Accept-Encoding 7 | Apache 2.0.54;accept-language,accept-charset 8 | Apache 2.0.55;Accept-Encoding 9 | Apache 2.0.59;accept-language,accept-charset 10 | Apache 2.0.63;User-Agent,Accept-Encoding 11 | Apache 2.2.11;Accept-Encoding 12 | Apache 2.2.2;Accept-Encoding 13 | Apache 2.2.2;accept-language,accept-charset 14 | Apache 2.2.3;Accept-Encoding 15 | Apache 2.2.3;accept-language,accept-charset 16 | Apache 2.2.4;Accept-Encoding,Cookie,User-Agent 17 | Apache 2.2.6;accept-language,accept-charset 18 | Apache 2.3.0;Accept-Encoding 19 | BaseHTTPServer 0.3;Host 20 | Jetty 5.1.1;Accept-Encoding 21 | Mongrel 1.0;Accept-Encoding 22 | nginx 0.5.33;Accept-Encoding 23 | nginx 0.6.20;Accept-Language 24 | nginx 0.7.35;accept-language,accept-charset,Accept-Encoding,User-Agent 25 | Oracle Application Server 10g 10.1.2.2.0;Host 26 | Roxen 4.5.145;* 27 | Zeus 4.3;Accept-Encoding 28 | Zeus 4.41;* 29 | Zope 2.10.4;Accept-Encoding 30 | Zope 2.8.4;Accept-Encoding 31 | Zope 2.8.6;Accept-Encoding 32 | Zope 2.9.6;Accept-Encoding 33 | Zope 2.9.6;Accept-Encoding,User-Agent 34 | -------------------------------------------------------------------------------- /database/get_long/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;PHP/5.1.2 2 | Apache 1.3.39;PHP/5.2.5 3 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 4 | Apache 2.2.3;Agavi/0.11.0-dev on PHP/5.2.4 5 | Apache 2.2.3;PHP/4.4.4-8+etch4 6 | Apache 2.2.3;PHP/5.1.6 7 | Apache 2.2.4;PHP/5.2.0 8 | Apache 2.2.4;PHP/5.2.2 9 | Apache 2.2.6;PHP/5.2.5 10 | lighttpd 1.4.22;PHP/5.2.5 11 | Microsoft IIS 5.0;ASP.NET 12 | Microsoft IIS 6.0;ASP.NET 13 | Zeus 4.3;PHP/5.1.6 14 | -------------------------------------------------------------------------------- /database/get_nonexisting/accept-range.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 4.5;bytes 2 | 4D WebSTAR 5.3.3;bytes 3 | Apache 1.3.26;bytes 4 | Apache 1.3.27;bytes 5 | Apache 1.3.33;bytes 6 | Apache 1.3.37;bytes 7 | Apache 2.0.45;bytes 8 | Apache 2.0.46;bytes 9 | Apache 2.0.49;bytes 10 | Apache 2.0.50;bytes 11 | Apache 2.0.51;bytes 12 | Apache 2.0.52;bytes 13 | Apache 2.0.53;bytes 14 | Apache 2.0.54;bytes 15 | Apache 2.0.55;bytes 16 | Apache 2.0.59;bytes 17 | Apache 2.2.2;bytes 18 | Apache 2.2.3;bytes 19 | Apache 2.2.4;bytes 20 | Apache 2.2.6;bytes 21 | Apache 2.2.9;bytes 22 | Ashleys Webserver;bytes 23 | Barracuda Networks Spam Firewall;bytes 24 | Boa 0.94.14rc21;bytes 25 | Caudium 1.4.9;bytes 26 | Compaq HTTP Server 9.9;bytes 27 | IBM HTTP Server 2.0.47.1;bytes 28 | IBM HTTP Server 6.1.0.19;bytes 29 | lighttpd 1.4.16;bytes 30 | Lotus Domino Go Webserver 4.6.2.5;bytes 31 | Microsoft IIS 6.0;bytes 32 | Microsoft IIS 7.0;bytes 33 | NetBotz 320 thttpd 2.25b;bytes 34 | NetBotz 420 thttpd 2.25b;bytes 35 | NetBotz 500 thttpd 2.25b;bytes 36 | Oracle Application Server 10g 10.1.2.2.0;bytes 37 | Oracle Application Server 10g 10.1.3.1.0;bytes 38 | Orion 2.0.7;bytes 39 | QNAP GNS-8000A 4.1.4.0118;bytes 40 | QNAP NAS-2108R 2.27.1024;bytes 41 | QNAP NAS-4010 4.2.0.0606;bytes 42 | QNAP NAS-4100 2.26.0517;bytes 43 | QNAP TS-101 2.0.1.0302;bytes 44 | QNAP TS-101 2.1.0.612T;bytes 45 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 46 | QNAP TS-109 1.1.2.1009T;bytes 47 | QNAP TS-109 1.1.3.1101T;bytes 48 | QNAP TS-209 1.1.1.0831T;bytes 49 | QNAP TS-209 1.1.3.1101T;bytes 50 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 51 | QNAP TS-411U 1.2.0.0531;bytes 52 | Roxen 2.2.213;bytes 53 | Roxen 4.5.111;bytes 54 | Roxen 4.5.145;bytes 55 | Sun ONE Web Server 6.1;bytes 56 | thttpd 2.19-MX;bytes 57 | thttpd 2.20b;bytes 58 | thttpd 2.23beta1;bytes 59 | thttpd 2.24;bytes 60 | thttpd 2.26;bytes 61 | Virtuoso 5.0.3;bytes 62 | WallBotz 500 thttpd 2.25b;bytes 63 | Zeus 4.3;bytes 64 | Zeus 4.41;bytes 65 | -------------------------------------------------------------------------------- /database/get_nonexisting/cache-control.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.5.0.0 X1;no-store, no-cache, must-revalidate 2 | AOLserver 3.4.2;no-cache, must-revalidate, post-check=0, pre-check=0 3 | AOLserver 4.0.10;max-age=0 4 | AOLserver 4.0.10;no-cache, no-store, private, max-age=0 5 | AOLserver 4.0.10;private, no-cache, no-cache="Set-Cookie", no-store, must-revalidate, max-age=0, proxy-revalidate, no-transform 6 | Apache 1.3.26;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 7 | Apache 1.3.26;post-check=0, pre-check=0 8 | Apache 1.3.33;max-age=60 9 | Apache 1.3.34;no-cache 10 | Apache 1.3.37;private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 11 | Apache 2.0.46;max-age=3600 12 | Apache 2.0.46;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 13 | Apache 2.0.52;no-cache, no-store, must-revalidate 14 | Apache 2.0.52;no-store, no-cache, must-revalidate, post-check=0, pre-check=0, private 15 | Apache 2.0.54;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 16 | Apache 2.0.59;no-cache,no-store,max-age=0 17 | Apache 2.2.3;max-age=173 18 | Apache 2.2.3;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 19 | Apache 2.2.4;private, must-revalidate, max-age=0 20 | Apache 2.2.6;no-store, no-cache, must-revalidate 21 | Apache 2.2.8;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 22 | Barracuda Networks Spam Firewall;no-cache,no-store 23 | Cherokee 0.6.0;no-cache 24 | Cherokee 0.99;no-cache 25 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;no-cache 26 | Cougar 9.5.6001.6264;max-age=0, no-cache 27 | firecat 1.0.0 Beta;private 28 | FlexWATCH FW-3440-B;no-cache 29 | GlobalSCAPE Secure Server 3.3;private 30 | Hiawatha 6.11;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 31 | Hiawatha 6.2;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 32 | IBM HTTP Server 6.0.2.19;max-age=0, no-cache, no-store 33 | IBM HTTP Server 6.0.2.19;no-cache 34 | IBM HTTP Server 6.1.0.19;no-cache 35 | Jetty 6.1.1;max-age=0, no-store 36 | KLone 2.1.0rc1;no-cache, must-revalidate 37 | lighttpd 1.4.18;must-revalidate, max-age=30 38 | lighttpd 1.4.18;no-cache, must-revalidate, max-age=0 39 | lighttpd 1.4.19;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 40 | lighttpd 1.4.22;no-store, no-cache, must-revalidate 41 | lighttpd 1.5.0;no-cache 42 | ListManagerWeb 8.8c;max-age=0 43 | LiteSpeed Web Server 3.3;no-store, no-cache, must-revalidate 44 | Lotus Domino Go Webserver 4.6.2.5;no-cache 45 | Microsoft IIS 5.0;max-age=900 46 | Microsoft IIS 6.0;max-age=0, no-cache, no-store 47 | Microsoft IIS 6.0;no-cache 48 | Microsoft IIS 6.0;no-cache, no-store, must-revalidate, post-check=0, pre-check=0 49 | Microsoft IIS 6.0;private,max-age=0 50 | Microsoft IIS 7.0;max-age=600 51 | Microsoft IIS 7.0;no-cache 52 | Microsoft ISA Server 2006;no-cache,max-age=0,must-revalidate 53 | Mongrel 1.0;no-cache 54 | NetBotz 320 thttpd 2.25b;no-cache,no-store 55 | NetBotz 420 thttpd 2.25b;no-cache,no-store 56 | NetBotz 500 thttpd 2.25b;no-cache,no-store 57 | nginx 0.5.32;max-age=0, no-cache, no-store 58 | nginx 0.5.33;no-cache, must-revalidate, max-age=0 59 | nginx 0.5.35;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 60 | nginx 0.6.16;no-cache, must-revalidate, max-age=0 61 | nginx 0.6.20;no-cache 62 | nginx 0.6.26;no-cache 63 | OpenSA 1.0.5;no-cache, no-store, must-revalidate 64 | Oracle Application Server 10g 10.1.2.0.2;no-cache, max-age=0, must-revalidate, proxy-mustcheck 65 | Oracle Application Server 9i 9.0.3.1;private 66 | PacketShaper httpd 1.00;no-cache 67 | Resin 2.1.17;no-cache 68 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 69 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 70 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 71 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 72 | SonicWALL CSM 3200 2.6.0.0;no-cache 73 | Sun Java System Web Server 7.0;public, max-age=1755 74 | Sun Java System Web Server 7.0;public, max-age=1784 75 | Sun ONE Web Server 6.1;max-age=600 76 | Sun ONE Web Server 6.1;max-age=7698 77 | thttpd 2.26;no-cache,no-store 78 | WallBotz 500 thttpd 2.25b;no-cache,no-store 79 | webcamXP PRO 2006 2.16.456x BETA;no-cache, must revalidate 80 | webcamXP PRO 2006 2.20.024;no-cache, must revalidate 81 | webcamXP PRO 2006 2.37.144;no-cache, must revalidate 82 | webcamXP PRO 2007 3.60.220;no-cache, must revalidate 83 | webcamXP PRO 2007 3.72.440;no-cache, must revalidate 84 | webcamXP PRO 2007 3.96.000 beta;no-cache, must revalidate 85 | Zope 2.10.4;max-age=10 86 | Zope 2.5.0;max-age=3600 87 | Zope 2.7.6;max-age=3600, must-revalidate 88 | Zope 2.7.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 89 | Zope 2.8.4;max-age=3600 90 | -------------------------------------------------------------------------------- /database/get_nonexisting/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.26;" 2 | Apache 1.3.27;" 3 | Apache 1.3.33;" 4 | Apache 1.3.37;" 5 | Apache 2.0.45;" 6 | Apache 2.0.46;" 7 | Apache 2.0.49;" 8 | Apache 2.0.51;" 9 | Apache 2.0.52;" 10 | Apache 2.0.53;" 11 | Apache 2.0.54;" 12 | Apache 2.2.3;" 13 | Apache 2.2.4;" 14 | Compaq HTTP Server 9.9;" 15 | IBM HTTP Server 2.0.47.1;" 16 | IBM HTTP Server 6.1.0.19;" 17 | lighttpd 1.4.16;" 18 | lighttpd 1.4.18;" 19 | lighttpd 1.4.19;" 20 | Microsoft IIS 5.0;" 21 | Microsoft IIS 6.0;" 22 | Microsoft IIS 7.0;" 23 | Oracle Application Server 10g 10.1.2.2.0;" 24 | Oracle Application Server 10g 10.1.3.1.0;" 25 | Roxen 4.5.111;" 26 | Sun ONE Web Server 6.1;" 27 | WN Server 2.4.7;" 28 | -------------------------------------------------------------------------------- /database/get_nonexisting/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | GlobalSCAPE Secure Server 3.3;192.168.4.72 2 | Jigsaw 2.2.5;w3t 3 | KGet web interface 2.1.3;KGet Webinterface Authorization 4 | lighttpd 1.4.18;freenas 5 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 6 | SWAT 3.0.24;SWAT 7 | -------------------------------------------------------------------------------- /database/get_nonexisting/pragma.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.5.0.0 X1;no-cache 2 | AOLserver 3.4.2;no-cache 3 | AOLserver 4.0.10;no-cache 4 | Apache 1.3.26;no-cache 5 | Apache 1.3.27;no-cache 6 | Apache 1.3.37;no-cache 7 | Apache 2.0.46;no-cache 8 | Apache 2.0.52;no-cache 9 | Apache 2.0.54;no-cache 10 | Apache 2.0.59;no-cache 11 | Apache 2.0.59;No-cache 12 | Apache 2.2.3;no-cache 13 | Apache 2.2.6;no-cache 14 | Apache 2.2.8;no-cache 15 | Belkin Router 2.00.002;no-cache 16 | Cherokee 0.6.0;no-cache 17 | Cherokee 0.99;no-cache 18 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;no-cache 19 | Cougar 9.5.6001.6264;no-cache, xResetStrm=1 20 | Dell 1710n;no-cache 21 | Dell 3232;no-cache 22 | Dell M5200;no-cache 23 | FlexWATCH FW-3440-B;no-cache 24 | GlobalSCAPE Secure Server 3.3;no-cache 25 | Hiawatha 6.11;no-cache 26 | Hiawatha 6.2;no-cache 27 | IBM HTTP Server 6.0.2.19;no-cache 28 | Jana-Server 2.4.8.51;no-cache 29 | Jetty 6.1.1;no-cache 30 | KLone 2.1.0rc1;no-cache 31 | Lexmark C750;no-cache 32 | Lexmark E323;no-cache 33 | Lexmark T630;no-cache 34 | lighttpd 1.4.18;no-cache 35 | lighttpd 1.4.19;no-cache 36 | lighttpd 1.4.22;no-cache 37 | LiteSpeed Web Server 3.3;no-cache 38 | Lotus Domino Go Webserver 4.6.2.5;no-cache 39 | Microsoft IIS 6.0;no-cache 40 | Microsoft IIS 7.0;no-cache 41 | Microsoft ISA Server 2006;no-cache 42 | nginx 0.5.32;no-cache 43 | nginx 0.5.35;no-cache 44 | nginx 0.6.16;no-cache 45 | nginx 0.6.20;no-cache 46 | Novell Access Manager 3;no-cache 47 | OpenSA 1.0.5;no-cache 48 | Resin 2.1.17;no-cache 49 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 50 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 51 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 52 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 53 | Symantec Mail Security for SMTP;No-Cache 54 | webcamXP PRO 2006 2.16.456x BETA;no-cache 55 | webcamXP PRO 2006 2.20.024;no-cache 56 | webcamXP PRO 2006 2.37.144;no-cache 57 | webcamXP PRO 2007 3.60.220;no-cache 58 | webcamXP PRO 2007 3.72.440;no-cache 59 | webcamXP PRO 2007 3.96.000 beta;no-cache 60 | Zope 2.6.0;no-cache 61 | Zope 2.6.1;no-cache 62 | Zope 2.7.5;no-cache 63 | Zope 2.7.7;no-cache 64 | Zope 2.9.5;no-cache 65 | -------------------------------------------------------------------------------- /database/get_nonexisting/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;1 2 | AOLserver 4.0.10;1 3 | Apache 1.3.26;0 4 | Apache 1.3.33;1 5 | Apache 2.0.52;1 6 | Apache 2.0.53;0 7 | Apache 2.0.54;0 8 | Apache 2.0.54;1 9 | Apache 2.0.55;1 10 | Apache 2.0.59;0 11 | Apache 2.0.63;1 12 | Apache 2.2.11;1 13 | Apache 2.2.2;0 14 | Apache 2.2.2;1 15 | Apache 2.2.3;0 16 | Apache 2.2.4;1 17 | Apache 2.2.6;0 18 | BaseHTTPServer 0.3;1 19 | Compaq HTTP Server 9.9;0 20 | lighttpd 1.4.19;1 21 | Microsoft IIS 6.0;1 22 | Mongrel 1.0;1 23 | nginx 0.5.33;1 24 | nginx 0.6.20;1 25 | nginx 0.7.35;1 26 | Oracle Application Server 10g 10.1.2.2.0;1 27 | Oracle Application Server 10g 10.1.3.1.0;0 28 | Roxen 4.5.145;0 29 | Zeus 4.3;1 30 | Zeus 4.41;0 31 | Zope 2.10.4;1 32 | Zope 2.7.6;1 33 | Zope 2.8.4;1 34 | Zope 2.8.6;1 35 | Zope 2.9.6;1 36 | -------------------------------------------------------------------------------- /database/get_nonexisting/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;, 2 | Apache 1.3.26;, 3 | Apache 2.0.52;, 4 | Apache 2.0.53;, 5 | Apache 2.0.54;, 6 | Apache 2.0.59;, 7 | Apache 2.0.63;, 8 | Apache 2.2.2;, 9 | Apache 2.2.3;, 10 | Apache 2.2.4;, 11 | Apache 2.2.6;, 12 | Compaq HTTP Server 9.9;, 13 | lighttpd 1.4.18;, 14 | lighttpd 1.4.19;, 15 | Microsoft IIS 6.0;, 16 | nginx 0.7.35;, 17 | Zope 2.9.6;, 18 | -------------------------------------------------------------------------------- /database/get_nonexisting/vary-order.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;Accept,Accept-Encoding,Accept-Language 2 | AOLserver 4.0.10;Accept-Encoding 3 | Apache 1.3.26;negotiate,accept-language 4 | Apache 1.3.33;Accept-Encoding 5 | Apache 1.3.34;Accept-Encoding 6 | Apache 1.3.37;* 7 | Apache 2.0.52;Accept-Encoding,User-Agent 8 | Apache 2.0.53;accept-language,accept-charset 9 | Apache 2.0.54;Accept-Encoding 10 | Apache 2.0.54;accept-language,accept-charset 11 | Apache 2.0.55;Accept-Encoding 12 | Apache 2.0.59;accept-language,accept-charset 13 | Apache 2.0.63;User-Agent,Accept-Encoding 14 | Apache 2.2.11;Accept-Encoding 15 | Apache 2.2.2;Accept-Encoding 16 | Apache 2.2.2;accept-language,accept-charset 17 | Apache 2.2.3;accept-language,accept-charset 18 | Apache 2.2.4;Accept-Encoding,Cookie,User-Agent 19 | Apache 2.2.4;User-Agent 20 | Apache 2.2.6;accept-language,accept-charset 21 | Apache 2.3.0;Accept-Encoding 22 | BaseHTTPServer 0.3;Host 23 | Compaq HTTP Server 9.9;negotiate,accept-language 24 | lighttpd 1.4.18;Accept-Encoding,Cookie 25 | lighttpd 1.4.19;Accept-Encoding,User-Agent 26 | Microsoft IIS 6.0;Accept-Encoding 27 | Microsoft IIS 6.0;Accept-Encoding,User-Agent 28 | Mongrel 1.0;Accept-Encoding 29 | nginx 0.5.33;Accept-Encoding 30 | nginx 0.6.20;Accept-Language 31 | nginx 0.7.35;Accept-Encoding,User-Agent 32 | Oracle Application Server 10g 10.1.2.2.0;Host 33 | Oracle Application Server 10g 10.1.3.1.0;accept-language 34 | Roxen 4.5.145;* 35 | Zeus 4.3;Accept-Encoding 36 | Zeus 4.41;* 37 | Zope 2.10.4;Accept-Encoding 38 | Zope 2.7.6;Cookie 39 | Zope 2.8.4;Accept-Encoding 40 | Zope 2.8.6;Accept-Encoding 41 | Zope 2.9.6;Accept-Encoding 42 | Zope 2.9.6;Accept-Encoding,User-Agent 43 | -------------------------------------------------------------------------------- /database/get_nonexisting/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;PHP/5.1.2 2 | Abyss 2.5.0.0 X1;PHP/5.2.2 3 | Abyss 2.5.0.0 X1;PHP/5.2.4 4 | Abyss 2.5.0.0 X2;PHP/5.2.2 5 | Abyss 2.5.0.0 X2;PHP/5.2.5 6 | Apache 1.3.26;PHP/4.1.2 7 | Apache 1.3.26;PHP/4.3.11 8 | Apache 1.3.33;PHP/4.3.8-9 9 | Apache 1.3.33;PHP/4.4.2 10 | Apache 1.3.33;PHP/5.2.5-0.dotdeb.1 11 | Apache 1.3.34;PHP/4.4.2 12 | Apache 1.3.37;PHP/4.3.10-22 13 | Apache 1.3.37;PHP/4.4.6 14 | Apache 1.3.37;PHP/4.4.7 15 | Apache 1.3.39;PHP/5.2.5 16 | Apache 2.0.46;PHP/5.1.2 17 | Apache 2.0.46;PHP/5.1.6 18 | Apache 2.0.49;PHP/4.3.9 19 | Apache 2.0.52;PHP/4.3.9 20 | Apache 2.0.52;PHP/5.1.4 21 | Apache 2.0.52;PHP/5.1.6 22 | Apache 2.0.54;PHP/4.3.10-22 23 | Apache 2.0.54;PHP/4.4.6 24 | Apache 2.0.54;PHP/5.0.5-Debian-0.8~sarge1 25 | Apache 2.0.59;PHP/5.2.1 26 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 27 | Apache 2.2.3;Agavi/0.11.0-dev on PHP/5.2.4 28 | Apache 2.2.3;PHP/4.4.4-8+etch4 29 | Apache 2.2.3;PHP/5.1.6 30 | Apache 2.2.3;PHP/5.2.1 31 | Apache 2.2.3;PHP/5.2.3 32 | Apache 2.2.3;PHP/5.2.5-0.dotdeb.1 33 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 34 | Apache 2.2.4;PHP/5.2.0 35 | Apache 2.2.4;PHP/5.2.2 36 | Apache 2.2.6;PHP/5.2.5 37 | Apache 2.2.8;PHP/5.2.5 38 | lighttpd 1.4.18;PHP/5.2.1 39 | lighttpd 1.4.19;PHP/5.2.8 40 | lighttpd 1.4.22;PHP/5.2.5 41 | Microsoft IIS 5.0;ASP.NET 42 | Microsoft IIS 6.0;ASP.NET 43 | Microsoft IIS 6.0;ASP.NET 2.0 44 | Microsoft IIS 7.0;ASP.NET 45 | nginx 0.6.16;PHP/5.2.4 46 | nginx 0.7.35;PHP/5.2.4 47 | Oracle Application Server 10g 10.1.2.0.2;PHP/4.3.4 48 | Zeus 4.3;PHP/5.1.6 49 | -------------------------------------------------------------------------------- /database/head_existing/accept-range.fdb: -------------------------------------------------------------------------------- 1 | 0W 0.8c;bytes 2 | 4D WebSTAR 4.5;bytes 3 | 4D WebSTAR 5.3.3;bytes 4 | and-httpd 0.99.11;bytes 5 | Apache 1.2.6;bytes 6 | Apache 1.3.12;bytes 7 | Apache 1.3.17;bytes 8 | Apache 1.3.26;bytes 9 | Apache 1.3.27;bytes 10 | Apache 1.3.29;bytes 11 | Apache 1.3.31;bytes 12 | Apache 1.3.33;bytes 13 | Apache 1.3.34;bytes 14 | Apache 1.3.35;bytes 15 | Apache 1.3.37;bytes 16 | Apache 1.3.39;bytes 17 | Apache 1.3.41;bytes 18 | Apache 2.0.46;bytes 19 | Apache 2.0.48;bytes 20 | Apache 2.0.49;bytes 21 | Apache 2.0.50;bytes 22 | Apache 2.0.52;bytes 23 | Apache 2.0.54;bytes 24 | Apache 2.0.55;bytes 25 | Apache 2.0.59;bytes 26 | Apache 2.0.59;none 27 | Apache 2.2.0;bytes 28 | Apache 2.2.2;bytes 29 | Apache 2.2.3;bytes 30 | Apache 2.2.4;bytes 31 | Apache 2.2.6;bytes 32 | Apache 2.2.8;bytes 33 | Apache 2.2.9;bytes 34 | Apache 2.3.0;bytes 35 | Ashleys Webserver;bytes 36 | BadBlue 2.4;bytes 37 | BadBlue 2.5;bytes 38 | BadBlue 2.6;bytes 39 | BadBlue 2.7;bytes 40 | BarracudaDrive 3.9.1;bytes 41 | Barracuda Networks Spam Firewall;bytes 42 | Boa 0.94.14rc21;bytes 43 | bozohttpd 20080303;bytes 44 | Caudium 1.4.9;bytes 45 | Compaq HTTP Server 9.9;bytes 46 | Fortinet Fortigate;bytes 47 | Gatling 0.10;bytes 48 | lighttpd 1.4.13;bytes 49 | lighttpd 1.4.16;bytes 50 | lighttpd 1.4.18;bytes 51 | Lotus Domino Go Webserver 4.6.2.5;bytes 52 | Microsoft IIS 5.0;bytes 53 | Microsoft IIS 5.1;bytes 54 | Microsoft IIS 6.0;bytes 55 | Microsoft IIS 7.0;bytes 56 | NetBotz 320 thttpd 2.25b;bytes 57 | NetBotz 420 thttpd 2.25b;bytes 58 | NetBotz 500 thttpd 2.25b;bytes 59 | Netscape Enterprise Server 3.5.1;bytes 60 | Netscape Enterprise Server 6.0;bytes 61 | NetWare Enterprise Web Server 5.1;bytes 62 | nginx 0.5.19;bytes 63 | nginx 0.5.30;none 64 | nginx 0.5.32;bytes 65 | OpenSA 1.0.1;bytes 66 | Oracle Application Server 10g 10.1.2.0.0;bytes 67 | Oracle Application Server 10g 10.1.2.0.2;bytes 68 | Oracle Application Server 10g 10.1.2.2.0;bytes 69 | Oracle Application Server 10g 10.1.3.0.0;bytes 70 | Oracle Application Server 10g 10.1.3.1.0;bytes 71 | Oracle Application Server 10g 9.0.4.0.0;bytes 72 | Oracle Application Server 10g 9.0.4.2.0;bytes 73 | Oracle Application Server 10g 9.0.4.3.0;bytes 74 | Oracle Application Server 9i 9.0.2;bytes 75 | QNAP GNS-8000A 4.1.4.0118;bytes 76 | QNAP NAS-2108R 2.27.1024;bytes 77 | QNAP NAS-4010 4.2.0.0606;bytes 78 | QNAP NAS-4100 2.26.0517;bytes 79 | QNAP TS-101 2.0.1.0302;bytes 80 | QNAP TS-101 2.1.0.612T;bytes 81 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 82 | QNAP TS-109 1.1.2.1009T;bytes 83 | QNAP TS-109 1.1.3.1101T;bytes 84 | QNAP TS-209 1.1.1.0831T;bytes 85 | QNAP TS-209 1.1.3.1101T;bytes 86 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 87 | QNAP TS-411U 1.2.0.0531;bytes 88 | Resin 3.0.6;bytes 89 | Roxen 2.2.213;bytes 90 | Roxen 4.5.111;bytes 91 | Roxen 4.5.145;bytes 92 | Sun ONE Web Server 6.1;bytes 93 | TheServer 2.21L;bytes 94 | thttpd 2.19-MX;bytes 95 | thttpd 2.20b;bytes 96 | thttpd 2.23beta1;bytes 97 | thttpd 2.24;bytes 98 | thttpd 2.26;bytes 99 | Virtuoso 5.0.3;bytes 100 | vqServer 1.9.56;bytes 101 | WallBotz 500 thttpd 2.25b;bytes 102 | Zeus 4.3;bytes 103 | Zeus 4.41;bytes 104 | Zope 2.10.4;none 105 | Zope 2.5.0;none 106 | Zope 2.6.1;none 107 | Zope 2.6.4;none 108 | Zope 2.7.4;none 109 | Zope 2.7.5;none 110 | Zope 2.7.6;none 111 | Zope 2.7.7;none 112 | Zope 2.7.8;none 113 | Zope 2.7.9;none 114 | Zope 2.8.0;none 115 | Zope 2.8.2;none 116 | Zope 2.8.4;none 117 | Zope 2.8.6;none 118 | Zope 2.8.7;none 119 | Zope 2.9.2;none 120 | Zope 2.9.3;none 121 | Zope 2.9.5;none 122 | Zope 2.9.6;none 123 | Zope 2.9.7;none 124 | Zope 2.9.8;none 125 | -------------------------------------------------------------------------------- /database/head_existing/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;" 2 | Apache 1.2.6;" 3 | Apache 1.3.12;" 4 | Apache 1.3.17;" 5 | Apache 1.3.26;" 6 | Apache 1.3.27;" 7 | Apache 1.3.29;" 8 | Apache 1.3.31;" 9 | Apache 1.3.33;" 10 | Apache 1.3.34;" 11 | Apache 1.3.35;" 12 | Apache 1.3.37;" 13 | Apache 1.3.39;" 14 | Apache 1.3.41;" 15 | Apache 2.0.46;" 16 | Apache 2.0.48;" 17 | Apache 2.0.49;" 18 | Apache 2.0.52;" 19 | Apache 2.0.54;" 20 | Apache 2.0.55;" 21 | Apache 2.0.59;" 22 | Apache 2.2.0;" 23 | Apache 2.2.2;" 24 | Apache 2.2.3;" 25 | Apache 2.2.4;" 26 | Apache 2.2.6;" 27 | Apache 2.2.8;" 28 | Apache 2.3.0;" 29 | BadBlue 2.4;" 30 | BadBlue 2.5;" 31 | BadBlue 2.6;" 32 | BadBlue 2.7;" 33 | Compaq HTTP Server 9.9;" 34 | Fortinet Fortigate;" 35 | Jigsaw 2.2.6;" 36 | Jigsaw 2.3.0-beta1;" 37 | lighttpd 1.4.13;" 38 | lighttpd 1.4.16;" 39 | lighttpd 1.4.18;" 40 | lighttpd 1.4.19;" 41 | Microsoft IIS 5.0;" 42 | Microsoft IIS 5.1;" 43 | Microsoft IIS 6.0;" 44 | Microsoft IIS 7.0;" 45 | Netscape Enterprise Server 3.5.1;" 46 | Netscape Enterprise Server 4.1;" 47 | Netscape Enterprise Server 6.0;" 48 | NetWare Enterprise Web Server 5.1;" 49 | nginx 0.6.26;" 50 | OpenSA 1.0.1;" 51 | Oracle Application Server 10g 10.1.2.0.0;" 52 | Oracle Application Server 10g 10.1.2.0.2;" 53 | Oracle Application Server 10g 10.1.2.2.0;" 54 | Oracle Application Server 10g 10.1.3.0.0;" 55 | Oracle Application Server 10g 10.1.3.1.0;" 56 | Oracle Application Server 10g 9.0.4.0.0;" 57 | Oracle Application Server 10g 9.0.4.2.0;" 58 | Oracle Application Server 10g 9.0.4.3.0;" 59 | Oracle Application Server 9i 9.0.2;" 60 | Resin 3.0.6;" 61 | Roxen 4.5.111;" 62 | Roxen 4.5.145;" 63 | Sun ONE Web Server 6.1;" 64 | Yaws 1.65;" 65 | Zeus 4.41;" 66 | -------------------------------------------------------------------------------- /database/head_existing/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | GlobalSCAPE Secure Server 3.3;192.168.4.72 2 | Jigsaw 2.2.5;w3t 3 | KGet web interface 2.1.3;KGet Webinterface Authorization 4 | lighttpd 1.4.18;freenas 5 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 6 | Netgear RP114 3.26;RP114 7 | Zoom ADSL;WebAdmin 8 | -------------------------------------------------------------------------------- /database/head_existing/options-public.fdb: -------------------------------------------------------------------------------- 1 | Cougar 9.5.6001.6264;GET,POST,OPTIONS 2 | -------------------------------------------------------------------------------- /database/head_existing/pragma.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | Abyss 2.5.0.0 X1;no-cache 3 | AOLserver 3.3.1;No-Cache 4 | AOLserver 4.0.10a;no-cache 5 | AOLserver 4.0.10;no-cache 6 | AOLserver 4.5.0;no-cache 7 | Apache 1.3.26;no-cache 8 | Apache 1.3.27;no-cache 9 | Apache 1.3.33;no-cache 10 | Apache 1.3.34;no-cache 11 | Apache 1.3.37;no-cache 12 | Apache 1.3.39;no-cache 13 | Apache 2.0.45;no-cache 14 | Apache 2.0.46;no-cache 15 | Apache 2.0.52;no-cache 16 | Apache 2.0.54;no-cache 17 | Apache 2.0.59;nocache 18 | Apache 2.0.59;No-cache 19 | Apache 2.2.2;no-cache 20 | Apache 2.2.3;no-cache 21 | Apache 2.2.3;private 22 | Apache 2.2.4;no-cache 23 | Apache 2.2.6;no-cache 24 | Belkin Router 2.00.002;no-cache 25 | Cherokee 0.6.0;no-cache 26 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;no-cache 27 | Cougar 9.5.6001.6264;no-cache 28 | FlexWATCH FW-3440-B;no-cache 29 | fnord 1.8a;no-cache 30 | GlobalSCAPE Secure Server 3.3;no-cache 31 | Hiawatha 6.11;no-cache 32 | Hiawatha 6.2;no-cache 33 | IBM HTTP Server 6.0.2.19;no-cache 34 | IceWarp 8.3.0;no-cache 35 | Jana-Server 2.4.8.51;no-cache 36 | Jetty 6.1.1;no-cache 37 | lighttpd 1.4.19;no-cache 38 | lighttpd 1.4.22;no-cache 39 | LiteSpeed Web Server 3.3;no-cache 40 | Microsoft IIS 6.0;no-cache 41 | Nanoweb 2.2.10;no-cache 42 | nginx 0.5.32;no-cache 43 | nginx 0.5.35;no-cache 44 | nginx 0.6.16;no-cache 45 | nginx 0.6.20;no-cache 46 | Novell Access Manager 3;no-cache 47 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 48 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 49 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 50 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 51 | Roxen 2.2.213;no-cache 52 | SnapStream Digital Video Recorder;no-cache 53 | Sony SNC-RZ30 NetEVI 1.09;no-cache 54 | Sony SNC-RZ30 NetEVI 2.05g;no-cache 55 | Sony SNC-RZ30 NetEVI 2.05;no-cache 56 | Sony SNC-RZ30 NetEVI 2.06;no-cache 57 | Sony SNC-RZ30 NetEVI 2.13;no-cache 58 | Sony SNC-RZ30 NetEVI 2.14;no-cache 59 | Sony SNC-RZ30 NetEVI 2.24;no-cache 60 | Sony SNC-RZ30 NetEVI 3.01;no-cache 61 | Sony SNC-RZ30 NetEVI 3.02;no-cache 62 | Sony SNC-RZ30 NetEVI 3.03;no-cache 63 | Sony SNC-RZ30 NetEVI 3.10a;no-cache 64 | Sony SNC-RZ30 NetEVI 3.10;no-cache 65 | Sony SNC-RZ30 NetEVI 3.14;no-cache 66 | Sony SNC-Z20 NetZoom 1.00;no-cache 67 | Symantec Mail Security for SMTP;No-Cache 68 | WDaemon 9.6.1;no-cache 69 | webcamXP PRO 2006 2.16.456x BETA;no-cache 70 | webcamXP PRO 2006 2.20.024;no-cache 71 | webcamXP PRO 2006 2.37.144;no-cache 72 | webcamXP PRO 2007 3.60.220;no-cache 73 | webcamXP PRO 2007 3.72.440;no-cache 74 | webcamXP PRO 2007 3.96.000 beta;no-cache 75 | Zope 2.6.0;no-cache 76 | Zyxel P-2602HW-D1A RomPager 4.51;no-cache 77 | Zyxel P-660R-D3 RomPager 4.51;no-cache 78 | Zyxel P-661H-D1 RomPager 4.51;no-cache 79 | Zyxel P-662HW-D1 RomPager 4.51;no-cache 80 | Zyxel Prestige 662H-61 RomPager 4.07;no-cache 81 | Zyxel Prestige 662H-63/67 RomPager 4.07;no-cache 82 | Zyxel ZyWALL 10W RomPager 4.07;no-cache 83 | -------------------------------------------------------------------------------- /database/head_existing/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;1 2 | AOLserver 3.4.2;1 3 | AOLserver 4.0.10;1 4 | Apache 1.3.33;0 5 | Apache 1.3.33;1 6 | Apache 1.3.37;1 7 | Apache 2.0.46;1 8 | Apache 2.0.52;1 9 | Apache 2.0.54;0 10 | Apache 2.0.54;1 11 | Apache 2.0.55;1 12 | Apache 2.0.59;1 13 | Apache 2.0.63;1 14 | Apache 2.2.11;1 15 | Apache 2.2.2;1 16 | Apache 2.2.3;1 17 | Apache 2.2.4;1 18 | Apache 2.2.6;1 19 | BaseHTTPServer 0.3;1 20 | Compaq HTTP Server 9.9;0 21 | IBM HTTP Server 6.1.0.19;0 22 | Lotus Domino Go Webserver 4.6.2.5;0 23 | Mongrel 1.0;1 24 | Netscape Enterprise Server 3.5.1;1 25 | nginx 0.5.33;1 26 | nginx 0.6.20;1 27 | Oracle Application Server 10g 10.1.2.0.0;0 28 | Oracle Application Server 10g 10.1.2.2.0;1 29 | Roxen 4.5.145;0 30 | Zeus 4.3;1 31 | Zope 2.10.4;1 32 | Zope 2.7.5;0 33 | Zope 2.7.6;1 34 | Zope 2.8.4;1 35 | Zope 2.8.6;1 36 | Zope 2.9.6;1 37 | -------------------------------------------------------------------------------- /database/head_existing/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.33;, 2 | Apache 1.3.34;, 3 | Apache 2.0.52;, 4 | Apache 2.0.54;, 5 | Apache 2.0.63;, 6 | Apache 2.2.2;, 7 | Apache 2.2.4;, 8 | Apache 2.2.6;, 9 | Compaq HTTP Server 9.9;, 10 | lighttpd 1.4.18;, 11 | Zope 2.9.6;, 12 | -------------------------------------------------------------------------------- /database/head_existing/vary-order.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;Accept-Encoding 2 | AOLserver 3.4.2;Accept-Encoding 3 | AOLserver 4.0.10;Accept-Encoding 4 | Apache 1.3.33;Accept-Encoding 5 | Apache 1.3.33;negotiate,accept-language,accept-charset 6 | Apache 1.3.34;Accept-Encoding,User-Agent 7 | Apache 1.3.37;Host 8 | Apache 2.0.46;Accept-Encoding 9 | Apache 2.0.52;Accept-Encoding,User-Agent 10 | Apache 2.0.54;Accept-Encoding 11 | Apache 2.0.54;negotiate,accept-language 12 | Apache 2.0.55;Accept-Encoding 13 | Apache 2.0.59;Cookie 14 | Apache 2.0.63;User-Agent,Accept-Encoding 15 | Apache 2.2.11;Accept-Encoding 16 | Apache 2.2.2;Accept-Encoding 17 | Apache 2.2.2;Accept-Encoding,Cookie 18 | Apache 2.2.3;Accept-Encoding 19 | Apache 2.2.4;Accept-Encoding,Cookie,User-Agent 20 | Apache 2.2.4;User-Agent 21 | Apache 2.2.6;Cookie,User-Agent,Accept-Language 22 | Apache 2.3.0;Accept-Encoding 23 | BaseHTTPServer 0.3;Host 24 | Compaq HTTP Server 9.9;negotiate,accept-language 25 | IBM HTTP Server 6.1.0.19;* 26 | lighttpd 1.4.18;Accept-Encoding,Cookie 27 | Lotus Domino Go Webserver 4.6.2.5;* 28 | Microsoft IIS 6.0;Accept-Encoding 29 | Mongrel 1.0;Accept-Encoding 30 | Netscape Enterprise Server 3.5.1;Accept-language 31 | nginx 0.5.33;Accept-Encoding 32 | nginx 0.6.20;Accept-Language 33 | Oracle Application Server 10g 10.1.2.0.0;negotiate 34 | Oracle Application Server 10g 10.1.2.2.0;Host 35 | Roxen 4.5.145;* 36 | Zeus 4.3;Accept-Encoding 37 | Zope 2.10.4;Accept-Encoding 38 | Zope 2.7.5;* 39 | Zope 2.7.6;Cookie 40 | Zope 2.8.4;Accept-Encoding 41 | Zope 2.8.6;Accept-Encoding 42 | Zope 2.9.6;Accept-Encoding 43 | Zope 2.9.6;Accept-Encoding,User-Agent 44 | -------------------------------------------------------------------------------- /database/head_existing/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;PHP/4.3.9 2 | Abyss 2.4.0.3 X2;PHP/5.1.2 3 | Abyss 2.4.0.3 X2;PHP/5.2.0 4 | Abyss 2.5.0.0 X1;PHP/5.2.2 5 | Abyss 2.5.0.0 X1;PHP/5.2.4 6 | Abyss 2.5.0.0 X2;PHP/5.2.2 7 | Abyss 2.5.0.0 X2;PHP/5.2.4 8 | Abyss 2.5.0.0 X2;PHP/5.2.5 9 | AOLserver 4.0.10a;PHP/5.0.3 10 | Apache 1.3.26;PHP/4.1.2 11 | Apache 1.3.26;PHP/4.2.2 12 | Apache 1.3.27;PHP/4.1.2 13 | Apache 1.3.33;PHP/4.3.10 14 | Apache 1.3.33;PHP/4.3.8-9 15 | Apache 1.3.33;PHP/4.4.2 16 | Apache 1.3.33;PHP/4.4.7 17 | Apache 1.3.33;PHP/5.2.4 18 | Apache 1.3.33;PHP/5.2.5-0.dotdeb.1 19 | Apache 1.3.34;PHP/4.4.2 20 | Apache 1.3.34;PHP/4.4.4-8+etch4 21 | Apache 1.3.34;PHP/5.2.0-8+etch7 22 | Apache 1.3.37;PHP/4.3.11 23 | Apache 1.3.37;PHP/4.4.6 24 | Apache 1.3.37;PHP/4.4.7 25 | Apache 1.3.37;PHP/5.1.2 26 | Apache 1.3.37;PHP/5.2.1 27 | Apache 1.3.39;PHP/4.4.7 28 | Apache 1.3.39;PHP/5.2.3 29 | Apache 2.0.46;PHP/4.3.2 30 | Apache 2.0.46;PHP/5.1.2 31 | Apache 2.0.46;PHP/5.1.6 32 | Apache 2.0.49;PHP/4.3.9 33 | Apache 2.0.51;PHP/4.3.10 34 | Apache 2.0.52;PHP/4.3.9 35 | Apache 2.0.52;PHP/4.4.1 36 | Apache 2.0.52;PHP/5.1.4 37 | Apache 2.0.52;PHP/5.1.6 38 | Apache 2.0.53;PHP/4.3.10 39 | Apache 2.0.54;PHP/4.3.10-18 40 | Apache 2.0.54;PHP/4.3.10-22 41 | Apache 2.0.54;PHP/4.4.0 42 | Apache 2.0.54;PHP/4.4.6 43 | Apache 2.0.54;PHP/4.4.7 44 | Apache 2.0.54;PHP/5.0.5-Debian-0.8~sarge1 45 | Apache 2.0.54;PHP/5.2.4-0.dotdeb.0 46 | Apache 2.0.55;PHP/5.1.2 47 | Apache 2.0.58;PHP/5.1.5 48 | Apache 2.0.59;PHP/5.2.1 49 | Apache 2.0.59;PHP/5.2.4 50 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 51 | Apache 2.2.11;PHP/5.2.8 52 | Apache 2.2.2;PHP/5.1.6 53 | Apache 2.2.3;Agavi/0.11.0-dev on PHP/5.2.4 54 | Apache 2.2.3;PHP/4.4.4-8+etch4 55 | Apache 2.2.3;PHP/5.1.6 56 | Apache 2.2.3;PHP/5.2.0 57 | Apache 2.2.3;PHP/5.2.0-8+etch7 58 | Apache 2.2.3;PHP/5.2.0-8+etch9 59 | Apache 2.2.3;PHP/5.2.1 60 | Apache 2.2.3;PHP/5.2.3 61 | Apache 2.2.3;PHP/5.2.5-0.dotdeb.1 62 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 63 | Apache 2.2.4;PHP/4.4.4-9+lenny1 64 | Apache 2.2.4;PHP/5.1.6 65 | Apache 2.2.4;PHP/5.2.0 66 | Apache 2.2.4;PHP/5.2.1RC3-dev 67 | Apache 2.2.4;PHP/5.2.2 68 | Apache 2.2.6;PHP/5.2.5 69 | Apache 2.2.8;PHP/5.2.5 70 | Cherokee 0.6.0;PHP/5.0.5-3 71 | lighttpd 1.4.18;PHP/5.2.1 72 | lighttpd 1.4.19;PHP/5.2.8 73 | lighttpd 1.4.22;PHP/5.2.5 74 | Microsoft IIS 5.0;ASP.NET 75 | Microsoft IIS 6.0;ASP.NET 76 | Microsoft IIS 6.0;ASP.NET 2.0 77 | Microsoft IIS 7.0;ASP.NET 78 | Nanoweb 2.2.10;t0x-engine/1.4.12 PHP/5.2.9 79 | nginx 0.5.35;Zope (www.zope.org), Python (www.python.org) 80 | nginx 0.6.16;PHP/5.2.4 81 | OpenSA 1.0.4;PHP/4.2.2 82 | Zeus 4.3;PHP/5.1.4 83 | Zeus 4.3;PHP/5.1.6 84 | -------------------------------------------------------------------------------- /database/htrdbc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | usage(){ 4 | echo -en "\nhtrdbc 1.0\n" 5 | echo -en "(c) 2009 by Marc Ruef\n" 6 | echo -en "http://www.computec.ch/projekte/httprecon/\n" 7 | if [ "$(1)" ]; then 8 | echo -en "${1}\n\n" 9 | fi 10 | echo -en "Usage:\t${0} \n" 11 | echo -en "Example:\t${0} database/get_existing\n\n" 12 | } 13 | 14 | cleandb(){ 15 | for FILE in `ls ${1}/*.fdb`; do 16 | echo -en "Cleaning ${FILE} ... " 17 | 18 | cleandb=`cat "${FILE}" | sort | uniq` 19 | echo "${cleandb}" > "${FILE}" 20 | echo -en "done!\n" 21 | done 22 | } 23 | 24 | if [ $# -eq 1 ]; then 25 | cleandb "${1}" 26 | exit 1; 27 | else 28 | usage 29 | exit 2; 30 | fi 31 | -------------------------------------------------------------------------------- /database/options/accept-range.fdb: -------------------------------------------------------------------------------- 1 | and-httpd 0.99.11;bytes 2 | Apache 1.3.37;bytes 3 | Ashleys Webserver;bytes 4 | Barracuda Networks Spam Firewall;bytes 5 | Boa 0.94.14rc21;bytes 6 | Caudium 1.4.9;bytes 7 | IBM HTTP Server 6.1.0.19;bytes 8 | Lotus Domino Go Webserver 4.6.2.5;bytes 9 | Microsoft IIS 5.0;none 10 | Microsoft IIS 5.1;none 11 | Microsoft IIS 6.0;none 12 | NetBotz 320 thttpd 2.25b;bytes 13 | NetBotz 420 thttpd 2.25b;bytes 14 | NetBotz 500 thttpd 2.25b;bytes 15 | QNAP GNS-8000A 4.1.4.0118;bytes 16 | QNAP NAS-2108R 2.27.1024;bytes 17 | QNAP NAS-4010 4.2.0.0606;bytes 18 | QNAP NAS-4100 2.26.0517;bytes 19 | QNAP TS-101 2.0.1.0302;bytes 20 | QNAP TS-101 2.1.0.612T;bytes 21 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 22 | QNAP TS-109 1.1.2.1009T;bytes 23 | QNAP TS-109 1.1.3.1101T;bytes 24 | QNAP TS-209 1.1.1.0831T;bytes 25 | QNAP TS-209 1.1.3.1101T;bytes 26 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 27 | QNAP TS-411U 1.2.0.0531;bytes 28 | Roxen 2.2.213;bytes 29 | Roxen 4.5.111;bytes 30 | Roxen 4.5.145;bytes 31 | thttpd 2.19-MX;bytes 32 | thttpd 2.20b;bytes 33 | thttpd 2.24;bytes 34 | thttpd 2.26;bytes 35 | Virtuoso 5.0.3;bytes 36 | WallBotz 500 thttpd 2.25b;bytes 37 | Zeus 4.41;bytes 38 | -------------------------------------------------------------------------------- /database/options/cache-control.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | Apache 1.3.26;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 3 | Apache 1.3.33;max-age=600 4 | Apache 1.3.37;max-age=0 5 | Apache 1.3.37;private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 6 | Apache 2.0.46;s-maxage=600 7 | Apache 2.0.52;no-cache, must-revalidate 8 | Apache 2.0.54;max-age=86400 9 | Apache 2.0.54;no-cache, pre-check=0, post-check=0 10 | Apache 2.0.54;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 11 | Apache 2.0.58;private, no-cache, no-store, must-revalidate, max-age=0, no-transform 12 | Apache 2.2.11;must-revalidate 13 | Apache 2.2.2;max-age=60 14 | Apache 2.2.3;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 15 | Apache 2.2.3;private 16 | Apache 2.2.4;no-cache, no-store, max-age=0, must-revalidate 17 | Apache 2.2.4;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 18 | Apache 2.2.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 19 | Apache 2.2.6;private 20 | Apache 2.2.8;max-age=86400, 21 | Apache 2.2.9;max-age=600 22 | Apache 2.3.0;max-age=86400 23 | Barracuda Networks Spam Firewall;no-cache,no-store 24 | Cherokee 0.6.0;no-cache 25 | CL-HTTP 70.216;no-cache, max-age=900 26 | FlexWATCH FW-3440-B;no-cache 27 | GlobalSCAPE Secure Server 3.3;private 28 | IBM HTTP Server 6.1.0.19;no-cache 29 | IceWarp 8.3.0;no-store, no-cache, must-revalidate 30 | Jigsaw 2.3.0-beta1;max-age=86400 31 | KLone 2.1.0rc1;no-cache, must-revalidate 32 | lighttpd 1.4.18;must-revalidate, max-age=30 33 | lighttpd 1.4.19;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 34 | lighttpd 1.4.22;no-store, no-cache, must-revalidate 35 | ListManagerWeb 8.8c;max-age=0 36 | LiteSpeed Web Server 3.3;no-store, no-cache, must-revalidate 37 | Microsoft IIS 5.0;private 38 | Microsoft IIS 5.1;private 39 | Microsoft IIS 6.0;max-age=0, no-cache, no-store 40 | Microsoft IIS 6.0;no-cache 41 | Microsoft IIS 6.0;private 42 | Microsoft IIS 6.0;proxy-revalidate 43 | Microsoft IIS 7.0;no-cache 44 | Mongrel 1.0;no-cache 45 | NetBotz 320 thttpd 2.25b;no-cache,no-store 46 | NetBotz 420 thttpd 2.25b;no-cache,no-store 47 | NetBotz 500 thttpd 2.25b;no-cache,no-store 48 | nginx 0.5.33;no-cache, must-revalidate, max-age=0 49 | nginx 0.5.35;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 50 | nginx 0.6.16;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 51 | nginx 0.6.26;private, max-age=0, must-revalidate 52 | Oracle Application Server 10g 10.1.2.0.2;no-cache, max-age=0, must-revalidate, proxy-mustcheck 53 | Oracle Application Server 10g 10.1.2.2.0;private 54 | Oracle Application Server 9i 9.0.3.1;private 55 | PacketShaper httpd 1.00;no-cache 56 | Resin 2.1.17;no-cache 57 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 58 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 59 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 60 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 61 | SnapStream Digital Video Recorder;no-cache 62 | thttpd 2.26;no-cache,no-store 63 | WallBotz 500 thttpd 2.25b;no-cache,no-store 64 | Xerox Phaser 6200;no-cache 65 | Xerox Phaser 7300;no-cache 66 | Xerox Phaser 8200;no-cache 67 | Xerox Phaser 860;no-cache 68 | Yaws 6.0.5;no-store 69 | Zoom ADSL;no-cache 70 | Zope 2.7.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 71 | -------------------------------------------------------------------------------- /database/options/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.37;" 2 | Apache 2.2.3;" 3 | Apache 2.2.8;" 4 | IBM HTTP Server 6.1.0.19;" 5 | Jigsaw 2.2.6;" 6 | Jigsaw 2.3.0-beta1;" 7 | lighttpd 1.4.18;" 8 | lighttpd 1.4.19;" 9 | nginx 0.6.26;" 10 | -------------------------------------------------------------------------------- /database/options/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 5.3.1;webdav 2 | GlobalSCAPE Secure Server 3.3;192.168.4.72 3 | Jigsaw 2.2.5;w3t 4 | KGet web interface 2.1.3;KGet Webinterface Authorization 5 | lighttpd 1.4.18;freenas 6 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 7 | Zoom ADSL;WebAdmin 8 | -------------------------------------------------------------------------------- /database/options/options-delimited.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 5.3.3;, 2 | Abyss 2.5.0.0 X1;, 3 | Abyss 2.5.0.0 X2;, 4 | Abyss 2.6.0.0 X2;, 5 | and-httpd 0.99.11;, 6 | AOLserver 2.3.3;, 7 | Apache 1.2.6;, 8 | Apache 1.3.12;, 9 | Apache 1.3.17;, 10 | Apache 1.3.26;, 11 | Apache 1.3.27;, 12 | Apache 1.3.29;, 13 | Apache 1.3.31;, 14 | Apache 1.3.33;, 15 | Apache 1.3.34;, 16 | Apache 1.3.35;, 17 | Apache 1.3.37;, 18 | Apache 1.3.39;, 19 | Apache 1.3.41;, 20 | Apache 2.0.45;, 21 | Apache 2.0.46;, 22 | Apache 2.0.48;, 23 | Apache 2.0.49;, 24 | Apache 2.0.50;, 25 | Apache 2.0.52;, 26 | Apache 2.0.54;, 27 | Apache 2.0.55;, 28 | Apache 2.0.58;, 29 | Apache 2.0.59;, 30 | Apache 2.2.0;, 31 | Apache 2.2.2;, 32 | Apache 2.2.3;, 33 | Apache 2.2.4;, 34 | Apache 2.2.6;, 35 | Apache 2.2.8;, 36 | Apache 2.2.9;, 37 | Apache 2.3.0;, 38 | BarracudaDrive 3.9.1;, 39 | bozohttpd 20060517;, 40 | bozohttpd 20080303;, 41 | Cherokee 0.6.0;, 42 | Cherokee 0.99;, 43 | Cisco VPN 3000 Concentrator Virata EmWeb R6.2.0;, 44 | CL-HTTP 70.216;, 45 | Dell 1710n;, 46 | Dell 3232;, 47 | Dell M5200;, 48 | Divar 1.00;, 49 | Divar 1.10.538.0;, 50 | Divar 1.11.626.0;, 51 | Divar 1.12.649.0;, 52 | Fortinet Fortigate;, 53 | Hiawatha 6.11;, 54 | Hiawatha 6.2;, 55 | IPC@CHIP 1.01;, 56 | IPC@CHIP 1.04;, 57 | Jetty 6.1.1;, 58 | Jigsaw 2.2.6;, 59 | Jigsaw 2.3.0-beta1;, 60 | Lexmark C750;, 61 | Lexmark E323;, 62 | Lexmark Optra S 1255;, 63 | Lexmark T630;, 64 | lighttpd 1.4.13;, 65 | lighttpd 1.4.16;, 66 | lighttpd 1.4.18;, 67 | lighttpd 1.5.0;, 68 | Lotus Domino Go Webserver 4.6.2.5;, 69 | Microsoft IIS 5.0;, 70 | Microsoft IIS 5.1;, 71 | Microsoft IIS 6.0;, 72 | Microsoft IIS 7.0;, 73 | Nanoweb 2.2.10;, 74 | Netgear RP114 3.26;, 75 | Netopia Router Allegro RomPager 2.10;, 76 | Netscape Enterprise Server 6.0;, 77 | nginx 0.5.30;, 78 | OpenSA 1.0.1;, 79 | OpenSA 1.0.3;, 80 | OpenSA 1.0.4;, 81 | Oracle Application Server 10g 10.1.2.0.0;, 82 | Oracle Application Server 10g 10.1.2.0.2;, 83 | Oracle Application Server 10g 10.1.2.2.0;, 84 | Oracle Application Server 10g 10.1.3.0.0;, 85 | Oracle Application Server 10g 10.1.3.1.0;, 86 | Oracle Application Server 10g 9.0.4.0.0;, 87 | Oracle Application Server 10g 9.0.4.1.0;, 88 | Oracle Application Server 10g 9.0.4.2.0;, 89 | Oracle Application Server 10g 9.0.4.3.0;, 90 | Oracle Application Server 9i 9.0.2;, 91 | Sony SNC-RZ30 NetEVI 1.09;, 92 | Sony SNC-RZ30 NetEVI 2.05;, 93 | Sony SNC-RZ30 NetEVI 2.05g;, 94 | Sony SNC-RZ30 NetEVI 2.06;, 95 | Sony SNC-RZ30 NetEVI 2.13;, 96 | Sony SNC-RZ30 NetEVI 2.14;, 97 | Sony SNC-RZ30 NetEVI 2.24;, 98 | Sony SNC-RZ30 NetEVI 3.01;, 99 | Sony SNC-RZ30 NetEVI 3.02;, 100 | Sony SNC-RZ30 NetEVI 3.03;, 101 | Sony SNC-RZ30 NetEVI 3.10;, 102 | Sony SNC-RZ30 NetEVI 3.10a;, 103 | Sony SNC-RZ30 NetEVI 3.14;, 104 | Sony SNC-Z20 NetZoom 1.00;, 105 | StWeb 1.3.27;, 106 | Sun Java System Web Server 6.1;, 107 | Sun ONE Web Server 6.1;, 108 | Virtuoso 5.0.3;, 109 | vqServer 1.9.56;, 110 | WEBrick 1.3.1;, 111 | WN Server 2.4.7;, 112 | Xerox DocuPrint N4025 Allegro RomPager 3.06b1;, 113 | Xerox Phaser 6200;, 114 | Xerox Phaser 7300;, 115 | Xerox Phaser 8200;, 116 | Xerox Phaser 860;, 117 | Yaws 1.65;, 118 | Yaws 1.68;, 119 | Yaws 1.72;, 120 | Yaws 6.0.5;, 121 | Zeus 4.3;, 122 | Zope 2.10.4;, 123 | Zope 2.5.0;, 124 | Zope 2.5.1;, 125 | Zope 2.6.0;, 126 | Zope 2.6.1;, 127 | Zope 2.6.4;, 128 | Zope 2.7.4;, 129 | Zope 2.7.5;, 130 | Zope 2.7.6;, 131 | Zope 2.7.7;, 132 | Zope 2.7.8;, 133 | Zope 2.7.9;, 134 | Zope 2.8.0;, 135 | Zope 2.8.2;, 136 | Zope 2.8.4;, 137 | Zope 2.8.6;, 138 | Zope 2.8.7;, 139 | Zope 2.9.3;, 140 | Zope 2.9.5;, 141 | Zope 2.9.6;, 142 | Zope 2.9.8;, 143 | Zyxel Prestige 662H-61 RomPager 4.07;, 144 | Zyxel Prestige 662H-63/67 RomPager 4.07;, 145 | Zyxel ZyWALL 10W RomPager 4.07;, 146 | -------------------------------------------------------------------------------- /database/options/options-public.fdb: -------------------------------------------------------------------------------- 1 | CL-HTTP 70.216;put,trace,options,delete,post,get,head 2 | Microsoft IIS 5.0;OPTIONS,TRACE,GET,HEAD,DELETE,PUT,POST,COPY,MOVE,MKCOL,PROPFIND,PROPPATCH,LOCK,UNLOCK,SEARCH 3 | Microsoft IIS 5.0;OPTIONS,TRACE,GET,HEAD,POST 4 | Microsoft IIS 5.1;OPTIONS,TRACE,GET,HEAD,DELETE,PUT,POST,COPY,MOVE,MKCOL,PROPFIND,PROPPATCH,LOCK,UNLOCK,SEARCH 5 | Microsoft IIS 6.0;OPTIONS,TRACE,GET,HEAD,DELETE,PUT,POST,COPY,MOVE,MKCOL,PROPFIND,PROPPATCH,LOCK,UNLOCK,SEARCH 6 | Microsoft IIS 6.0;OPTIONS,TRACE,GET,HEAD,POST 7 | Microsoft IIS 7.0;OPTIONS,TRACE,GET,HEAD,POST 8 | Netscape Enterprise Server 3.5.1G;HEAD,GET,PUT,POST 9 | Netscape Enterprise Server 3.5.1;HEAD,GET,PUT,POST 10 | Netscape Fasttrack 3.02a;HEAD,GET,PUT,POST 11 | -------------------------------------------------------------------------------- /database/options/pragma.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | Apache 1.3.26;no-cache 3 | Apache 1.3.34;no-cache 4 | Apache 1.3.37;no-cache 5 | Apache 2.0.52;no-cache 6 | Apache 2.0.54;no-cache 7 | Apache 2.0.58;no-cache 8 | Apache 2.2.3;no-cache 9 | Apache 2.2.3;private 10 | Apache 2.2.4;no-cache 11 | Apache 2.2.6;no-cache 12 | Cherokee 0.6.0;no-cache 13 | FlexWATCH FW-3440-B;no-cache 14 | GlobalSCAPE Secure Server 3.3;no-cache 15 | IceWarp 8.3.0;no-cache 16 | Jana-Server 2.4.8.51;no-cache 17 | KLone 2.1.0rc1;no-cache 18 | lighttpd 1.4.19;no-cache 19 | lighttpd 1.4.22;no-cache 20 | LiteSpeed Web Server 3.3;no-cache 21 | Microsoft IIS 6.0;no-cache 22 | Microsoft IIS 7.0;no-cache 23 | nginx 0.5.35;no-cache 24 | nginx 0.6.16;no-cache 25 | Novell Access Manager 3;no-cache 26 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 27 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 28 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 29 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 30 | SnapStream Digital Video Recorder;no-cache 31 | -------------------------------------------------------------------------------- /database/options/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 4.0.10;1 2 | Apache 1.3.37;1 3 | Apache 2.0.46;1 4 | Apache 2.0.52;1 5 | Apache 2.0.54;0 6 | Apache 2.0.54;1 7 | Apache 2.0.55;1 8 | Apache 2.0.63;1 9 | Apache 2.2.11;1 10 | Apache 2.2.2;1 11 | Apache 2.2.4;1 12 | lighttpd 1.4.19;1 13 | Mongrel 1.0;1 14 | nginx 0.5.33;1 15 | Oracle Application Server 10g 10.1.2.2.0;1 16 | Roxen 4.5.111;1 17 | Roxen 4.5.145;1 18 | Zeus 4.3;1 19 | Zope 2.8.4;1 20 | Zope 2.9.6;1 21 | -------------------------------------------------------------------------------- /database/options/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.34;, 2 | Apache 2.0.52;, 3 | Apache 2.0.54;, 4 | Apache 2.0.63;, 5 | Apache 2.2.4;, 6 | lighttpd 1.4.18;, 7 | lighttpd 1.4.19;, 8 | Roxen 4.5.111;, 9 | Roxen 4.5.145;, 10 | Zope 2.9.6;, 11 | -------------------------------------------------------------------------------- /database/options/vary-order.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 4.0.10;Accept-Encoding 2 | Apache 1.3.34;Accept-Encoding,User-Agent 3 | Apache 1.3.37;Host 4 | Apache 2.0.46;Accept-Encoding 5 | Apache 2.0.52;Accept-Encoding,User-Agent 6 | Apache 2.0.54;Accept-Encoding 7 | Apache 2.0.54;negotiate,accept-language 8 | Apache 2.0.54;User-Agent 9 | Apache 2.0.55;Accept-Encoding 10 | Apache 2.0.63;User-Agent,Accept-Encoding 11 | Apache 2.2.11;Accept-Encoding 12 | Apache 2.2.2;Accept-Encoding 13 | Apache 2.2.4;Accept-Encoding,Cookie 14 | Apache 2.2.4;User-Agent 15 | Apache 2.3.0;Accept-Encoding 16 | lighttpd 1.4.18;Accept-Encoding,Cookie 17 | lighttpd 1.4.19;Accept-Encoding,User-Agent 18 | Microsoft IIS 6.0;Accept-Encoding 19 | Mongrel 1.0;Accept-Encoding 20 | nginx 0.5.33;Accept-Encoding 21 | Oracle Application Server 10g 10.1.2.2.0;Host 22 | Roxen 4.5.111;Cookie,User-Agent 23 | Roxen 4.5.145;Cookie,User-Agent 24 | Zeus 4.3;Accept-Encoding 25 | Zope 2.8.4;Accept-Encoding 26 | Zope 2.9.6;Accept-Encoding 27 | Zope 2.9.6;Accept-Encoding,User-Agent 28 | -------------------------------------------------------------------------------- /database/options/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.0.0.20 X2;PHP/5.2.0 2 | Abyss 2.4.0.3 X2;PHP/4.3.9 3 | Abyss 2.4.0.3 X2;PHP/5.1.2 4 | Abyss 2.4.0.3 X2;PHP/5.2.0 5 | Abyss 2.5.0.0 X1;PHP/5.2.4 6 | Abyss 2.5.0.0 X2;PHP/5.2.2 7 | Abyss 2.5.0.0 X2;PHP/5.2.4 8 | Abyss 2.5.0.0 X2;PHP/5.2.5 9 | Apache 1.3.26;PHP/4.3.11 10 | Apache 1.3.33;PHP/4.3.8-9 11 | Apache 1.3.34;PHP/4.4.2 12 | Apache 1.3.34;PHP/4.4.4-8+etch4 13 | Apache 1.3.37;PHP/4.4.6 14 | Apache 1.3.37;PHP/5.2.1 15 | Apache 2.0.49;PHP/4.3.9 16 | Apache 2.0.51;PHP/4.3.10 17 | Apache 2.0.52;PHP/4.3.9 18 | Apache 2.0.52;PHP/4.4.1 19 | Apache 2.0.52;PHP/5.1.4 20 | Apache 2.0.53;PHP/4.3.10 21 | Apache 2.0.54;PHP/4.3.10-22 22 | Apache 2.0.54;PHP/4.4.0 23 | Apache 2.0.54;PHP/4.4.6 24 | Apache 2.0.54;PHP/5.0.5-Debian-0.8~sarge1 25 | Apache 2.0.55;PHP/5.1.2 26 | Apache 2.0.58;PHP/5.1.5 27 | Apache 2.0.59;PHP/5.2.1 28 | Apache 2.0.59;PHP/5.2.4 29 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 30 | Apache 2.2.11;PHP/5.2.8 31 | Apache 2.2.3;Agavi/0.11.0-dev on PHP/5.2.4 32 | Apache 2.2.3;PHP/4.4.4-8+etch4 33 | Apache 2.2.3;PHP/5.2.0-8+etch7 34 | Apache 2.2.3;PHP/5.2.1 35 | Apache 2.2.3;PHP/5.2.3 36 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 37 | Apache 2.2.4;PHP/4.4.4-9+lenny1 38 | Apache 2.2.4;PHP/5.1.6 39 | Apache 2.2.4;PHP/5.2.1RC3-dev 40 | Apache 2.2.4;PHP/5.2.2 41 | Apache 2.2.6;PHP/5.2.5 42 | Apache 2.2.8;PHP/5.2.5 43 | lighttpd 1.4.19;PHP/5.2.8 44 | lighttpd 1.4.22;PHP/5.2.5 45 | Microsoft IIS 5.0;ASP.NET 46 | Microsoft IIS 5.1;ASP.NET 47 | Microsoft IIS 6.0;ASP.NET 48 | Microsoft IIS 6.0;ASP.NET 2.0 49 | Microsoft IIS 7.0;ASP.NET 50 | nginx 0.6.16;PHP/5.2.4 51 | -------------------------------------------------------------------------------- /database/wrong_method/accept-range.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.37;bytes 2 | Apache 2.0.50;bytes 3 | Apache 2.0.54;bytes 4 | Apache 2.0.55;bytes 5 | Apache 2.0.59;bytes 6 | Apache 2.2.3;bytes 7 | Apache 2.2.6;bytes 8 | Ashleys Webserver;bytes 9 | Barracuda Networks Spam Firewall;bytes 10 | Boa 0.94.14rc21;bytes 11 | Caudium 1.4.9;bytes 12 | IBM HTTP Server 6.0.2.19;bytes 13 | IBM HTTP Server 6.1.0.19;bytes 14 | Lotus Domino Go Webserver 4.6.2.5;bytes 15 | Microsoft IIS 6.0;bytes 16 | NetBotz 320 thttpd 2.25b;bytes 17 | NetBotz 420 thttpd 2.25b;bytes 18 | NetBotz 500 thttpd 2.25b;bytes 19 | QNAP GNS-8000A 4.1.4.0118;bytes 20 | QNAP NAS-2108R 2.27.1024;bytes 21 | QNAP NAS-4010 4.2.0.0606;bytes 22 | QNAP NAS-4100 2.26.0517;bytes 23 | QNAP TS-101 2.0.1.0302;bytes 24 | QNAP TS-101 2.1.0.612T;bytes 25 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 26 | QNAP TS-109 1.1.2.1009T;bytes 27 | QNAP TS-109 1.1.3.1101T;bytes 28 | QNAP TS-209 1.1.1.0831T;bytes 29 | QNAP TS-209 1.1.3.1101T;bytes 30 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 31 | QNAP TS-411U 1.2.0.0531;bytes 32 | Roxen 2.2.213;bytes 33 | Roxen 4.5.111;bytes 34 | Roxen 4.5.145;bytes 35 | thttpd 2.19-MX;bytes 36 | thttpd 2.20b;bytes 37 | thttpd 2.24;bytes 38 | thttpd 2.26;bytes 39 | Virtuoso 5.0.3;bytes 40 | WallBotz 500 thttpd 2.25b;bytes 41 | Zeus 4.41;bytes 42 | -------------------------------------------------------------------------------- /database/wrong_method/cache-control.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | AOLserver 3.4.2;no-cache 3 | Apache 1.3.26;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 4 | Apache 1.3.26;post-check=0, pre-check=0 5 | Apache 1.3.33;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 6 | Apache 1.3.37;private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 7 | Apache 2.0.52;no-cache, must-revalidate 8 | Apache 2.0.54;no-cache, pre-check=0, post-check=0 9 | Apache 2.2.11;must-revalidate 10 | Apache 2.2.3;no-cache 11 | Apache 2.2.3;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 12 | Apache 2.2.3;private 13 | Apache 2.2.4;no-cache, no-store, max-age=0, must-revalidate 14 | Apache 2.2.4;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 15 | Apache 2.2.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 16 | Apache 2.2.6;private 17 | Apache 2.2.8;max-age=86400, 18 | Barracuda Networks Spam Firewall;no-cache,no-store 19 | Cherokee 0.6.0;no-cache 20 | Cherokee 0.99;no-cache 21 | FlexWATCH FW-3440-B;no-cache 22 | GlobalSCAPE Secure Server 3.3;private 23 | IBM HTTP Server 6.0.2.19;no-cache 24 | IBM HTTP Server 6.1.0.19;no-cache 25 | KLone 2.1.0rc1;no-cache, must-revalidate 26 | ListManagerWeb 8.8c;max-age=0 27 | LiteSpeed Web Server 3.3;private, no-cache, max-age=0 28 | Lotus Domino Go Webserver 4.6.2.5;no-cache 29 | Microsoft IIS 6.0;private 30 | Microsoft IIS 7.0;no-cache 31 | Mongrel 1.0;no-cache 32 | NetBotz 320 thttpd 2.25b;no-cache,no-store 33 | NetBotz 420 thttpd 2.25b;no-cache,no-store 34 | NetBotz 500 thttpd 2.25b;no-cache,no-store 35 | nginx 0.5.33;no-cache, must-revalidate, max-age=0 36 | nginx 0.5.35;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 37 | nginx 0.6.16;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 38 | Oracle Application Server 10g 10.1.2.0.2;no-cache, max-age=0, must-revalidate, proxy-mustcheck 39 | PacketShaper httpd 1.00;no-cache 40 | Resin 2.1.17;no-cache 41 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 42 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 43 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 44 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 45 | SnapStream Digital Video Recorder;no-cache 46 | Squid 2.6.STABLE4;no-cache 47 | Squid 2.6.STABLE7;no-cache 48 | thttpd 2.26;no-cache,no-store 49 | WallBotz 500 thttpd 2.25b;no-cache,no-store 50 | Xerox Phaser 6200;no-cache 51 | Xerox Phaser 7300;no-cache 52 | Xerox Phaser 8200;no-cache 53 | Xerox Phaser 860;no-cache 54 | Zoom ADSL;no-cache 55 | Zope 2.10.4;max-age=10 56 | Zope 2.7.6;max-age=3600, must-revalidate 57 | Zope 2.7.6;no-store, no-cache, must-revalidate, post-check=0, pre-check=0 58 | -------------------------------------------------------------------------------- /database/wrong_method/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.37;" 2 | Apache 2.2.8;" 3 | IBM HTTP Server 6.1.0.19;" 4 | Microsoft IIS 6.0;" 5 | -------------------------------------------------------------------------------- /database/wrong_method/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 5.3.1;webdav 2 | KGet web interface 2.1.3;KGet Webinterface Authorization 3 | ListManagerWeb 8.8c;Lyris ListManager: enter email address and password 4 | Zoom ADSL;WebAdmin 5 | -------------------------------------------------------------------------------- /database/wrong_method/options-delimited.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.5.0.0 X1;, 2 | Abyss 2.5.0.0 X2;, 3 | Abyss 2.6.0.0 X2;, 4 | and-httpd 0.99.11;, 5 | Apache 1.2.6;, 6 | Apache 1.3.12;, 7 | Apache 1.3.17;, 8 | Apache 1.3.26;, 9 | Apache 1.3.27;, 10 | Apache 1.3.31;, 11 | Apache 1.3.33;, 12 | Apache 1.3.34;, 13 | Apache 1.3.35;, 14 | Apache 1.3.37;, 15 | Apache 1.3.39;, 16 | Apache 1.3.41;, 17 | Apache 2.0.46;, 18 | Apache 2.0.48;, 19 | Apache 2.0.49;, 20 | Apache 2.0.50;, 21 | Apache 2.0.52;, 22 | Apache 2.0.54;, 23 | Apache 2.0.55;, 24 | Apache 2.0.58;, 25 | Apache 2.2.0;, 26 | Apache 2.2.2;, 27 | Apache 2.2.3;, 28 | Apache 2.2.4;, 29 | Apache 2.2.6;, 30 | Apache 2.2.8;, 31 | Apache 2.2.9;, 32 | Apache 2.3.0;, 33 | bozohttpd 20060517;, 34 | bozohttpd 20080303;, 35 | Dell 1710n;, 36 | Dell 3232;, 37 | Dell M5200;, 38 | Divar 1.00;, 39 | Divar 1.10.538.0;, 40 | Divar 1.11.626.0;, 41 | Divar 1.12.649.0;, 42 | IPC@CHIP 1.01;, 43 | IPC@CHIP 1.04;, 44 | Lexmark C750;, 45 | Lexmark E323;, 46 | Lexmark Optra S 1255;, 47 | Lexmark T630;, 48 | Microsoft IIS 7.0;, 49 | Netgear RP114 3.26;, 50 | Netopia Router Allegro RomPager 2.10;, 51 | OpenSA 1.0.1;, 52 | OpenSA 1.0.3;, 53 | Oracle Application Server 10g 10.1.2.0.0;, 54 | Oracle Application Server 10g 10.1.2.0.2;, 55 | Oracle Application Server 10g 10.1.2.2.0;, 56 | Oracle Application Server 10g 10.1.3.0.0;, 57 | Oracle Application Server 10g 10.1.3.1.0;, 58 | Oracle Application Server 10g 9.0.4.0.0;, 59 | Oracle Application Server 10g 9.0.4.1.0;, 60 | Oracle Application Server 10g 9.0.4.2.0;, 61 | Oracle Application Server 10g 9.0.4.3.0;, 62 | Oracle Application Server 9i 9.0.2;, 63 | Sony SNC-RZ30 NetEVI 1.09;, 64 | Sony SNC-RZ30 NetEVI 2.05;, 65 | Sony SNC-RZ30 NetEVI 2.05g;, 66 | Sony SNC-RZ30 NetEVI 2.06;, 67 | Sony SNC-RZ30 NetEVI 2.13;, 68 | Sony SNC-RZ30 NetEVI 2.14;, 69 | Sony SNC-RZ30 NetEVI 2.24;, 70 | Sony SNC-RZ30 NetEVI 3.01;, 71 | Sony SNC-RZ30 NetEVI 3.02;, 72 | Sony SNC-RZ30 NetEVI 3.03;, 73 | Sony SNC-RZ30 NetEVI 3.10;, 74 | Sony SNC-RZ30 NetEVI 3.10a;, 75 | Sony SNC-RZ30 NetEVI 3.14;, 76 | Sony SNC-Z20 NetZoom 1.00;, 77 | StWeb 1.3.27;, 78 | Xerox DocuPrint N4025 Allegro RomPager 3.06b1;, 79 | Xerox Phaser 6200;, 80 | Xerox Phaser 7300;, 81 | Xerox Phaser 8200;, 82 | Xerox Phaser 860;, 83 | Zyxel Prestige 662H-61 RomPager 4.07;, 84 | Zyxel Prestige 662H-63/67 RomPager 4.07;, 85 | Zyxel ZyWALL 10W RomPager 4.07;, 86 | -------------------------------------------------------------------------------- /database/wrong_method/options-public.fdb: -------------------------------------------------------------------------------- 1 | Cougar 9.5.6001.6264;GET,POST,OPTIONS 2 | -------------------------------------------------------------------------------- /database/wrong_method/pragma.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.4.0.3 X2;no-cache 2 | Apache 1.3.26;no-cache 3 | Apache 1.3.33;no-cache 4 | Apache 1.3.34;no-cache 5 | Apache 1.3.37;no-cache 6 | Apache 2.0.52;no-cache 7 | Apache 2.0.54;no-cache 8 | Apache 2.0.59;no-cache 9 | Apache 2.2.3;no-cache 10 | Apache 2.2.3;private 11 | Apache 2.2.4;no-cache 12 | Apache 2.2.6;no-cache 13 | Cherokee 0.6.0;no-cache 14 | Cherokee 0.99;no-cache 15 | Cougar 9.5.6001.6264;no-cache 16 | FlexWATCH FW-3440-B;no-cache 17 | GlobalSCAPE Secure Server 3.3;no-cache 18 | IBM HTTP Server 6.0.2.19;no-cache 19 | Jana-Server 2.4.8.51;no-cache 20 | KLone 2.1.0rc1;no-cache 21 | LiteSpeed Web Server 3.3;no-cache 22 | Lotus Domino Go Webserver 4.6.2.5;no-cache 23 | Microsoft IIS 7.0;no-cache 24 | nginx 0.5.35;no-cache 25 | nginx 0.6.16;no-cache 26 | Novell Access Manager 3;no-cache 27 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 28 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 29 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 30 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 31 | SnapStream Digital Video Recorder;no-cache 32 | Zope 2.7.7;no-cache 33 | -------------------------------------------------------------------------------- /database/wrong_method/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 4.0.10;1 2 | Apache 1.3.33;0 3 | Apache 2.0.50;0 4 | Apache 2.0.52;1 5 | Apache 2.0.54;0 6 | Apache 2.0.54;1 7 | Apache 2.0.55;1 8 | Apache 2.0.59;0 9 | Apache 2.0.63;1 10 | Apache 2.2.11;1 11 | Apache 2.2.3;0 12 | Apache 2.2.4;1 13 | Apache 2.2.6;0 14 | Mongrel 1.0;1 15 | nginx 0.5.33;1 16 | Roxen 4.5.111;1 17 | Roxen 4.5.145;1 18 | Zeus 4.3;1 19 | Zope 2.10.4;1 20 | Zope 2.7.6;1 21 | Zope 2.8.4;1 22 | Zope 2.8.6;1 23 | Zope 2.9.6;1 24 | -------------------------------------------------------------------------------- /database/wrong_method/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.33;, 2 | Apache 1.3.34;, 3 | Apache 2.0.50;, 4 | Apache 2.0.52;, 5 | Apache 2.0.54;, 6 | Apache 2.0.55;, 7 | Apache 2.0.59;, 8 | Apache 2.0.63;, 9 | Apache 2.2.3;, 10 | Apache 2.2.4;, 11 | Apache 2.2.6;, 12 | Roxen 4.5.111;, 13 | Roxen 4.5.145;, 14 | Zope 2.9.6;, 15 | -------------------------------------------------------------------------------- /database/wrong_method/vary-order.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 4.0.10;Accept-Encoding 2 | Apache 1.3.33;accept-language,accept-charset 3 | Apache 1.3.34;Accept-Encoding,User-Agent 4 | Apache 2.0.50;accept-language,accept-charset 5 | Apache 2.0.52;Accept-Encoding,User-Agent 6 | Apache 2.0.54;Accept-Encoding 7 | Apache 2.0.54;accept-language,accept-charset 8 | Apache 2.0.54;negotiate,accept-language 9 | Apache 2.0.55;Accept-Encoding 10 | Apache 2.0.55;accept-language,accept-charset 11 | Apache 2.0.59;accept-language,accept-charset 12 | Apache 2.0.63;User-Agent,Accept-Encoding 13 | Apache 2.2.11;Accept-Encoding 14 | Apache 2.2.3;accept-language,accept-charset 15 | Apache 2.2.4;Accept-Encoding,Cookie 16 | Apache 2.2.6;accept-language,accept-charset 17 | Apache 2.3.0;Accept-Encoding 18 | Microsoft IIS 6.0;Accept-Encoding 19 | Mongrel 1.0;Accept-Encoding 20 | nginx 0.5.33;Accept-Encoding 21 | Roxen 4.5.111;Cookie,User-Agent 22 | Roxen 4.5.145;Cookie,User-Agent 23 | Zeus 4.3;Accept-Encoding 24 | Zope 2.10.4;Accept-Encoding 25 | Zope 2.7.6;Cookie 26 | Zope 2.8.4;Accept-Encoding 27 | Zope 2.8.6;Accept-Encoding 28 | Zope 2.9.6;Accept-Encoding 29 | Zope 2.9.6;Accept-Encoding,User-Agent 30 | -------------------------------------------------------------------------------- /database/wrong_method/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Abyss 2.0.0.20 X2;PHP/5.2.0 2 | Abyss 2.4.0.3 X2;PHP/4.3.9 3 | Abyss 2.4.0.3 X2;PHP/5.1.2 4 | Abyss 2.4.0.3 X2;PHP/5.2.0 5 | Abyss 2.5.0.0 X1;PHP/5.2.4 6 | Abyss 2.5.0.0 X2;PHP/5.2.2 7 | Abyss 2.5.0.0 X2;PHP/5.2.4 8 | Abyss 2.5.0.0 X2;PHP/5.2.5 9 | Apache 1.3.26;PHP/4.1.2 10 | Apache 1.3.26;PHP/4.2.2 11 | Apache 1.3.26;PHP/4.3.11 12 | Apache 1.3.27;PHP/4.1.2 13 | Apache 1.3.33;PHP/4.3.8-9 14 | Apache 1.3.33;PHP/4.4.7 15 | Apache 1.3.33;PHP/5.2.4 16 | Apache 1.3.34;PHP/4.4.2 17 | Apache 1.3.34;PHP/4.4.4-8+etch4 18 | Apache 1.3.37;PHP/4.4.6 19 | Apache 1.3.37;PHP/5.2.1 20 | Apache 2.0.49;PHP/4.3.9 21 | Apache 2.0.51;PHP/4.3.10 22 | Apache 2.0.52;PHP/4.3.9 23 | Apache 2.0.52;PHP/4.4.1 24 | Apache 2.0.52;PHP/5.1.4 25 | Apache 2.0.53;PHP/4.3.10 26 | Apache 2.0.54;PHP/4.3.10-22 27 | Apache 2.0.54;PHP/4.4.0 28 | Apache 2.0.54;PHP/4.4.6 29 | Apache 2.0.54;PHP/4.4.7 30 | Apache 2.0.55;PHP/5.1.2 31 | Apache 2.0.58;PHP/5.1.5 32 | Apache 2.0.59;PHP/5.2.1 33 | Apache 2.0.59;PHP/5.2.4 34 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 35 | Apache 2.2.11;PHP/5.2.8 36 | Apache 2.2.3;PHP/4.4.4-8+etch4 37 | Apache 2.2.3;PHP/5.2.0-8+etch7 38 | Apache 2.2.3;PHP/5.2.3 39 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 40 | Apache 2.2.4;PHP/4.4.4-9+lenny1 41 | Apache 2.2.4;PHP/5.1.6 42 | Apache 2.2.4;PHP/5.2.1RC3-dev 43 | Apache 2.2.4;PHP/5.2.2 44 | Apache 2.2.6;PHP/5.2.5 45 | Apache 2.2.8;PHP/5.2.5 46 | Microsoft IIS 5.0;ASP.NET 47 | Microsoft IIS 5.1;ASP.NET 48 | Microsoft IIS 6.0;ASP.NET 49 | Microsoft IIS 6.0;ASP.NET 2.0 50 | Microsoft IIS 7.0;ASP.NET 51 | nginx 0.6.16;PHP/5.2.4 52 | OpenSA 1.0.4;PHP/4.2.2 53 | -------------------------------------------------------------------------------- /database/wrong_version/accept-range.fdb: -------------------------------------------------------------------------------- 1 | 4D WebSTAR 4.5;bytes 2 | 4D WebSTAR 5.3.3;bytes 3 | Apache 1.2.6;bytes 4 | Apache 1.3.12;bytes 5 | Apache 1.3.17;bytes 6 | Apache 1.3.26;bytes 7 | Apache 1.3.27;bytes 8 | Apache 1.3.29;bytes 9 | Apache 1.3.31;bytes 10 | Apache 1.3.33;bytes 11 | Apache 1.3.34;bytes 12 | Apache 1.3.35;bytes 13 | Apache 1.3.37;bytes 14 | Apache 1.3.39;bytes 15 | Apache 1.3.41;bytes 16 | Apache 2.0.46;bytes 17 | Apache 2.0.48;bytes 18 | Apache 2.0.49;bytes 19 | Apache 2.0.50;bytes 20 | Apache 2.0.52;bytes 21 | Apache 2.0.54;bytes 22 | Apache 2.0.55;bytes 23 | Apache 2.0.59;bytes 24 | Apache 2.2.0;bytes 25 | Apache 2.2.2;bytes 26 | Apache 2.2.3;bytes 27 | Apache 2.2.4;bytes 28 | Apache 2.2.6;bytes 29 | Apache 2.2.8;bytes 30 | Apache 2.2.9;bytes 31 | Apache 2.3.0;bytes 32 | Ashleys Webserver;bytes 33 | BadBlue 2.4;bytes 34 | BadBlue 2.5;bytes 35 | BadBlue 2.6;bytes 36 | BarracudaDrive 3.9.1;bytes 37 | Barracuda Networks Spam Firewall;bytes 38 | Boa 0.94.14rc21;bytes 39 | Caudium 1.4.9;bytes 40 | Compaq HTTP Server 9.9;bytes 41 | Fortinet Fortigate;bytes 42 | Gatling 0.10;bytes 43 | Hiawatha 6.2;bytes 44 | Lotus Domino Go Webserver 4.6.2.5;bytes 45 | Microsoft IIS 5.0;bytes 46 | Microsoft IIS 5.1;bytes 47 | Microsoft IIS 6.0;bytes 48 | Netscape Enterprise Server 3.5.1G;bytes 49 | Netscape Fasttrack 3.02a;bytes 50 | NetWare Enterprise Web Server 5.1;bytes 51 | nginx 0.5.19;bytes 52 | nginx 0.5.32;bytes 53 | OpenSA 1.0.1;bytes 54 | Oracle Application Server 10g 10.1.2.0.0;bytes 55 | Oracle Application Server 10g 10.1.2.0.2;bytes 56 | Oracle Application Server 10g 10.1.2.2.0;bytes 57 | Oracle Application Server 10g 10.1.3.0.0;bytes 58 | Oracle Application Server 10g 10.1.3.1.0;bytes 59 | Oracle Application Server 10g 9.0.4.0.0;bytes 60 | Oracle Application Server 10g 9.0.4.2.0;bytes 61 | Oracle Application Server 10g 9.0.4.3.0;bytes 62 | Oracle Application Server 9i 9.0.2;bytes 63 | QNAP GNS-8000A 4.1.4.0118;bytes 64 | QNAP NAS-2108R 2.27.1024;bytes 65 | QNAP NAS-4010 4.2.0.0606;bytes 66 | QNAP NAS-4100 2.26.0517;bytes 67 | QNAP TS-101 2.0.1.0302;bytes 68 | QNAP TS-101 2.1.0.612T;bytes 69 | QNAP TS-101 Turbo Station 1.2.0.0629;bytes 70 | QNAP TS-109 1.1.2.1009T;bytes 71 | QNAP TS-109 1.1.3.1101T;bytes 72 | QNAP TS-209 1.1.1.0831T;bytes 73 | QNAP TS-209 1.1.3.1101T;bytes 74 | QNAP TS-40IT Turbo Server 1.1.0.0425;bytes 75 | QNAP TS-411U 1.2.0.0531;bytes 76 | Resin 3.0.6;bytes 77 | Roxen 2.2.213;bytes 78 | Roxen 4.5.111;bytes 79 | Roxen 4.5.145;bytes 80 | TheServer 2.21L;bytes 81 | thttpd 2.20b;bytes 82 | thttpd 2.23beta1;bytes 83 | thttpd 2.24;bytes 84 | thttpd 2.25b;bytes 85 | thttpd 2.26;bytes 86 | Virtuoso 5.0.3;bytes 87 | vqServer 1.9.56;bytes 88 | Zeus 4.41;bytes 89 | -------------------------------------------------------------------------------- /database/wrong_version/etag-quotes.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.2.6;" 2 | Apache 1.3.12;" 3 | Apache 1.3.17;" 4 | Apache 1.3.26;" 5 | Apache 1.3.27;" 6 | Apache 1.3.29;" 7 | Apache 1.3.31;" 8 | Apache 1.3.33;" 9 | Apache 1.3.34;" 10 | Apache 1.3.35;" 11 | Apache 1.3.37;" 12 | Apache 1.3.39;" 13 | Apache 1.3.41;" 14 | Apache 2.0.46;" 15 | Apache 2.0.48;" 16 | Apache 2.0.49;" 17 | Apache 2.0.52;" 18 | Apache 2.0.54;" 19 | Apache 2.0.55;" 20 | Apache 2.0.59;" 21 | Apache 2.2.0;" 22 | Apache 2.2.2;" 23 | Apache 2.2.3;" 24 | Apache 2.2.4;" 25 | Apache 2.2.6;" 26 | Apache 2.2.8;" 27 | Apache 2.3.0;" 28 | BadBlue 2.4;" 29 | BadBlue 2.5;" 30 | BadBlue 2.6;" 31 | Compaq HTTP Server 9.9;" 32 | Fortinet Fortigate;" 33 | Jigsaw 2.2.6;" 34 | Jigsaw 2.3.0-beta1;" 35 | Microsoft IIS 5.0;" 36 | Microsoft IIS 5.1;" 37 | Netscape Enterprise Server 3.5.1G;" 38 | NetWare Enterprise Web Server 5.1;" 39 | nginx 0.6.26;" 40 | OpenSA 1.0.1;" 41 | Oracle Application Server 10g 10.1.2.0.0;" 42 | Oracle Application Server 10g 10.1.2.0.2;" 43 | Oracle Application Server 10g 10.1.2.2.0;" 44 | Oracle Application Server 10g 10.1.3.0.0;" 45 | Oracle Application Server 10g 10.1.3.1.0;" 46 | Oracle Application Server 10g 9.0.4.0.0;" 47 | Oracle Application Server 10g 9.0.4.2.0;" 48 | Oracle Application Server 10g 9.0.4.3.0;" 49 | Oracle Application Server 9i 9.0.2;" 50 | Resin 3.0.6;" 51 | Roxen 4.5.111;" 52 | Roxen 4.5.145;" 53 | Sun ONE Web Server 6.1;" 54 | Virtuoso 5.0.3;" 55 | Zeus 4.41;" 56 | -------------------------------------------------------------------------------- /database/wrong_version/htaccess-realm.fdb: -------------------------------------------------------------------------------- 1 | GlobalSCAPE Secure Server 3.3;192.168.4.72 2 | Jigsaw 2.2.5;w3t 3 | KGet web interface 2.1.3;KGet Webinterface Authorization 4 | NetBotz 320 thttpd 2.25b;NetBotz Appliance 5 | NetBotz 420 thttpd 2.25b;NetBotz Appliance 6 | NetBotz 500 thttpd 2.25b;NetBotz Appliance 7 | Netgear RP114 3.26;RP114 8 | SWAT 3.0.24;SWAT 9 | WallBotz 500 thttpd 2.25b;NetBotz Appliance 10 | -------------------------------------------------------------------------------- /database/wrong_version/pragma.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 3.3.1;No-Cache 2 | AOLserver 4.0.10a;no-cache 3 | AOLserver 4.0.10;no-cache 4 | AOLserver 4.5.0;no-cache 5 | Apache 1.3.26;no-cache 6 | Apache 1.3.27;no-cache 7 | Apache 1.3.28;no-cache 8 | Apache 1.3.33;no-cache 9 | Apache 1.3.34;no-cache 10 | Apache 1.3.37;no-cache 11 | Apache 1.3.39;no-cache 12 | Apache 2.0.45;no-cache 13 | Apache 2.0.46;no-cache 14 | Apache 2.0.52;no-cache 15 | Apache 2.0.54;no-cache 16 | Apache 2.0.55;no-cache 17 | Apache 2.0.59;no-cache 18 | Apache 2.0.59;nocache 19 | Apache 2.0.59;No-cache 20 | Apache 2.2.2;no-cache 21 | Apache 2.2.3;no-cache 22 | Apache 2.2.3;private 23 | Apache 2.2.4;no-cache 24 | Apache 2.2.6;no-cache 25 | Belkin Router 2.00.002;no-cache 26 | Cherokee 0.6.0;no-cache 27 | Cherokee 0.99;no-cache 28 | Cougar 9.5.6001.6264;no-cache, xResetStrm=1 29 | FlexWATCH FW-3440-B;no-cache 30 | GlobalSCAPE Secure Server 3.3;no-cache 31 | IBM HTTP Server 6.0.2.19;no-cache 32 | IceWarp 8.3.0;no-cache 33 | IPC@CHIP 1.04;no-cache 34 | Jana-Server 2.4.8.51;no-cache 35 | Jetty 6.1.1;no-cache 36 | LANCOM DSL/I-10 3.58.0006;no-cache 37 | LANCOM DSL/I-10 Office 3.59.0006;no-cache 38 | LANCOM DSL/I-1611 4.02.0003;no-cache 39 | LANCOM DSL/I-1611 4.12.0031;no-cache 40 | LANCOM DSL/I-1611 5.06.0005;no-cache 41 | LANCOM DSL/I-1611 6.02.0008;no-cache 42 | LANCOM DSL/I-1611 6.06.0012;no-cache 43 | LANCOM DSL/I-1611 6.24.0012;no-cache 44 | LANCOM DSL/I-1611 6.26.0022;no-cache 45 | LANCOM DSL/I-1611 6.32.0021;no-cache 46 | LiteSpeed Web Server 3.3;no-cache 47 | Microsoft IIS 6.0;no-cache 48 | Microsoft ISA Server 2006;no-cache 49 | Nanoweb 2.2.10;no-cache 50 | nginx 0.5.32;no-cache 51 | nginx 0.5.35;no-cache 52 | nginx 0.6.16;no-cache 53 | nginx 0.6.20;no-cache 54 | Novell Access Manager 3;no-cache 55 | OpenSA 1.0.5;no-cache 56 | Resin 2.1.17;no-cache 57 | Ricoh Aficio 1022 Web-Server 3.0;no-cache 58 | Ricoh Aficio 1045 5.23 Web-Server 3.0;no-cache 59 | Ricoh Aficio 1060 3.53.3 Web-Server 3.0;no-cache 60 | Ricoh Aficio 6002 3.53.3 Web-Server 3.0;no-cache 61 | Roxen 2.2.213;no-cache 62 | SnapStream Digital Video Recorder;no-cache 63 | Sony SNC-RZ30 NetEVI 1.09;no-cache 64 | Sony SNC-RZ30 NetEVI 2.05g;no-cache 65 | Sony SNC-RZ30 NetEVI 2.05;no-cache 66 | Sony SNC-RZ30 NetEVI 2.06;no-cache 67 | Sony SNC-RZ30 NetEVI 2.13;no-cache 68 | Sony SNC-RZ30 NetEVI 2.14;no-cache 69 | Sony SNC-RZ30 NetEVI 2.24;no-cache 70 | Sony SNC-RZ30 NetEVI 3.01;no-cache 71 | Sony SNC-RZ30 NetEVI 3.02;no-cache 72 | Sony SNC-RZ30 NetEVI 3.03;no-cache 73 | Sony SNC-RZ30 NetEVI 3.10a;no-cache 74 | Sony SNC-RZ30 NetEVI 3.10;no-cache 75 | Sony SNC-RZ30 NetEVI 3.14;no-cache 76 | Sony SNC-Z20 NetZoom 1.00;no-cache 77 | WDaemon 9.6.1;no-cache 78 | webcamXP PRO 2006 2.16.456x BETA;no-cache 79 | webcamXP PRO 2006 2.20.024;no-cache 80 | webcamXP PRO 2006 2.37.144;no-cache 81 | webcamXP PRO 2007 3.60.220;no-cache 82 | webcamXP PRO 2007 3.72.440;no-cache 83 | webcamXP PRO 2007 3.96.000 beta;no-cache 84 | Zope 2.6.0;no-cache 85 | Zope 2.6.1;no-cache 86 | Zope 2.7.4;No-cache 87 | Zope 2.7.5;no-cache 88 | Zope 2.7.7;no-cache 89 | Zyxel P-2602HW-D1A RomPager 4.51;no-cache 90 | Zyxel P-660R-D3 RomPager 4.51;no-cache 91 | Zyxel P-661H-D1 RomPager 4.51;no-cache 92 | Zyxel P-662HW-D1 RomPager 4.51;no-cache 93 | Zyxel Prestige 662H-61 RomPager 4.07;no-cache 94 | Zyxel Prestige 662H-63/67 RomPager 4.07;no-cache 95 | Zyxel ZyWALL 10W RomPager 4.07;no-cache 96 | -------------------------------------------------------------------------------- /database/wrong_version/vary-capitalize.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 3.4.2;1 2 | AOLserver 4.0.10;1 3 | Apache 1.3.33;0 4 | Apache 1.3.33;1 5 | Apache 1.3.37;1 6 | Apache 2.0.46;1 7 | Apache 2.0.52;1 8 | Apache 2.0.54;0 9 | Apache 2.0.54;1 10 | Apache 2.0.55;1 11 | Apache 2.0.59;1 12 | Apache 2.2.11;1 13 | Apache 2.2.2;1 14 | Apache 2.2.3;1 15 | Apache 2.2.4;1 16 | Apache 2.2.6;1 17 | Compaq HTTP Server 9.9;0 18 | IBM HTTP Server 6.1.0.19;0 19 | Lotus Domino Go Webserver 4.6.2.5;0 20 | Microsoft IIS 6.0;1 21 | Mongrel 1.0;1 22 | nginx 0.5.33;1 23 | nginx 0.6.20;1 24 | Oracle Application Server 10g 10.1.2.0.0;0 25 | Oracle Application Server 10g 10.1.2.2.0;1 26 | Roxen 4.5.145;0 27 | Zeus 4.3;1 28 | Zope 2.10.4;1 29 | Zope 2.7.5;0 30 | Zope 2.7.6;1 31 | Zope 2.8.4;1 32 | Zope 2.8.6;1 33 | Zope 2.9.6;1 34 | Zope 2.9.7;1 35 | Zope 2.9.8;1 36 | -------------------------------------------------------------------------------- /database/wrong_version/vary-delimiter.fdb: -------------------------------------------------------------------------------- 1 | Apache 1.3.33;, 2 | Apache 1.3.34;, 3 | Apache 2.0.52;, 4 | Apache 2.0.54;, 5 | Apache 2.2.2;, 6 | Apache 2.2.4;, 7 | Apache 2.2.6;, 8 | Compaq HTTP Server 9.9;, 9 | Zope 2.9.6;, 10 | Zope 2.9.7;, 11 | Zope 2.9.8;, 12 | -------------------------------------------------------------------------------- /database/wrong_version/vary-order.fdb: -------------------------------------------------------------------------------- 1 | AOLserver 3.4.2;Accept-Encoding 2 | AOLserver 4.0.10;Accept-Encoding 3 | Apache 1.3.33;* 4 | Apache 1.3.33;Accept-Encoding 5 | Apache 1.3.33;negotiate,accept-language,accept-charset 6 | Apache 1.3.34;Accept-Encoding 7 | Apache 1.3.34;Accept-Encoding,User-Agent 8 | Apache 1.3.37;* 9 | Apache 1.3.37;Host 10 | Apache 2.0.46;Accept-Encoding 11 | Apache 2.0.52;Accept-Encoding,User-Agent 12 | Apache 2.0.54;Accept-Encoding 13 | Apache 2.0.54;negotiate,accept-language 14 | Apache 2.0.55;Accept-Encoding 15 | Apache 2.0.59;Cookie 16 | Apache 2.2.11;Accept-Encoding 17 | Apache 2.2.2;Accept-Encoding 18 | Apache 2.2.2;Accept-Encoding,Cookie 19 | Apache 2.2.3;Accept-Encoding 20 | Apache 2.2.4;Accept-Encoding,Cookie,User-Agent 21 | Apache 2.2.4;User-Agent 22 | Apache 2.2.6;Cookie,User-Agent,Accept-Language 23 | Apache 2.3.0;Accept-Encoding 24 | Compaq HTTP Server 9.9;negotiate,accept-language 25 | IBM HTTP Server 6.1.0.19;* 26 | Lotus Domino Go Webserver 4.6.2.5;* 27 | Microsoft IIS 6.0;Accept-Encoding 28 | Mongrel 1.0;Accept-Encoding 29 | nginx 0.5.33;Accept-Encoding 30 | nginx 0.6.20;Accept-Language 31 | Oracle Application Server 10g 10.1.2.0.0;negotiate 32 | Oracle Application Server 10g 10.1.2.2.0;Host 33 | Roxen 4.5.145;* 34 | Zeus 4.3;Accept-Encoding 35 | Zope 2.10.4;Accept-Encoding 36 | Zope 2.7.5;* 37 | Zope 2.7.6;Cookie 38 | Zope 2.8.4;Accept-Encoding 39 | Zope 2.8.6;Accept-Encoding 40 | Zope 2.9.6;Accept-Encoding 41 | Zope 2.9.6;Accept-Encoding,Accept-Language,User-Agent 42 | Zope 2.9.7;Accept-Encoding,Accept-Language 43 | Zope 2.9.8;Accept-Encoding,Accept-Language,User-Agent 44 | -------------------------------------------------------------------------------- /database/wrong_version/x-powered-by.fdb: -------------------------------------------------------------------------------- 1 | Anti-Web HTTPD 3.0.7;PHP/4.3.6 2 | AOLserver 4.0.10a;PHP/5.0.3 3 | Apache 1.3.26;PHP/4.1.2 4 | Apache 1.3.26;PHP/4.2.2 5 | Apache 1.3.26;PHP/4.3.11 6 | Apache 1.3.27;PHP/4.1.2 7 | Apache 1.3.33;PHP/4.3.10 8 | Apache 1.3.33;PHP/4.3.8-9 9 | Apache 1.3.33;PHP/4.4.2 10 | Apache 1.3.33;PHP/4.4.7 11 | Apache 1.3.33;PHP/5.2.4 12 | Apache 1.3.33;PHP/5.2.5-0.dotdeb.1 13 | Apache 1.3.34;PHP/4.4.2 14 | Apache 1.3.34;PHP/4.4.4-8+etch4 15 | Apache 1.3.34;PHP/5.2.0-8+etch7 16 | Apache 1.3.37;PHP/4.3.11 17 | Apache 1.3.37;PHP/4.4.6 18 | Apache 1.3.37;PHP/4.4.7 19 | Apache 1.3.37;PHP/5.1.2 20 | Apache 1.3.37;PHP/5.2.1 21 | Apache 1.3.39;PHP/4.4.7 22 | Apache 1.3.39;PHP/5.2.3 23 | Apache 2.0.46;PHP/4.3.2 24 | Apache 2.0.46;PHP/5.1.2 25 | Apache 2.0.46;PHP/5.1.6 26 | Apache 2.0.49;PHP/4.3.9 27 | Apache 2.0.51;PHP/4.3.10 28 | Apache 2.0.52;PHP/4.3.9 29 | Apache 2.0.52;PHP/4.4.1 30 | Apache 2.0.52;PHP/5.1.4 31 | Apache 2.0.52;PHP/5.1.6 32 | Apache 2.0.53;PHP/4.3.10 33 | Apache 2.0.54;PHP/4.3.10-22 34 | Apache 2.0.54;PHP/4.4.0 35 | Apache 2.0.54;PHP/4.4.6 36 | Apache 2.0.54;PHP/4.4.7 37 | Apache 2.0.54;PHP/5.0.5-Debian-0.8~sarge1 38 | Apache 2.0.54;PHP/5.2.4-0.dotdeb.0 39 | Apache 2.0.55;PHP/5.1.2 40 | Apache 2.0.58;PHP/5.1.5 41 | Apache 2.0.59;PHP/5.2.1 42 | Apache 2.0.59;PHP/5.2.4 43 | Apache 2.0.59;Zope (www.zope.org), Python (www.python.org) 44 | Apache 2.2.11;PHP/5.2.8 45 | Apache 2.2.2;PHP/5.1.6 46 | Apache 2.2.3;PHP/4.4.4-8+etch4 47 | Apache 2.2.3;PHP/5.1.6 48 | Apache 2.2.3;PHP/5.2.0 49 | Apache 2.2.3;PHP/5.2.0-8+etch7 50 | Apache 2.2.3;PHP/5.2.1 51 | Apache 2.2.3;PHP/5.2.3 52 | Apache 2.2.3;PHP/5.2.5-0.dotdeb.1 53 | Apache 2.2.3;PHP/5.2.8-0.dotdeb.1 54 | Apache 2.2.4;PHP/4.4.4-9+lenny1 55 | Apache 2.2.4;PHP/5.1.6 56 | Apache 2.2.4;PHP/5.2.0 57 | Apache 2.2.4;PHP/5.2.1RC3-dev 58 | Apache 2.2.4;PHP/5.2.2 59 | Apache 2.2.6;PHP/5.2.5 60 | Apache 2.2.8;PHP/5.2.5 61 | Microsoft IIS 5.0;ASP.NET 62 | Microsoft IIS 6.0;ASP.NET 63 | Nanoweb 2.2.10;t0x-engine/1.4.12 PHP/5.2.9 64 | nginx 0.5.35;Zope (www.zope.org), Python (www.python.org) 65 | nginx 0.6.16;PHP/5.2.4 66 | OpenSA 1.0.4;PHP/4.2.2 67 | -------------------------------------------------------------------------------- /frmAbout.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/frmAbout.frx -------------------------------------------------------------------------------- /frmConfiguration.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/frmConfiguration.frx -------------------------------------------------------------------------------- /frmConfiguration.log: -------------------------------------------------------------------------------- 1 | Line 979: Class MSComctlLib.TabStrip of control tbsSettings was not a loaded control class. 2 | -------------------------------------------------------------------------------- /frmDetails.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/frmDetails.frx -------------------------------------------------------------------------------- /frmMain.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/frmMain.frx -------------------------------------------------------------------------------- /frmMain.log: -------------------------------------------------------------------------------- 1 | Line 552: Class RichTextLib.RichTextBox of control rtbResponses was not a loaded control class. 2 | -------------------------------------------------------------------------------- /frmReport.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/frmReport.frx -------------------------------------------------------------------------------- /frmReport.log: -------------------------------------------------------------------------------- 1 | Line 17: Class MSComDlg.CommonDialog of control cdgReportSaveAs was not a loaded control class. 2 | -------------------------------------------------------------------------------- /frmSave.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/frmSave.frx -------------------------------------------------------------------------------- /frmUpdate.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/frmUpdate.frx -------------------------------------------------------------------------------- /httprecon.vbp: -------------------------------------------------------------------------------- 1 | Type=Exe 2 | Form=frmMain.frm 3 | Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\Windows\SysWOW64\stdole2.tlb#OLE Automation 4 | Module=modConfiguration; modConfiguration.bas 5 | Module=modAnalysisProtocol; modAnalysisProtocol.bas 6 | Module=modAnalysisBanner; modAnalysisBanner.bas 7 | Module=modAnalysisEtag; modAnalysisEtag.bas 8 | Module=modAnalysisHeaders; modAnalysisHeaders.bas 9 | Module=modAnalysisStatus; modAnalysisStatus.bas 10 | Module=modAnalysisOptions; modAnalysisOptions.bas 11 | Module=modDatabaseHandling; modDatabaseHandling.bas 12 | Module=modAnalysisAccept; modAnalysisAccept.bas 13 | Module=modAnalysisCache; modAnalysisCache.bas 14 | Module=modAnalysisConnection; modAnalysisConnection.bas 15 | Module=modIdentification; modIdentification.bas 16 | Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; Comdlg32.ocx 17 | Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.2#0; MSCOMCTL.OCX 18 | Module=modHttpHandler; modHttpHandler.bas 19 | Module=modAnalysisAuthenticate; modAnalysisAuthenticate.bas 20 | Module=modBrowserCall; modBrowserCall.bas 21 | Form=frmAbout.frm 22 | Form=frmSave.frm 23 | Module=modFileHandling; modFileHandling.bas 24 | Module=modReporting; modReporting.bas 25 | Class=Concat; Concat.cls 26 | Module=modListViewSort; modListViewSort.bas 27 | Module=modComboboxAutocomplete; modComboboxAutocomplete.bas 28 | Module=modLogging; modLogging.bas 29 | Form=frmConfiguration.frm 30 | Module=modDirectoryBrowser; modDirectoryBrowser.bas 31 | Form=frmReport.frm 32 | Module=modTiming; modTiming.bas 33 | Form=frmUpdate.frm 34 | Module=modInputValidation; modInputValidation.bas 35 | Object={3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0; RICHTX32.OCX 36 | Module=modIdentificationDetails; modIdentificationDetails.bas 37 | Module=modReportingHtml; modReportingHtml.bas 38 | Module=modReportingTxt; modReportingTxt.bas 39 | Module=modReportingCsv; modReportingCsv.bas 40 | Module=modReportingXml; modReportingXml.bas 41 | IconForm="frmMain" 42 | Startup="frmMain" 43 | HelpFile="" 44 | Title="httprecon" 45 | ExeName32="httprecon.exe" 46 | Command32="" 47 | Name="httprecon" 48 | HelpContextID="0" 49 | Description="Web server fingerprinting tool" 50 | CompatibleMode="0" 51 | MajorVer=7 52 | MinorVer=3 53 | RevisionVer=3 54 | AutoIncrementVer=1 55 | ServerSupportFiles=0 56 | VersionComments="http://www.computec.ch/projekte/httprecon/" 57 | VersionCompanyName="computec.ch" 58 | VersionFileDescription="Web Server Fingerprinting" 59 | VersionLegalCopyright="(c) 2007-2009 by Marc Ruef" 60 | VersionLegalTrademarks="General Public License (GPL)" 61 | VersionProductName="httprecon" 62 | CompilationType=0 63 | OptimizationType=0 64 | FavorPentiumPro(tm)=0 65 | CodeViewDebugInfo=0 66 | NoAliasing=0 67 | BoundsCheck=0 68 | OverflowCheck=0 69 | FlPointCheck=0 70 | FDIVCheck=0 71 | UnroundedFP=0 72 | StartMode=0 73 | Unattended=0 74 | Retained=0 75 | ThreadPerObject=0 76 | MaxNumberOfThreads=1 77 | DebugStartupOption=0 78 | 79 | [MS Transaction Server] 80 | AutoRefresh=1 81 | -------------------------------------------------------------------------------- /httprecon.vbw: -------------------------------------------------------------------------------- 1 | frmMain = 160, 326, 961, 943, , 30, 63, 640, 686, C 2 | modConfiguration = 53, 127, 877, 869, 3 | modAnalysisProtocol = 23, 129, 847, 871, C 4 | modAnalysisBanner = 73, 127, 897, 869, C 5 | modAnalysisEtag = 76, 126, 900, 868, 6 | modAnalysisHeaders = 47, 22, 910, 764, 7 | modAnalysisStatus = 17, 39, 841, 781, C 8 | modAnalysisOptions = 31, 180, 855, 922, C 9 | modDatabaseHandling = 46, 20, 930, 634, 10 | modAnalysisAccept = 81, 81, 905, 823, 11 | modAnalysisCache = 119, 181, 943, 923, 12 | modAnalysisConnection = 162, 162, 986, 904, 13 | modIdentification = 457, 85, 1281, 706, 14 | modHttpHandler = 36, 187, 938, 929, 15 | modAnalysisAuthenticate = 148, 159, 1106, 803, 16 | modBrowserCall = 35, 48, 667, 692, 17 | frmAbout = 213, 226, 852, 870, C, 110, 110, 749, 754, C 18 | frmSave = 192, 98, 831, 742, C, 13, 23, 652, 667, C 19 | modFileHandling = 154, 154, 1186, 798, 20 | modReporting = 21, 105, 842, 749, 21 | Concat = 176, 176, 1202, 820, 22 | modListViewSort = 176, 176, 805, 820, C 23 | modComboboxAutocomplete = 220, 220, 876, 864, C 24 | modLogging = 308, 308, 964, 952, 25 | frmConfiguration = 22, 22, 661, 666, , 160, 158, 799, 802, C 26 | modDirectoryBrowser = 264, 260, 891, 908, 27 | frmReport = 181, 269, 940, 913, C, 38, 145, 677, 789, C 28 | modTiming = 98, 270, 737, 914, 29 | frmUpdate = 118, 130, 757, 774, C, 110, 110, 749, 754, C 30 | modInputValidation = 154, 154, 783, 798, C 31 | modIdentificationDetails = 90, 166, 933, 807, 32 | modReportingHtml = 30, 198, 947, 842, 33 | modReportingTxt = 13, 220, 952, 864, 34 | modReportingCsv = 242, 242, 898, 886, C 35 | modReportingXml = 57, 109, 896, 937, C 36 | -------------------------------------------------------------------------------- /ico_buttons/btnconfigcancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btnconfigcancel.gif -------------------------------------------------------------------------------- /ico_buttons/btnconfigsave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btnconfigsave.gif -------------------------------------------------------------------------------- /ico_buttons/btndatabasecancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btndatabasecancel.gif -------------------------------------------------------------------------------- /ico_buttons/btndatabasesave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btndatabasesave.gif -------------------------------------------------------------------------------- /ico_buttons/btnreportcancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btnreportcancel.gif -------------------------------------------------------------------------------- /ico_buttons/btnreportsave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btnreportsave.gif -------------------------------------------------------------------------------- /ico_buttons/btnupdatecancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btnupdatecancel.gif -------------------------------------------------------------------------------- /ico_buttons/btnupdatecheck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/btnupdatecheck.gif -------------------------------------------------------------------------------- /ico_buttons/icoconfig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/icoconfig.ico -------------------------------------------------------------------------------- /ico_buttons/icodatabase.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/icodatabase.ico -------------------------------------------------------------------------------- /ico_buttons/icoreport.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/icoreport.ico -------------------------------------------------------------------------------- /ico_buttons/icoupdate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/icoupdate.ico -------------------------------------------------------------------------------- /ico_buttons/pichitpointsmax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/pichitpointsmax.gif -------------------------------------------------------------------------------- /ico_buttons/pichitpointsmin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/pichitpointsmin.gif -------------------------------------------------------------------------------- /ico_buttons/piclongrequestchar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/piclongrequestchar.gif -------------------------------------------------------------------------------- /ico_buttons/piclongrequestlength.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/piclongrequestlength.gif -------------------------------------------------------------------------------- /ico_buttons/picmethodnotallowed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picmethodnotallowed.gif -------------------------------------------------------------------------------- /ico_buttons/picmethodnotexisting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picmethodnotexisting.gif -------------------------------------------------------------------------------- /ico_buttons/picprotocollegitimate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picprotocollegitimate.gif -------------------------------------------------------------------------------- /ico_buttons/picprotocolwrong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picprotocolwrong.gif -------------------------------------------------------------------------------- /ico_buttons/picresourceattack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picresourceattack.gif -------------------------------------------------------------------------------- /ico_buttons/picresourceavailable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picresourceavailable.gif -------------------------------------------------------------------------------- /ico_buttons/picresourcenotavailable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picresourcenotavailable.gif -------------------------------------------------------------------------------- /ico_buttons/pictests.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/pictests.gif -------------------------------------------------------------------------------- /ico_buttons/pictimeoutconnect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/pictimeoutconnect.gif -------------------------------------------------------------------------------- /ico_buttons/pictimeoutreceive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/pictimeoutreceive.gif -------------------------------------------------------------------------------- /ico_buttons/pictimeoutsend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/pictimeoutsend.gif -------------------------------------------------------------------------------- /ico_buttons/picuseragentdetails.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picuseragentdetails.gif -------------------------------------------------------------------------------- /ico_buttons/picuseragentname.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_buttons/picuseragentname.gif -------------------------------------------------------------------------------- /ico_webserver/4d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/4d.gif -------------------------------------------------------------------------------- /ico_webserver/abyss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/abyss.gif -------------------------------------------------------------------------------- /ico_webserver/allegro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/allegro.gif -------------------------------------------------------------------------------- /ico_webserver/and.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/and.gif -------------------------------------------------------------------------------- /ico_webserver/antiweb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/antiweb.gif -------------------------------------------------------------------------------- /ico_webserver/aol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/aol.gif -------------------------------------------------------------------------------- /ico_webserver/apache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/apache.gif -------------------------------------------------------------------------------- /ico_webserver/axis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/axis.gif -------------------------------------------------------------------------------- /ico_webserver/badblue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/badblue.gif -------------------------------------------------------------------------------- /ico_webserver/barracuda.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/barracuda.gif -------------------------------------------------------------------------------- /ico_webserver/bea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/bea.gif -------------------------------------------------------------------------------- /ico_webserver/belkin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/belkin.gif -------------------------------------------------------------------------------- /ico_webserver/boa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/boa.gif -------------------------------------------------------------------------------- /ico_webserver/bozohttpd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/bozohttpd.gif -------------------------------------------------------------------------------- /ico_webserver/caudium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/caudium.gif -------------------------------------------------------------------------------- /ico_webserver/cherokee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/cherokee.gif -------------------------------------------------------------------------------- /ico_webserver/cisco.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/cisco.gif -------------------------------------------------------------------------------- /ico_webserver/clhttp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/clhttp.gif -------------------------------------------------------------------------------- /ico_webserver/compaq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/compaq.gif -------------------------------------------------------------------------------- /ico_webserver/debian.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/debian.gif -------------------------------------------------------------------------------- /ico_webserver/dell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/dell.gif -------------------------------------------------------------------------------- /ico_webserver/divar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/divar.gif -------------------------------------------------------------------------------- /ico_webserver/domino.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/domino.gif -------------------------------------------------------------------------------- /ico_webserver/dwhttpd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/dwhttpd.gif -------------------------------------------------------------------------------- /ico_webserver/emule.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/emule.gif -------------------------------------------------------------------------------- /ico_webserver/firecat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/firecat.gif -------------------------------------------------------------------------------- /ico_webserver/flexwatch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/flexwatch.gif -------------------------------------------------------------------------------- /ico_webserver/fnord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/fnord.gif -------------------------------------------------------------------------------- /ico_webserver/freebsd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/freebsd.gif -------------------------------------------------------------------------------- /ico_webserver/gatling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/gatling.gif -------------------------------------------------------------------------------- /ico_webserver/globalscape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/globalscape.gif -------------------------------------------------------------------------------- /ico_webserver/google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/google.gif -------------------------------------------------------------------------------- /ico_webserver/hiawatha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/hiawatha.gif -------------------------------------------------------------------------------- /ico_webserver/hp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/hp.gif -------------------------------------------------------------------------------- /ico_webserver/httpi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/httpi.gif -------------------------------------------------------------------------------- /ico_webserver/ibm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/ibm.gif -------------------------------------------------------------------------------- /ico_webserver/icewarp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/icewarp.gif -------------------------------------------------------------------------------- /ico_webserver/idhttp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/idhttp.gif -------------------------------------------------------------------------------- /ico_webserver/iis4_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/iis4_5.gif -------------------------------------------------------------------------------- /ico_webserver/iis51_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/iis51_6.gif -------------------------------------------------------------------------------- /ico_webserver/jana.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/jana.gif -------------------------------------------------------------------------------- /ico_webserver/jetty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/jetty.gif -------------------------------------------------------------------------------- /ico_webserver/konica.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/konica.gif -------------------------------------------------------------------------------- /ico_webserver/lancom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/lancom.gif -------------------------------------------------------------------------------- /ico_webserver/lexmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/lexmark.gif -------------------------------------------------------------------------------- /ico_webserver/lighttpd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/lighttpd.gif -------------------------------------------------------------------------------- /ico_webserver/linksys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/linksys.gif -------------------------------------------------------------------------------- /ico_webserver/litespeed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/litespeed.gif -------------------------------------------------------------------------------- /ico_webserver/mikrotik.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/mikrotik.gif -------------------------------------------------------------------------------- /ico_webserver/mongrel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/mongrel.gif -------------------------------------------------------------------------------- /ico_webserver/net2phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/net2phone.gif -------------------------------------------------------------------------------- /ico_webserver/netgear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/netgear.gif -------------------------------------------------------------------------------- /ico_webserver/netopia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/netopia.gif -------------------------------------------------------------------------------- /ico_webserver/netscape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/netscape.gif -------------------------------------------------------------------------------- /ico_webserver/nginx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/nginx.gif -------------------------------------------------------------------------------- /ico_webserver/novell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/novell.gif -------------------------------------------------------------------------------- /ico_webserver/omnihttpd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/omnihttpd.gif -------------------------------------------------------------------------------- /ico_webserver/oracle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/oracle.gif -------------------------------------------------------------------------------- /ico_webserver/orion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/orion.gif -------------------------------------------------------------------------------- /ico_webserver/osu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/osu.gif -------------------------------------------------------------------------------- /ico_webserver/packetshaper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/packetshaper.gif -------------------------------------------------------------------------------- /ico_webserver/philips.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/philips.gif -------------------------------------------------------------------------------- /ico_webserver/publicfile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/publicfile.gif -------------------------------------------------------------------------------- /ico_webserver/python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/python.gif -------------------------------------------------------------------------------- /ico_webserver/qnap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/qnap.gif -------------------------------------------------------------------------------- /ico_webserver/resin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/resin.gif -------------------------------------------------------------------------------- /ico_webserver/ricoh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/ricoh.gif -------------------------------------------------------------------------------- /ico_webserver/roxen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/roxen.gif -------------------------------------------------------------------------------- /ico_webserver/smc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/smc.gif -------------------------------------------------------------------------------- /ico_webserver/snap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/snap.gif -------------------------------------------------------------------------------- /ico_webserver/sonicwall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/sonicwall.gif -------------------------------------------------------------------------------- /ico_webserver/sony.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/sony.gif -------------------------------------------------------------------------------- /ico_webserver/squid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/squid.gif -------------------------------------------------------------------------------- /ico_webserver/stweb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/stweb.gif -------------------------------------------------------------------------------- /ico_webserver/sun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/sun.gif -------------------------------------------------------------------------------- /ico_webserver/suse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/suse.gif -------------------------------------------------------------------------------- /ico_webserver/swat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/swat.gif -------------------------------------------------------------------------------- /ico_webserver/symantec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/symantec.gif -------------------------------------------------------------------------------- /ico_webserver/tandberg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/tandberg.gif -------------------------------------------------------------------------------- /ico_webserver/tclhttpd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/tclhttpd.gif -------------------------------------------------------------------------------- /ico_webserver/thttpd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/thttpd.gif -------------------------------------------------------------------------------- /ico_webserver/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/tomcat.gif -------------------------------------------------------------------------------- /ico_webserver/tux.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/tux.gif -------------------------------------------------------------------------------- /ico_webserver/ubicom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/ubicom.gif -------------------------------------------------------------------------------- /ico_webserver/unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/unknown.gif -------------------------------------------------------------------------------- /ico_webserver/userland.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/userland.gif -------------------------------------------------------------------------------- /ico_webserver/virtuoso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/virtuoso.gif -------------------------------------------------------------------------------- /ico_webserver/vnc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/vnc.gif -------------------------------------------------------------------------------- /ico_webserver/vqserver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/vqserver.gif -------------------------------------------------------------------------------- /ico_webserver/vswebserver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/vswebserver.gif -------------------------------------------------------------------------------- /ico_webserver/w3c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/w3c.gif -------------------------------------------------------------------------------- /ico_webserver/wdaemon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/wdaemon.gif -------------------------------------------------------------------------------- /ico_webserver/webcamxp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/webcamxp.gif -------------------------------------------------------------------------------- /ico_webserver/webrick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/webrick.gif -------------------------------------------------------------------------------- /ico_webserver/wn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/wn.gif -------------------------------------------------------------------------------- /ico_webserver/xerver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/xerver.gif -------------------------------------------------------------------------------- /ico_webserver/xitami.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/xitami.gif -------------------------------------------------------------------------------- /ico_webserver/yaws.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/yaws.gif -------------------------------------------------------------------------------- /ico_webserver/zeus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/zeus.gif -------------------------------------------------------------------------------- /ico_webserver/zope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/zope.gif -------------------------------------------------------------------------------- /ico_webserver/zyxel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/ico_webserver/zyxel.gif -------------------------------------------------------------------------------- /icohttprecon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipag/httprecon-win32/6700d6938506a98a1cd0b21a2fd15a954a62cddb/icohttprecon.ico -------------------------------------------------------------------------------- /modAnalysisAccept.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisAccept" 2 | Option Explicit 3 | 4 | Public Function GetContentType(ByRef sInput As String) As String 5 | GetContentType = GetHeaderValue(sInput, "Content-Type") 6 | End Function 7 | 8 | Public Function GetAcceptRange(ByRef sInput As String) As String 9 | GetAcceptRange = GetHeaderValue(sInput, "Accept-Ranges") 10 | End Function 11 | 12 | 13 | -------------------------------------------------------------------------------- /modAnalysisAuthenticate.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisAuthenticate" 2 | Option Explicit 3 | 4 | Public Function GetHtaccessRealm(ByRef sInput As String) As String 5 | Dim sAuthenticateLine As String 6 | Dim iRealmStart As Integer 7 | Dim iRealmLength As Integer 8 | 9 | Const sRealmString As String = "realm=""" 10 | 11 | sAuthenticateLine = GetHeaderValue(sInput, "WWW-Authenticate") 12 | 13 | iRealmStart = InStr(1, sAuthenticateLine, sRealmString, vbBinaryCompare) 14 | 15 | If iRealmStart Then 16 | iRealmLength = iRealmStart + Len(sRealmString) 17 | 18 | GetHtaccessRealm = Mid$(sAuthenticateLine, iRealmLength, (InStr(iRealmStart + Len(sRealmString), sAuthenticateLine, ChrW$(34), vbBinaryCompare) - iRealmLength)) 19 | End If 20 | End Function 21 | 22 | -------------------------------------------------------------------------------- /modAnalysisBanner.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisBanner" 2 | Option Explicit 3 | 4 | Public Function GetBanner(ByRef sInput As String) As String 5 | GetBanner = GetHeaderValue(sInput, "Server") 6 | End Function 7 | 8 | Public Function GetXPoweredBy(ByRef sInput As String) As String 9 | GetXPoweredBy = GetHeaderValue(sInput, "X-Powered-By") 10 | End Function 11 | 12 | Public Function PreFetchBanner(ByRef sRequest As String) As String 13 | Dim sBanner As String 14 | 15 | sBanner = GetHeaderValue(sRequest, "Server", True) 16 | 17 | If (LenB(sBanner)) Then 18 | PreFetchBanner = sBanner 19 | Else 20 | PreFetchBanner = "no banner available" 21 | End If 22 | End Function 23 | -------------------------------------------------------------------------------- /modAnalysisCache.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisCache" 2 | Option Explicit 3 | 4 | Public Function GetCacheControl(ByRef sInput As String) As String 5 | GetCacheControl = GetHeaderValue(sInput, "Cache-Control") 6 | End Function 7 | 8 | Public Function GetPragma(ByRef sInput As String) As String 9 | GetPragma = GetHeaderValue(sInput, "Pragma") 10 | End Function 11 | 12 | Public Function GetVaryOrder(ByRef sInput As String) As String 13 | GetVaryOrder = Replace(GetHeaderValue(sInput, "Vary"), ", ", ",", , , vbBinaryCompare) 14 | End Function 15 | 16 | Public Function GetVaryCapitalized(ByRef sInput As String) As String 17 | Dim sVaryElements As String 18 | 19 | sVaryElements = GetVaryOrder(sInput) 20 | 21 | If (LenB(sVaryElements)) Then 22 | If (sVaryElements = LCase$(sVaryElements)) Then 23 | GetVaryCapitalized = 0 24 | Else 25 | GetVaryCapitalized = 1 26 | End If 27 | End If 28 | End Function 29 | 30 | Public Function GetVaryDelimiter(ByRef sInput As String) As String 31 | Dim sVaryEntries As String 32 | 33 | sVaryEntries = GetVaryOrder(sInput) 34 | 35 | If (InStrB(1, sVaryEntries, ", ", vbBinaryCompare)) Then 36 | GetVaryDelimiter = ", " 37 | ElseIf (InStrB(1, sVaryEntries, ",", vbBinaryCompare)) Then 38 | GetVaryDelimiter = "," 39 | End If 40 | End Function 41 | -------------------------------------------------------------------------------- /modAnalysisConnection.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisConnection" 2 | Option Explicit 3 | 4 | Public Function GetConnection(ByRef sInput As String) As String 5 | GetConnection = GetHeaderValue(sInput, "Connection") 6 | End Function 7 | -------------------------------------------------------------------------------- /modAnalysisEtag.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisEtag" 2 | Option Explicit 3 | 4 | Public Function GetEtag(ByRef sInput As String) As String 5 | GetEtag = GetHeaderValue(LCase$(sInput), LCase$("ETag")) 6 | End Function 7 | 8 | Public Function GetEtagLength(ByRef sInput As String) As Integer 9 | GetEtagLength = Len(GetEtag(sInput)) 10 | End Function 11 | 12 | Public Function GetEtagQuotes(ByRef sInput As String) As String 13 | If (InStrB(1, GetEtag(sInput), ChrW$(34), vbBinaryCompare)) Then 14 | GetEtagQuotes = ChrW$(34) 15 | End If 16 | End Function 17 | -------------------------------------------------------------------------------- /modAnalysisHeaders.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisHeaders" 2 | Option Explicit 3 | 4 | Public Function GetHeaderValue(ByVal sInput As String, ByVal sHeader As String, Optional ByRef bFuzzySearch = True) As String 5 | Dim sHeaderValue As String 6 | Dim iHeaderTitle As Integer 7 | Dim iHeaderStart As Integer 8 | Dim iHeaderEnd As Integer 9 | Dim iDelimiterPosition As Integer 10 | 11 | iDelimiterPosition = InStr(1, sHeader, ":", vbBinaryCompare) 12 | 13 | If (iDelimiterPosition = 0) Then 14 | sHeader = sHeader & ":" 15 | End If 16 | 17 | If (bFuzzySearch = True) Then 18 | iHeaderTitle = InStr(1, LCase$(sInput), LCase$(sHeader), vbBinaryCompare) 19 | Else 20 | iHeaderTitle = InStr(1, sInput, sHeader, vbBinaryCompare) 21 | End If 22 | 23 | If (iHeaderTitle <> 0) Then 24 | iHeaderStart = iHeaderTitle + Len(sHeader) 25 | iHeaderEnd = InStr(iHeaderStart, sInput, vbCrLf, vbBinaryCompare) 26 | 27 | If (iHeaderEnd > 0) Then 28 | iHeaderEnd = iHeaderEnd - iHeaderStart 29 | End If 30 | sHeaderValue = Mid$(sInput, iHeaderStart, iHeaderEnd) 31 | End If 32 | 33 | GetHeaderValue = Trim(sHeaderValue) 34 | End Function 35 | 36 | Public Function GetHeaderSpace(ByRef sInput As String) As Integer 37 | Dim iDelimiterPosition As Integer 38 | 39 | iDelimiterPosition = InStr(1, sInput, ":", vbBinaryCompare) 40 | 41 | If (Mid$(sInput, iDelimiterPosition + 1, 1) = " ") Then 42 | GetHeaderSpace = 1 43 | Else 44 | GetHeaderSpace = 0 45 | End If 46 | End Function 47 | 48 | Public Function GetHeaderOrder(ByRef sInput As String, ByRef sIgnore As String) As String 49 | Dim sIgnoreArray() As String 50 | Dim iIgnoreCount As Integer 51 | Dim bFiltered As Boolean 52 | Dim sHeaderLines() As String 53 | Dim iHeaderCount As Integer 54 | Dim i As Integer 55 | Dim j As Integer 56 | Dim sHeaderName As String 57 | Dim iHeaderNameEnd As Integer 58 | Dim cHeaderNames As Concat 59 | 60 | Set cHeaderNames = New Concat 61 | 62 | sIgnoreArray = Split(sIgnore, "|", , vbBinaryCompare) 63 | iIgnoreCount = UBound(sIgnoreArray) 64 | 65 | sHeaderLines = Split(sInput, vbCrLf, , vbBinaryCompare) 66 | iHeaderCount = UBound(sHeaderLines) 67 | 68 | For i = 0 To iHeaderCount 69 | iHeaderNameEnd = InStr(1, sHeaderLines(i), ":", vbBinaryCompare) 70 | 71 | If (iHeaderNameEnd <> 0) Then 72 | sHeaderName = Mid(sHeaderLines(i), 1, iHeaderNameEnd - 1) 73 | 74 | bFiltered = False 75 | For j = 0 To iIgnoreCount 76 | If (InStrB(1, LCase$(sHeaderName), LCase$(sIgnoreArray(j)), vbBinaryCompare)) Then 77 | bFiltered = True 78 | Exit For 79 | End If 80 | Next j 81 | 82 | If (bFiltered = False) Then 83 | cHeaderNames.Concat sHeaderName 84 | 85 | If (LenB(sHeaderLines(i + 1))) Then 86 | cHeaderNames.Concat "," 87 | End If 88 | End If 89 | End If 90 | Next i 91 | 92 | GetHeaderOrder = cHeaderNames.Value 93 | End Function 94 | 95 | Public Function GetHeaderCapitalAfterDash(ByRef sInput As String) As Integer 96 | Dim sHeaders() As String 97 | Dim iHeaderCount As Integer 98 | Dim i As Integer 99 | Dim j As Integer 100 | Dim iDashPosition As Integer 101 | Dim iCounterDashes As Integer 102 | Dim iCounterCapital As Integer 103 | 104 | sHeaders = Split(GetHeaderOrder(sInput, vbNullString), ",", , vbBinaryCompare) 105 | iHeaderCount = UBound(sHeaders) 106 | 107 | For i = 0 To iHeaderCount 108 | iDashPosition = InStr(1, sHeaders(i), "-", vbBinaryCompare) 109 | 110 | If (iDashPosition <> 0) Then 111 | iCounterDashes = iCounterDashes + 1 112 | For j = 65 To 90 113 | If (ChrW$(j) = Mid(sHeaders(i), iDashPosition + 1, 1)) Then 114 | iCounterCapital = iCounterCapital + 1 115 | Exit For 116 | End If 117 | Next j 118 | End If 119 | Next i 120 | 121 | If ((iCounterDashes / 2) < iCounterCapital) Then 122 | GetHeaderCapitalAfterDash = 1 123 | Else 124 | GetHeaderCapitalAfterDash = 0 125 | End If 126 | End Function 127 | -------------------------------------------------------------------------------- /modAnalysisOptions.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisOptions" 2 | Option Explicit 3 | 4 | Public Function GetOptionsAllowed(ByRef sInput As String) As String 5 | GetOptionsAllowed = Replace(GetHeaderValue(sInput, "Allow"), ", ", ",", , , vbBinaryCompare) 6 | End Function 7 | 8 | Public Function GetOptionsPublic(ByRef sInput As String) As String 9 | GetOptionsPublic = Replace(GetHeaderValue(sInput, "Public"), ", ", ",", , , vbBinaryCompare) 10 | End Function 11 | 12 | Public Function GetOptionsDelimiter(ByRef sInput As String) As String 13 | Dim sAllowedOptions As String 14 | 15 | sAllowedOptions = GetOptionsAllowed(sInput) 16 | 17 | If (InStrB(1, sAllowedOptions, ", ", vbBinaryCompare)) Then 18 | GetOptionsDelimiter = ", " 19 | ElseIf (InStrB(1, sAllowedOptions, ",", vbBinaryCompare)) Then 20 | GetOptionsDelimiter = "," 21 | End If 22 | End Function 23 | -------------------------------------------------------------------------------- /modAnalysisProtocol.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisProtocol" 2 | Option Explicit 3 | 4 | Public Function GetProtocolName(ByRef sInput As String) As String 5 | Dim sProtocolName As String 6 | 7 | If (Len(sInput) > 14) Then 8 | sProtocolName = Mid$(sInput, 1, 4) 9 | End If 10 | 11 | GetProtocolName = sProtocolName 12 | End Function 13 | 14 | Public Function GetProtocolVersion(ByRef sInput As String) As String 15 | Dim sProtocolVersion As String 16 | 17 | If (Len(sInput) > 14) Then 18 | sProtocolVersion = Mid$(sInput, 6, 3) 19 | End If 20 | 21 | GetProtocolVersion = sProtocolVersion 22 | End Function 23 | 24 | -------------------------------------------------------------------------------- /modAnalysisStatus.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modAnalysisStatus" 2 | Option Explicit 3 | 4 | Public Function GetStatusCode(ByRef sInput As String) As String 5 | Dim sStatusCode As String 6 | 7 | If (Len(sInput) > 14) Then 8 | sStatusCode = Mid$(sInput, 10, 3) 9 | End If 10 | 11 | If (IsNumeric(sStatusCode)) Then 12 | GetStatusCode = sStatusCode 13 | Else 14 | GetStatusCode = 0 15 | End If 16 | End Function 17 | 18 | Public Function GetStatusText(ByRef sInput As String) As String 19 | On Error Resume Next 'Workaround for some crash bug 20 | 21 | Dim sStatusText As String 22 | Dim iLineEnd As Integer 23 | 24 | Const iLineStart As Integer = "14" 25 | 26 | If (Len(sInput) > iLineStart) Then 27 | iLineEnd = InStr(iLineStart, sInput, vbCrLf, vbBinaryCompare) - iLineStart 28 | 29 | If (iLineEnd > iLineStart) Then 30 | sStatusText = Mid$(sInput, iLineStart, iLineEnd) 31 | End If 32 | End If 33 | 34 | GetStatusText = sStatusText 35 | End Function 36 | -------------------------------------------------------------------------------- /modBrowserCall.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modBrowserCall" 2 | Option Explicit 3 | 4 | Public Declare Function ShellExecute Lib "Shell32" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long 5 | 6 | Public Sub OpenProjectWebsite() 7 | Call ChangeStatusBar("Open Project Web Site...") 8 | Call ShellExecute(frmMain.hwnd, "Open", APP_WEBSITE_URL, "", App.Path, 1) 9 | Call ChangeStatusBarDone 10 | End Sub 11 | 12 | Public Sub OpenUpdateWebsite() 13 | Call ChangeStatusBar("Open Update Web Site...") 14 | Call ShellExecute(frmMain.hwnd, "Open", APP_WEBSITE_URL & "?s=download&v=" & APP_NAME, "", App.Path, 1) 15 | Call ChangeStatusBarDone 16 | End Sub 17 | -------------------------------------------------------------------------------- /modComboboxAutocomplete.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modComboboxAutocomplete" 2 | Option Explicit 3 | 4 | Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long 5 | 6 | Private Const CB_FINDSTRING As Long = &H14C 7 | 8 | Public Sub ComboAutoComplete(ByRef SourceCtl As VB.ComboBox, ByRef KeyAscii As Integer, ByRef LeftOffPos As Long) 9 | Dim iStart As Long 10 | Dim sSearchKey As String 11 | 12 | With SourceCtl 13 | Select Case ChrW$(KeyAscii) 14 | Case vbBack 15 | Case Else 16 | If ChrW$(KeyAscii) <> vbBack Then 17 | .SelText = ChrW$(KeyAscii) 18 | 19 | iStart = .SelStart 20 | 21 | If LeftOffPos <> 0 Then 22 | .SelStart = LeftOffPos 23 | iStart = LeftOffPos 24 | End If 25 | 26 | sSearchKey = CStr(Left$(.Text, iStart)) 27 | .ListIndex = SendMessage(.hwnd, CB_FINDSTRING, -1, _ 28 | ByVal CStr(Left$(.Text, iStart))) 29 | 30 | If .ListIndex = -1 Then 31 | LeftOffPos = Len(sSearchKey) 32 | End If 33 | 34 | .SelStart = iStart 35 | .SelLength = Len(.Text) 36 | LeftOffPos = 0 37 | 38 | KeyAscii = 0 39 | End If 40 | End Select 41 | End With 42 | End Sub 43 | 44 | -------------------------------------------------------------------------------- /modDirectoryBrowser.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modDirectoryBrowser" 2 | Option Explicit 3 | 4 | Private Declare Function SHBrowseForFolder Lib "Shell32" (lpbi As BROWSEINFO) As Long 5 | Private Declare Function SHGetPathFromIDList Lib "Shell32" (ByVal pidList As Long, ByVal lpBuffer As String) As Long 6 | Private Declare Sub CoTaskMemFree Lib "ole32" (ByVal hMem As Long) 7 | 8 | Private Const MAX_PATH As Integer = 260 9 | Private Const BIF_RETURNONLYFSDIRS As String = &H1& 10 | 11 | Private Type BROWSEINFO 12 | hwndOwner As Long 13 | pIDLRoot As Long 14 | pszDisplayName As Long 15 | lpszTitle As String 16 | ulFlags As Long 17 | lpfnCallback As Long 18 | lParam As Long 19 | iImage As Long 20 | End Type 21 | 22 | Public Function BrowseForFolder(Optional vParent As Variant, Optional ByRef sTitle As String) As String 23 | Dim tBI As BROWSEINFO 24 | Dim lhWndParent As Long 25 | Dim lPIDL As Long 26 | Dim sPath As String 27 | 28 | If IsMissing(sTitle) Then sTitle = "Please choose a directory" 29 | If IsMissing(vParent) = False Then lhWndParent = vParent.hwnd 30 | 31 | tBI.hwndOwner = lhWndParent 32 | tBI.lpszTitle = sTitle 33 | tBI.ulFlags = BIF_RETURNONLYFSDIRS 34 | 35 | lPIDL = SHBrowseForFolder(tBI) 36 | 37 | If (lPIDL <> 0) Then 38 | sPath = Space$(MAX_PATH) 39 | SHGetPathFromIDList lPIDL, sPath 40 | 41 | sPath = Left$(sPath, InStr(sPath, ChrW$(0)) - 1) 42 | 43 | CoTaskMemFree lPIDL 44 | Else 45 | sPath = vbNullString 46 | End If 47 | 48 | BrowseForFolder = sPath 49 | End Function 50 | 51 | -------------------------------------------------------------------------------- /modHttpConnectivity.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modHttpConnectivity" 2 | Option Explicit 3 | 4 | Private Declare Function InternetOpen Lib "wininet.dll" Alias "InternetOpenA" (ByVal sAgent As String, ByVal lAccessType As Long, ByVal sProxyName As String, ByVal sProxyBypass As String, ByVal lFlags As Long) As Long 5 | Private Declare Function InternetConnect Lib "wininet.dll" Alias "InternetConnectA" (ByVal hInternetSession As Long, ByVal sServerName As String, ByVal nServerPort As Integer, ByVal sUsername As String, ByVal sPassword As String, ByVal lService As Long, ByVal lFlags As Long, ByVal lContext As Long) As Long 6 | Private Declare Function HttpOpenRequest Lib "wininet.dll" Alias "HttpOpenRequestA" (ByVal hHttpSession As Long, ByVal sVerb As String, ByVal sObjectName As String, ByVal sVersion As String, ByVal sReferer As String, ByVal something As Long, ByVal lFlags As Long, ByVal lContext As Long) As Long 7 | Private Declare Function HttpQueryInfo Lib "wininet.dll" Alias "HttpQueryInfoA" (ByVal hHttpRequest As Long, ByVal lInfoLevel As Long, ByRef sBuffer As Any, ByRef lBufferLength As Long, ByRef lIndex As Long) As Integer 8 | Private Declare Function InternetCloseHandle Lib "wininet.dll" (ByVal hInet As Long) As Integer 9 | Private Declare Function HttpSendRequest Lib "wininet.dll" Alias "HttpSendRequestA" (ByVal hHttpRequest As Long, ByVal sHeaders As String, ByVal lHeadersLength As Long, ByVal sOptional As String, ByVal lOptionalLength As Long) As Integer 10 | Private Const HTTP_QUERY_STATUS_CODE = 19 11 | Private Const INTERNET_SERVICE_HTTP = 3 12 | Private Const scUserAgent = "http sample" 13 | Private Const INTERNET_OPEN_TYPE_PRECONFIG = 0 14 | Private Const INTERNET_FLAG_RELOAD = &H80000000 15 | Private Const INTERNET_FLAG_KEEP_CONNECTION = &H400000 16 | 17 | Public Function SendHttpRequest(ByRef URL As String) As String 18 | Dim sBuffer As String * 1024 19 | Dim lBufferLength As Long 20 | Dim hInternetSession As Long 21 | Dim hInternetConnect As Long 22 | Dim hHttpOpenRequest As Long 23 | 24 | lBufferLength = 1024 25 | 26 | 'Remove Http if needed 27 | If LCase(Left$(URL, 7)) = "http://" Then 28 | URL = Right$(URL, Len(URL) - 7) 29 | End If 30 | 31 | 'Open the Internetconnection 32 | hInternetSession = InternetOpen(application_name, INTERNET_OPEN_TYPE_PRECONFIG, vbNullString, vbNullString, 0) 33 | 34 | If CBool(hInternetSession) = False Then 35 | SendHttpRequest = 0 36 | Exit Function 37 | End If 38 | 39 | 'Connect and get the Status 40 | hInternetConnect = InternetConnect(hInternetSession, URL, 80, "", "", INTERNET_SERVICE_HTTP, 0, 0) 41 | hHttpOpenRequest = HttpOpenRequest(hInternetConnect, "GET", "", "HTTP/1.0", vbNullString, 0, INTERNET_FLAG_RELOAD Or INTERNET_FLAG_KEEP_CONNECTION, 0) 42 | HttpSendRequest hHttpOpenRequest, vbNullString, 0, vbNullString, 0 43 | HttpQueryInfo hHttpOpenRequest, HTTP_QUERY_STATUS_CODE, ByVal sBuffer, lBufferLength, 0 44 | SendHttpRequest = HttpQueryInfo(hHttpOpenRequest, &H80000000, sBuffer, lBufferLength, 0) 45 | ' SendHttpRequest = Val(Left$(sBuffer, lBufferLength)) 46 | 47 | 'Close connections 48 | InternetCloseHandle (hHttpOpenRequest) 49 | InternetCloseHandle (hInternetSession) 50 | InternetCloseHandle (hInternetConnect) 51 | End Function 52 | -------------------------------------------------------------------------------- /modIdentificationDetails.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modIdentificationDetails" 2 | Option Explicit 3 | 4 | Public Sub IdentifyServerFingerprint(ByRef sFingerprintDirectory As String, ByRef sResponse As String, ByRef sImplementation As String) 5 | Call ResetResponseHighlight 6 | 7 | If (LenB(sResponse)) Then 8 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_banner, sResponse, sImplementation, "Server: ") 9 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_xpoweredby, sResponse, sImplementation, "X-Powered-By: ") 10 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_protocolname, sResponse, sImplementation, vbNullString, "/") 11 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_protocolversion, sResponse, sImplementation, "/", " ") 12 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_statuscode, sResponse, sImplementation, " ", " ") 13 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_statustext, sResponse, sImplementation, " ") 14 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_optionsallowed, sResponse, sImplementation, "Allow: ") 15 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_optionspublic, sResponse, sImplementation, "Public: ") 16 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_contenttype, sResponse, sImplementation, "Content-Type: ") 17 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_acceptrange, sResponse, sImplementation, "Accept-Ranges: ") 18 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_connection, sResponse, sImplementation, "Connection: ") 19 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_cachecontrol, sResponse, sImplementation, "Cache-Control: ") 20 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_pragma, sResponse, sImplementation, "Pragma: ") 21 | Call FindDetailInDatabase(sFingerprintDirectory & app_file_htaccessrealm, sResponse, sImplementation, "realm=""", """") 22 | End If 23 | End Sub 24 | 25 | Public Sub FindDetailInDatabase(ByRef sDatabase As String, ByRef sResponse As String, ByRef sImplementation As String, Optional ByRef sBefore As String, Optional ByRef sAfter As String) 26 | Dim sDatabaseContent() As String 27 | Dim iDatabaseEntries As Integer 28 | Dim iDelimiterPosition As Integer 29 | Dim i As Integer 30 | 31 | sDatabaseContent = Split(ReadFile(sDatabase), vbCrLf, , vbBinaryCompare) 32 | iDatabaseEntries = UBound(sDatabaseContent) 33 | 34 | For i = 0 To iDatabaseEntries 35 | If LenB(sImplementation) Then 36 | 37 | If LenB(sDatabaseContent(i)) Then 38 | iDelimiterPosition = InStr(1, sDatabaseContent(i), APP_DATABASE_DELIMITER, vbBinaryCompare) 39 | 40 | If ((iDelimiterPosition - 1) = Len(sImplementation)) Then 41 | 42 | If (sImplementation = Mid$(sDatabaseContent(i), 1, Len(sImplementation))) Then 43 | Call ColorMatch(sResponse, sBefore & Mid$(sDatabaseContent(i), iDelimiterPosition + 1) & sAfter) 44 | End If 45 | End If 46 | End If 47 | End If 48 | Next i 49 | 50 | Call SelectTopOfRichTextBox 51 | End Sub 52 | 53 | Public Sub ResetResponseHighlight() 54 | With frmMain.rtbResponses 55 | .SelStart = 0 56 | .SelLength = Len(.Text) 57 | .SelColor = &HFF00& 58 | End With 59 | 60 | Call SelectTopOfRichTextBox 61 | End Sub 62 | 63 | Public Sub SelectTopOfRichTextBox() 64 | frmMain.rtbResponses.SelStart = 0 65 | frmMain.rtbResponses.SelLength = 0 66 | End Sub 67 | 68 | Private Sub ColorMatch(ByRef sResponse As String, ByRef sString As String) 69 | Dim iStart As Integer 70 | 71 | iStart = InStr(1, sResponse, sString, vbBinaryCompare) - 1 72 | 73 | If (iStart >= 0) Then 74 | With frmMain.rtbResponses 75 | .SelStart = InStr(1, LCase$(sResponse), LCase$(sString), vbBinaryCompare) - 1 76 | .SelLength = Len(sString) 77 | .SelColor = &HC0C0& 78 | End With 79 | End If 80 | End Sub 81 | 82 | -------------------------------------------------------------------------------- /modInputValidation.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modInputValidation" 2 | Option Explicit 3 | 4 | Public Function AllowIntegersOnly(ByRef lInput As Long, ByRef lMinimum As Long, ByRef lMaximum As Long, ByRef lDefault As Long) 5 | If LenB(lInput) = 0 Or lInput = 0 Then 6 | AllowIntegersOnly = lDefault 7 | Else 8 | If lInput < lMinimum Then 9 | AllowIntegersOnly = lMinimum 10 | ElseIf lInput > lMaximum Then 11 | AllowIntegersOnly = lMaximum 12 | Else 13 | AllowIntegersOnly = lInput 14 | End If 15 | End If 16 | End Function 17 | 18 | Public Function PreventEmptyInput(ByRef sInput As String, ByRef sDefault As String) As String 19 | If (LenB(sInput)) Then 20 | PreventEmptyInput = sInput 21 | Else 22 | PreventEmptyInput = sDefault 23 | End If 24 | End Function 25 | -------------------------------------------------------------------------------- /modListViewSort.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modListViewSort" 2 | Option Explicit 3 | 4 | Public Sub ListViewSort(ByRef lListView As ListView, ByRef ColumnHeader As MSComctlLib.ColumnHeader, ByRef iSortOrder As Integer) 5 | Dim l As Long 6 | Dim sFormat As String 7 | Dim sData() As String 8 | Dim lIndex As Long 9 | 10 | On Error Resume Next 11 | 12 | With lListView 13 | lIndex = ColumnHeader.Index - 1 14 | 15 | Select Case LCase$(ColumnHeader.Tag) 16 | Case "number" 17 | sFormat = String(30, "0") & "." & String(30, "0") 18 | 19 | With .ListItems 20 | If (lIndex > 0) Then 21 | For l = 1 To .Count 22 | With .Item(l).ListSubItems(lIndex) 23 | .Tag = .Text & ChrW$(0) & .Tag 24 | If IsNumeric(.Text) Then 25 | If CDbl(.Text) >= 0 Then 26 | .Text = Format(CDbl(.Text), _ 27 | sFormat) 28 | Else 29 | .Text = "&" & InvNumber( _ 30 | Format(0 - CDbl(.Text), _ 31 | sFormat)) 32 | End If 33 | Else 34 | .Text = "" 35 | End If 36 | End With 37 | Next l 38 | Else 39 | For l = 1 To .Count 40 | With .Item(l) 41 | .Tag = .Text & ChrW$(0) & .Tag 42 | If IsNumeric(.Text) Then 43 | If CDbl(.Text) >= 0 Then 44 | .Text = Format(CDbl(.Text), _ 45 | sFormat) 46 | Else 47 | .Text = "&" & InvNumber( _ 48 | Format(0 - CDbl(.Text), _ 49 | sFormat)) 50 | End If 51 | Else 52 | .Text = "" 53 | End If 54 | End With 55 | Next l 56 | End If 57 | End With 58 | 59 | .SortOrder = iSortOrder 60 | .SortKey = ColumnHeader.Index - 1 61 | .Sorted = True 62 | 63 | With .ListItems 64 | If (lIndex > 0) Then 65 | For l = 1 To .Count 66 | With .Item(l).ListSubItems(lIndex) 67 | sData = Split(.Tag, ChrW$(0)) 68 | .Text = sData(0) 69 | .Tag = sData(1) 70 | End With 71 | Next l 72 | Else 73 | For l = 1 To .Count 74 | With .Item(l) 75 | sData = Split(.Tag, ChrW$(0)) 76 | .Text = sData(0) 77 | .Tag = sData(1) 78 | End With 79 | Next l 80 | End If 81 | End With 82 | 83 | Case Else 84 | .SortOrder = iSortOrder 85 | .SortKey = ColumnHeader.Index - 1 86 | .Sorted = True 87 | End Select 88 | End With 89 | End Sub 90 | 91 | Private Function InvNumber(ByRef sNumber As String) As String 92 | Dim i As Integer 93 | Dim iNumberLength As Integer 94 | 95 | iNumberLength = Len(sNumber) 96 | 97 | For i = 1 To iNumberLength 98 | Select Case Mid$(sNumber, i, 1) 99 | Case "-": Mid$(sNumber, i, 1) = " " 100 | Case "0": Mid$(sNumber, i, 1) = "9" 101 | Case "1": Mid$(sNumber, i, 1) = "8" 102 | Case "2": Mid$(sNumber, i, 1) = "7" 103 | Case "3": Mid$(sNumber, i, 1) = "6" 104 | Case "4": Mid$(sNumber, i, 1) = "5" 105 | Case "5": Mid$(sNumber, i, 1) = "4" 106 | Case "6": Mid$(sNumber, i, 1) = "3" 107 | Case "7": Mid$(sNumber, i, 1) = "2" 108 | Case "8": Mid$(sNumber, i, 1) = "1" 109 | Case "9": Mid$(sNumber, i, 1) = "0" 110 | End Select 111 | Next 112 | 113 | InvNumber = sNumber 114 | End Function 115 | 116 | -------------------------------------------------------------------------------- /modLogging.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modLogging" 2 | Option Explicit 3 | 4 | Public Sub ChangeStatusBar(ByRef sMessage As String) 5 | frmMain.stbStatus.SimpleText = sMessage 6 | End Sub 7 | 8 | Public Sub ChangeStatusBarDone() 9 | frmMain.stbStatus.SimpleText = frmMain.stbStatus.SimpleText & " Done." 10 | End Sub 11 | 12 | Public Sub ChangeStatusBarReady() 13 | frmMain.stbStatus.SimpleText = "Ready." 14 | End Sub 15 | -------------------------------------------------------------------------------- /modReporting.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modReporting" 2 | Option Explicit 3 | 4 | Declare Function GetUserName Lib "advapi32" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long 5 | 6 | Public Function GetLocalUsername() As String 7 | Dim sTemp As String 8 | 9 | sTemp = String(255, 0) 10 | GetUserName sTemp, 255 11 | GetLocalUsername = Left$(sTemp, InStr(sTemp, ChrW$(0)) - 1) 12 | End Function 13 | 14 | 15 | -------------------------------------------------------------------------------- /modReportingCsv.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modReportingCsv" 2 | Option Explicit 3 | 4 | Public Function GenerateCsvReport(ByRef iHitlistSize As Integer) As String 5 | Call ChangeStatusBar("Generate CSV Report...") 6 | GenerateCsvReport = GenerateHitListCsv(frmMain.lsvResults, iHitlistSize, ";") 7 | Call ChangeStatusBarDone 8 | End Function 9 | 10 | Public Function GenerateHitListCsv(ByRef lSource As ListView, ByRef iCount As Integer, Optional ByRef sDelimiter As String = ";") As String 11 | Dim cResults As Concat 12 | Dim iListItemCount As Integer 13 | Dim i As Integer 14 | 15 | Set cResults = New Concat 16 | 17 | iListItemCount = lSource.ListItems.Count 18 | 19 | If (iListItemCount > iCount) Then 20 | iListItemCount = iCount 21 | End If 22 | 23 | With cResults 24 | .Concat "Position" & sDelimiter & "Name" & sDelimiter & "Hits" & sDelimiter & "Match" & vbCrLf 25 | For i = 1 To iListItemCount 26 | .Concat i & sDelimiter 27 | .Concat lSource.ListItems(i).ListSubItems(1).Text & sDelimiter 28 | .Concat lSource.ListItems(i).ListSubItems(2).Text & sDelimiter 29 | .Concat Round(lSource.ListItems(i).ListSubItems(3).Text, 2) & "%" & vbCrLf 30 | Next i 31 | 32 | GenerateHitListCsv = .Value 33 | End With 34 | End Function 35 | 36 | -------------------------------------------------------------------------------- /scans/apache-1.3.26.fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 200 OK 3 | Date: Thu, 03 Apr 2008 02:37:08 GMT 4 | Server: Apache 5 | Connection: close 6 | Content-Type: text/html 7 | 8 | 9 | 10 | HTTP/1.1 403 Forbidden 11 | Date: Thu, 03 Apr 2008 02:37:08 GMT 12 | Server: Apache 13 | Connection: close 14 | Content-Type: text/html 15 | 16 | 17 | 18 | HTTP/1.1 404 Not Found 19 | Date: Thu, 03 Apr 2008 02:37:09 GMT 20 | Server: Apache 21 | Connection: close 22 | Content-Type: text/html 23 | 24 | 25 | 26 | HTTP/1.1 200 OK 27 | Date: Thu, 03 Apr 2008 02:37:09 GMT 28 | Server: Apache 29 | Connection: close 30 | Content-Type: text/html 31 | 32 | 33 | 34 | HTTP/1.1 200 OK 35 | Date: Thu, 03 Apr 2008 02:37:09 GMT 36 | Server: Apache 37 | Keep-Alive: timeout=15, max=100 38 | Connection: Keep-Alive 39 | Content-Type: text/html 40 | 41 | 42 | 43 | HTTP/1.1 200 OK 44 | Date: Thu, 03 Apr 2008 02:37:09 GMT 45 | Server: Apache 46 | Content-Length: 0 47 | Allow: GET, HEAD, OPTIONS, TRACE 48 | Keep-Alive: timeout=15, max=100 49 | Connection: Keep-Alive 50 | 51 | 52 | 53 | HTTP/1.1 405 Method Not Allowed 54 | Date: Thu, 03 Apr 2008 02:37:09 GMT 55 | Server: Apache 56 | Allow: GET, HEAD, OPTIONS, TRACE 57 | Connection: close 58 | Content-Type: text/html; charset=iso-8859-1 59 | 60 | 61 | 62 | HTTP/1.1 501 Method Not Implemented 63 | Date: Thu, 03 Apr 2008 02:37:09 GMT 64 | Server: Apache 65 | Allow: GET, HEAD, OPTIONS, TRACE 66 | Connection: close 67 | Content-Type: text/html; charset=iso-8859-1 68 | 69 | 70 | 71 | HTTP/1.1 404 Not Found 72 | Date: Thu, 03 Apr 2008 02:37:10 GMT 73 | Server: Apache 74 | Connection: close 75 | Content-Type: text/html 76 | 77 | 78 | -------------------------------------------------------------------------------- /scans/apache-2.2.3-centos.fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 200 OK 3 | Date: Fri, 28 Mar 2008 20:55:39 GMT 4 | Server: Apache/2.2.3 (CentOS) 5 | X-Powered-By: PHP/5.1.6 6 | Expires: Mon, 26 Jul 1997 05:00:00 GMT 7 | Last-Modified: Fri, 28 Mar 2008 20:55:39 GMT 8 | Cache-Control: no-store, no-cache, must-revalidate 9 | Cache-Control: post-check=0, pre-check=0 10 | Pragma: no-cache 11 | Connection: close 12 | Transfer-Encoding: chunked 13 | Content-Type: text/html; charset=iso-8859-1 14 | 15 | 16 | 17 | HTTP/1.1 403 Forbidden 18 | Date: Fri, 28 Mar 2008 20:55:39 GMT 19 | Server: Apache/2.2.3 (CentOS) 20 | Last-Modified: Thu, 01 Nov 2007 16:42:46 GMT 21 | ETag: "ff800f-4b9-bd600d80" 22 | Accept-Ranges: bytes 23 | Content-Length: 1209 24 | Connection: close 25 | Content-Type: text/html; charset=ISO-8859-1 26 | 27 | 28 | 29 | HTTP/1.1 404 Not Found 30 | Date: Fri, 28 Mar 2008 20:55:39 GMT 31 | Server: Apache/2.2.3 (CentOS) 32 | Last-Modified: Thu, 01 Nov 2007 16:42:46 GMT 33 | ETag: "ff8011-89f-bd600d80" 34 | Accept-Ranges: bytes 35 | Content-Length: 2207 36 | Connection: close 37 | Content-Type: text/html; charset=ISO-8859-1 38 | 39 | 40 | 41 | HTTP/1.1 200 OK 42 | Date: Fri, 28 Mar 2008 20:55:39 GMT 43 | Server: Apache/2.2.3 (CentOS) 44 | X-Powered-By: PHP/5.1.6 45 | Expires: Mon, 26 Jul 1997 05:00:00 GMT 46 | Last-Modified: Fri, 28 Mar 2008 20:55:40 GMT 47 | Cache-Control: no-store, no-cache, must-revalidate 48 | Cache-Control: post-check=0, pre-check=0 49 | Pragma: no-cache 50 | Connection: close 51 | Transfer-Encoding: chunked 52 | Content-Type: text/html; charset=iso-8859-1 53 | 54 | 55 | 56 | HTTP/1.1 200 OK 57 | Date: Fri, 28 Mar 2008 20:55:40 GMT 58 | Server: Apache/2.2.3 (CentOS) 59 | X-Powered-By: PHP/5.1.6 60 | Expires: Mon, 26 Jul 1997 05:00:00 GMT 61 | Last-Modified: Fri, 28 Mar 2008 20:55:40 GMT 62 | Cache-Control: no-store, no-cache, must-revalidate 63 | Cache-Control: post-check=0, pre-check=0 64 | Pragma: no-cache 65 | Connection: close 66 | Content-Type: text/html; charset=iso-8859-1 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | HTTP/1.1 404 Not Found 77 | Date: Fri, 28 Mar 2008 20:55:40 GMT 78 | Server: Apache/2.2.3 (CentOS) 79 | Last-Modified: Thu, 01 Nov 2007 16:42:46 GMT 80 | ETag: "ff8011-89f-bd600d80" 81 | Accept-Ranges: bytes 82 | Content-Length: 2207 83 | Connection: close 84 | Content-Type: text/html; charset=ISO-8859-1 85 | 86 | 87 | -------------------------------------------------------------------------------- /scans/apache-2.2.8.fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 200 OK 3 | Date: Wed, 26 Mar 2008 21:57:02 GMT 4 | Server: Apache 5 | Last-Modified: Wed, 19 Mar 2008 17:28:52 GMT 6 | ETag: "674c23-0-448cd962efd00" 7 | Accept-Ranges: bytes 8 | Content-Length: 0 9 | Keep-Alive: timeout=15, max=100 10 | Connection: Keep-Alive 11 | Content-Type: text/html 12 | 13 | 14 | 15 | HTTP/1.1 403 Forbidden 16 | Date: Wed, 26 Mar 2008 21:57:03 GMT 17 | Server: Apache 18 | Content-Length: 1298 19 | Keep-Alive: timeout=15, max=99 20 | Connection: Keep-Alive 21 | Content-Type: text/html; charset=iso-8859-1 22 | 23 | 24 | 25 | HTTP/1.1 404 Not Found 26 | Date: Wed, 26 Mar 2008 21:57:03 GMT 27 | Server: Apache 28 | Content-Length: 281 29 | Keep-Alive: timeout=15, max=100 30 | Connection: Keep-Alive 31 | Content-Type: text/html; charset=iso-8859-1 32 | 33 | 34 | 35 | HTTP/1.1 200 OK 36 | Date: Wed, 26 Mar 2008 21:57:03 GMT 37 | Server: Apache 38 | Last-Modified: Wed, 19 Mar 2008 17:28:52 GMT 39 | ETag: "674c23-0-448cd962efd00" 40 | Accept-Ranges: bytes 41 | Content-Length: 0 42 | Keep-Alive: timeout=15, max=99 43 | Connection: Keep-Alive 44 | Content-Type: text/html 45 | 46 | 47 | 48 | HTTP/1.1 200 OK 49 | Date: Wed, 26 Mar 2008 21:57:03 GMT 50 | Server: Apache 51 | Last-Modified: Wed, 19 Mar 2008 17:28:52 GMT 52 | ETag: "674c23-0-448cd962efd00" 53 | Accept-Ranges: bytes 54 | Keep-Alive: timeout=15, max=98 55 | Connection: Keep-Alive 56 | Content-Type: text/html 57 | 58 | 59 | 60 | HTTP/1.1 200 OK 61 | Date: Wed, 26 Mar 2008 21:57:03 GMT 62 | Server: Apache 63 | Allow: GET,HEAD,POST,OPTIONS,TRACE 64 | Content-Length: 0 65 | Keep-Alive: timeout=15, max=97 66 | Connection: Keep-Alive 67 | Content-Type: text/html 68 | 69 | 70 | 71 | HTTP/1.1 405 Method Not Allowed 72 | Date: Wed, 26 Mar 2008 21:57:03 GMT 73 | Server: Apache 74 | Allow: GET,HEAD,POST,OPTIONS,TRACE 75 | Content-Length: 306 76 | Keep-Alive: timeout=15, max=96 77 | Connection: Keep-Alive 78 | Content-Type: text/html; charset=iso-8859-1 79 | 80 | 81 | 82 | HTTP/1.1 501 Method Not Implemented 83 | Date: Wed, 26 Mar 2008 21:57:03 GMT 84 | Server: Apache 85 | Allow: GET,HEAD,POST,OPTIONS,TRACE 86 | Content-Length: 288 87 | Connection: close 88 | Content-Type: text/html; charset=iso-8859-1 89 | 90 | 91 | 92 | HTTP/1.1 404 Not Found 93 | Date: Wed, 26 Mar 2008 21:57:03 GMT 94 | Server: Apache 95 | Content-Length: 280 96 | Keep-Alive: timeout=15, max=100 97 | Connection: Keep-Alive 98 | Content-Type: text/html; charset=iso-8859-1 99 | 100 | 101 | -------------------------------------------------------------------------------- /scans/dreambox_dm600.fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 401 Unauthorized 3 | Connection: close 4 | Content-Type: text/html 5 | WWW-Authenticate: Basic realm="dreambox" 6 | 7 | 8 | 9 | HTTP/1.1 404 Not found 10 | Connection: close 11 | Content-Type: text/html 12 | 13 | 14 | 15 | HTTP/1.1 404 Not found 16 | Connection: close 17 | Content-Type: text/html 18 | 19 | 20 | 21 | 22 | 23 | HTTP/1.1 405 Method not allowed 24 | Connection: close 25 | Content-Type: text/html 26 | 27 | 28 | 29 | HTTP/1.1 405 Method not allowed 30 | Connection: close 31 | Content-Type: text/html 32 | 33 | 34 | 35 | HTTP/1.1 405 Method not allowed 36 | Connection: close 37 | Content-Type: text/html 38 | 39 | 40 | 41 | HTTP/1.1 405 Method not allowed 42 | Connection: close 43 | Content-Type: text/html 44 | 45 | 46 | 47 | HTTP/1.1 403 Forbidden 48 | Connection: close 49 | Content-Type: text/html 50 | 51 | 52 | -------------------------------------------------------------------------------- /scans/kget-2.1.3.fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 401 Authorization Required 3 | Date: Tue, 02 Dec 2008 23:10:10 GMT 4 | Server: KGet 5 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 6 | Content-Type: text/html; charset=UTF-8 7 | Content-Length: 337 8 | 9 | 10 | 11 | HTTP/1.1 401 Authorization Required 12 | Date: Tue, 02 Dec 2008 23:10:10 GMT 13 | Server: KGet 14 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 15 | Content-Type: text/html; charset=UTF-8 16 | Content-Length: 337 17 | 18 | 19 | 20 | HTTP/1.1 401 Authorization Required 21 | Date: Tue, 02 Dec 2008 23:10:10 GMT 22 | Server: KGet 23 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 24 | Content-Type: text/html; charset=UTF-8 25 | Content-Length: 337 26 | 27 | 28 | 29 | HTTP/1.1 401 Authorization Required 30 | Date: Tue, 02 Dec 2008 23:10:10 GMT 31 | Server: KGet 32 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 33 | Content-Type: text/html; charset=UTF-8 34 | Content-Length: 337 35 | 36 | 37 | 38 | HTTP/1.1 401 Authorization Required 39 | Date: Tue, 02 Dec 2008 23:10:10 GMT 40 | Server: KGet 41 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 42 | Content-Type: text/html; charset=UTF-8 43 | Content-Length: 337 44 | 45 | 46 | 47 | HTTP/1.1 401 Authorization Required 48 | Date: Tue, 02 Dec 2008 23:10:10 GMT 49 | Server: KGet 50 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 51 | Content-Type: text/html; charset=UTF-8 52 | Content-Length: 337 53 | 54 | 55 | 56 | HTTP/1.1 401 Authorization Required 57 | Date: Tue, 02 Dec 2008 23:10:10 GMT 58 | Server: KGet 59 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 60 | Content-Type: text/html; charset=UTF-8 61 | Content-Length: 337 62 | 63 | 64 | 65 | HTTP/1.1 401 Authorization Required 66 | Date: Tue, 02 Dec 2008 23:10:10 GMT 67 | Server: KGet 68 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 69 | Content-Type: text/html; charset=UTF-8 70 | Content-Length: 337 71 | 72 | 73 | 74 | HTTP/1.1 401 Authorization Required 75 | Date: Tue, 02 Dec 2008 23:10:10 GMT 76 | Server: KGet 77 | WWW-Authenticate: Basic realm="KGet Webinterface Authorization" 78 | Content-Type: text/html; charset=UTF-8 79 | Content-Length: 337 80 | 81 | 82 | -------------------------------------------------------------------------------- /scans/microsoft_iis-6.0.fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 200 OK 3 | Date: Mon, 3 Mar 2008 09:23:39 GMT 4 | Content-Type: text/html 5 | Content-Length: 3155 6 | 7 | 8 | 9 | HTTP/1.1 404 Not Found 10 | Date: Mon, 3 Mar 2008 09:23:39 GMT 11 | Connection: close 12 | Content-Length: 0 13 | 14 | 15 | 16 | HTTP/1.1 404 Not Found 17 | Date: Mon, 3 Mar 2008 09:23:39 GMT 18 | Connection: close 19 | Content-Length: 0 20 | 21 | 22 | 23 | HTTP/1.1 200 OK 24 | Date: Mon, 3 Mar 2008 09:23:39 GMT 25 | Content-Type: text/html 26 | Content-Length: 3155 27 | 28 | 29 | 30 | HTTP/1.1 400 Bad Request 31 | Date: Mon, 3 Mar 2008 09:23:39 GMT 32 | Connection: close 33 | Content-Type: text/html 34 | Content-Length: 50 35 | 36 | 37 | 38 | HTTP/1.1 400 Bad Request 39 | Date: Mon, 3 Mar 2008 09:23:39 GMT 40 | Connection: close 41 | Content-Type: text/html 42 | Content-Length: 50 43 | 44 | 45 | 46 | HTTP/1.1 400 Bad Request 47 | Date: Mon, 3 Mar 2008 09:23:39 GMT 48 | Connection: close 49 | Content-Type: text/html 50 | Content-Length: 50 51 | 52 | 53 | 54 | HTTP/1.1 400 Bad Request 55 | Date: Mon, 3 Mar 2008 09:23:39 GMT 56 | Connection: close 57 | Content-Type: text/html 58 | Content-Length: 50 59 | 60 | 61 | 62 | HTTP/1.1 404 Not Found 63 | Date: Mon, 3 Mar 2008 09:23:39 GMT 64 | Connection: close 65 | Content-Length: 0 66 | 67 | 68 | -------------------------------------------------------------------------------- /scans/vmware_esx_web_server.fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 200 OK 3 | Date: Mon, 3 Mar 2008 09:23:39 GMT 4 | Content-Type: text/html 5 | Content-Length: 3155 6 | 7 | 8 | 9 | HTTP/1.1 404 Not Found 10 | Date: Mon, 3 Mar 2008 09:23:39 GMT 11 | Connection: close 12 | Content-Length: 0 13 | 14 | 15 | 16 | HTTP/1.1 404 Not Found 17 | Date: Mon, 3 Mar 2008 09:23:39 GMT 18 | Connection: close 19 | Content-Length: 0 20 | 21 | 22 | 23 | HTTP/1.1 200 OK 24 | Date: Mon, 3 Mar 2008 09:23:39 GMT 25 | Content-Type: text/html 26 | Content-Length: 3155 27 | 28 | 29 | 30 | HTTP/1.1 400 Bad Request 31 | Date: Mon, 3 Mar 2008 09:23:39 GMT 32 | Connection: close 33 | Content-Type: text/html 34 | Content-Length: 50 35 | 36 | 37 | 38 | HTTP/1.1 400 Bad Request 39 | Date: Mon, 3 Mar 2008 09:23:39 GMT 40 | Connection: close 41 | Content-Type: text/html 42 | Content-Length: 50 43 | 44 | 45 | 46 | HTTP/1.1 400 Bad Request 47 | Date: Mon, 3 Mar 2008 09:23:39 GMT 48 | Connection: close 49 | Content-Type: text/html 50 | Content-Length: 50 51 | 52 | 53 | 54 | HTTP/1.1 400 Bad Request 55 | Date: Mon, 3 Mar 2008 09:23:39 GMT 56 | Connection: close 57 | Content-Type: text/html 58 | Content-Length: 50 59 | 60 | 61 | 62 | HTTP/1.1 404 Not Found 63 | Date: Mon, 3 Mar 2008 09:23:39 GMT 64 | Connection: close 65 | Content-Length: 0 66 | 67 | 68 | -------------------------------------------------------------------------------- /scans/vnc_enterprise-e4.2.5 .fps: -------------------------------------------------------------------------------- 1 | 2 | HTTP/1.1 200 OK 3 | Server: RealVNC/4.0 4 | Date: Tue, 07 Apr 2009 11:12:08 GMT 5 | Last-Modified: Tue, 07 Apr 2009 11:12:08 GMT 6 | Content-Length: 240 7 | Connection: close 8 | Content-Type: text/html 9 | 10 | 11 | 12 | 13 | 14 | HTTP/1.1 404 Not Found 15 | Server: RealVNC/4.0 16 | Date: Tue, 07 Apr 2009 11:12:37 GMT 17 | Last-Modified: Tue, 07 Apr 2009 11:12:37 GMT 18 | Connection: close 19 | Content-Type: text/html 20 | 21 | 22 | 23 | 24 | 25 | HTTP/1.1 200 OK 26 | Server: RealVNC/4.0 27 | Date: Tue, 07 Apr 2009 11:13:27 GMT 28 | Last-Modified: Tue, 07 Apr 2009 11:13:27 GMT 29 | Content-Length: 240 30 | Connection: close 31 | Content-Type: text/html 32 | 33 | 34 | 35 | HTTP/1.1 501 Not Implemented 36 | Server: RealVNC/4.0 37 | Date: Tue, 07 Apr 2009 11:11:35 GMT 38 | Last-Modified: Tue, 07 Apr 2009 11:11:35 GMT 39 | Connection: close 40 | Content-Type: text/html 41 | 42 | 43 | 44 | HTTP/1.1 501 Not Implemented 45 | Server: RealVNC/4.0 46 | Date: Tue, 07 Apr 2009 11:13:41 GMT 47 | Last-Modified: Tue, 07 Apr 2009 11:13:41 GMT 48 | Connection: close 49 | Content-Type: text/html 50 | 51 | 52 | 53 | 54 | 55 | 56 | --------------------------------------------------------------------------------