module CMSScanner::Target::Server::Nginx

Some Nginx 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/nginx.rb, line 21
def directory_listing_entries(path = nil, params = {})
  super(path, params, 'pre a', /\A\.\./i)
end
server(_path = nil, _params = {}) click to toggle source

@param [ String ] path @param [ Hash ] params The request params

@return [ Symbol ] :Nginx

# File lib/cms_scanner/target/server/nginx.rb, line 12
def server(_path = nil, _params = {})
  :Nginx
end