Sha256: bce11395f106a0d360ccb65715ef07014007d11371f4b33d3e16397dec3c578b

Contents?: true

Size: 671 Bytes

Versions: 45

Compression:

Stored size: 671 Bytes

Contents

module SSHScan
  module SSHLib
    class OpenSSH
      class Version
        def initialize(version_string)
          @version_string = version_string
        end

        def to_s
          @version_string
        end
      end

      def initialize(banner = nil)
        @banner = banner
      end

      def version()
        return nil if @banner.nil?
        match = @banner.match(/OpenSSH_(\d+[\.\d+]+(p)?(\d+)?)/)
        return nil if match.nil?
        return OpenSSH::Version.new(match[1])
      end

      def common
        "openssh"
      end

      def cpe
        "a:openssh:openssh" << (":" + version.to_s) unless version.nil?
      end
    end
  end
end

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
ssh_scan-0.0.44 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.43 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.42 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.41 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.40 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.39 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.38 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.38.pre lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.37 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.36 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.35 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.34 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.33 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.32 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.31 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.30 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.29 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.28 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.27 lib/ssh_scan/ssh_lib/openssh.rb
ssh_scan-0.0.26 lib/ssh_scan/ssh_lib/openssh.rb