Sha256: 3a507b1ebe565220584b8835037be88f2d6bda713d598e0da63b1ad1f1f68a04
Contents?: true
Size: 1.79 KB
Versions: 6
Compression:
Stored size: 1.79 KB
Contents
# frozen_string_literal: true ## # This file is part of WhatWeb and may be subject to # redistribution and commercial restrictions. Please see the WhatWeb # web site for more information on licensing and terms of use. # http://www.morningstarsecurity.com/research/whatweb ## WhatWeb::Plugin.define "WiFiDog" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-23 @version = "0.1" @description = "The Wifidog project is an open source captive portal solution. Requires: PHP and postgresql" @website = "http://dev.wifidog.org/" # 69 for "I am unable to retrieve the schema version. Either the wifidog database hasn't been created yet, the postgresql server is down, or pg_hba.conf does not allow your web server to connect to the wifidog database." +host +port +dbname # 4 for intitle:"Wifidog Auth-server installation and configuration" "Welcome to the WifiDog Auth-Server installation and configuration script" # Dorks # @dorks = [ '"I am unable to retrieve the schema version. Either the wifidog database hasn\'t been created yet, the postgresql server is down, or pg_hba.conf does not allow your web server to connect to the wifidog database." "host" "port" "dbname"' ] # Matches # @matches = [ # Title # Install Page { text: '<TITLE>Welcome - Wifidog Auth-server installation and configuration</TITLE>' }, # Next Link { text: "<p><br></p><A HREF=\"#\" ONCLICK=\"document.myform.page.value = 'Prerequisites'; document.myform.action.value = ''; document.myform.submit();\" CLASS=\"submit\">Next</A>" }, # Error page { text: "<html><body><h1>I am unable to retrieve the schema version. Either the wifidog database hasn't been created yet, the postgresql server is down, or pg_hba.conf does not allow your web server to connect to the wifidog database.</h1>" }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems