mozilla/ssh_scan

View on GitHub
lib/ssh_scan/os/redhat.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SSHScan
  module OS
    class RedHat
      def common
        "redhat"
      end

      def cpe
        "o:redhat:redhat"
      end

      def version
        nil
      end
    end
  end
end