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 [ Boolean ] true if url(path) has the directory # listing enabled, false otherwise def directory_listing?(path = nil, params = {}) res = NS::Browser.get(url(path), params) res.code == 200 && res.body =~ /

Index of/ ? true : false end # @param [ String ] path # @param [ Hash ] params The request params # # @return [ Array ] The first level of directories/files listed, # or an empty array if none def directory_listing_entries(path = nil, params = {}) return [] unless directory_listing?(path, params) doc = Nokogiri::HTML(NS::Browser.get(url(path), params).body) found = [] doc.css('td a').each { |node| found << node.text.to_s } found[1..-1] # returns the array w/o the first element 'Parent Directory' end end end end end