Sha256: 9ff7d0f63bcd7c554f3e7c62a4ec2a1a4fb8a7e72801073a9101b2981be3943a

Contents?: true

Size: 384 Bytes

Versions: 6

Compression:

Stored size: 384 Bytes

Contents

module Yawast
  module Scanner
    module Plugins
      module Servers
        class Python
          def self.check_banner(banner)
            #don't bother if this doesn't include Python
            return unless banner.include? 'Python/'

            Yawast::Utilities.puts_warn "Python Version: #{banner}"
            puts ''
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
yawast-0.7.0.beta1 lib/scanner/plugins/servers/python.rb
yawast-0.6.0 lib/scanner/plugins/servers/python.rb
yawast-0.6.0.beta6 lib/scanner/plugins/servers/python.rb
yawast-0.6.0.beta5 lib/scanner/plugins/servers/python.rb
yawast-0.6.0.beta4 lib/scanner/plugins/servers/python.rb
yawast-0.6.0.beta3 lib/scanner/plugins/servers/python.rb