Sha256: 11cf7839d2e0d3b27846f397133d0b6b6ceb9e325641ad5195ec7485b074adb2
Contents?: true
Size: 743 Bytes
Versions: 51
Compression:
Stored size: 743 Bytes
Contents
# frozen_string_literal: true module CMSScanner class Target < WebSite module Server # Some Apche specific implementation module Apache # @param [ String ] path # @param [ Hash ] params The request params # # @return [ Symbol ] :Apache def server(_path = nil, _params = {}) :Apache end # @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 def directory_listing_entries(path = nil, params = {}) super(path, params, 'td a') end end end end end
Version data entries
51 entries across 51 versions & 3 rubygems