Sha256: 90ab10b476c78b4430261e98ebda81e42dca19fef21d6b5e204003d92603cd4c
Contents?: true
Size: 712 Bytes
Versions: 55
Compression:
Stored size: 712 Bytes
Contents
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
55 entries across 55 versions & 1 rubygems