module CMSScanner::Target::Server::Apache
Some Apche specific implementation
Public Instance Methods
directory_listing_entries(path = nil, params = {})
click to toggle source
@param [ String ] path @param [ Hash ] params The request params
@return [ Array<String> ] The first level of directories/files listed,
or an empty array if none
Calls superclass method
# File lib/cms_scanner/target/server/apache.rb, line 21 def directory_listing_entries(path = nil, params = {}) super(path, params, 'td a') end
server(_path = nil, _params = {})
click to toggle source
@param [ String ] path @param [ Hash ] params The request params
@return [ Symbol ] :Apache
# File lib/cms_scanner/target/server/apache.rb, line 12 def server(_path = nil, _params = {}) :Apache end