Sha256: d809aaea2303b4f347858bf42399209f3ba57349541b76d2b748527c3d4c98c4
Contents?: true
Size: 918 Bytes
Versions: 1
Compression:
Stored size: 918 Bytes
Contents
require 'gobuster/response' module Gobuster module Parsers module Dir # # Parses `gobuster dir` output. # # @param [IO] io # The IO stream to parse. # # @yield [response] # The given block will be passed each parsed response. # # @yieldparam [Response] response # The parsed response. # # @return [Enumerator] # If no block is given, an Enumerator will be returned. # def self.parse(io) return enum_for(__method__,io) unless block_given? line_regexp = /^(\/[^\s]+)\s+\(Status: (\d{3})\)\s+\[Size: (\d+)\]/ io.each_line do |line| if (match = line.match(line_regexp)) yield Response.new( path: match[1], status: match[2].to_i, size: match[3].to_i ) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-gobuster-0.1.0 | lib/gobuster/parsers/dir.rb |