mozilla/ssh_scan

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

Summary

Maintainability
A
0 mins
Test Coverage
module SSHScan
  module OS
    class FreeBSD
      def common
        "freebsd"
      end

      def cpe
        "o:freebsd:freebsd"
      end

      def version
        nil
      end
    end
  end
end