module Nessus::Client::Report2

@author Erran Carey <me@errancarey.com>

Public Instance Methods

report2_hosts(report) click to toggle source

POST /report/ports

@param [String] report unique identifier @param [String] hostname name of host to display open ports for

@return an object containing a list of open ports on a specified host

# File lib/nessus/client/report2.rb, line 11
def report2_hosts(report)
  arguments = {
                :report => report,
              }
  response = post '/report2/hosts', arguments
  response
end