Method: Nmap::XML#postscript

Defined in:
lib/nmap/xml.rb

#postscriptPostscript

The NSE scripts ran after the scan.

Returns:

  • (Postscript)

    Contains the script output and data.

Since:

  • 0.9.0

[View source]

282
283
284
285
286
# File 'lib/nmap/xml.rb', line 282

def postscript
  @postscript ||= if (postscript = @doc.at('postscript'))
                    Postscript.new(postscript)
                  end
end