mozilla/ssh_scan

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

Summary

Maintainability
A
0 mins
Test Coverage
module SSHScan
  module OS
    class ROS
      def common
        "ros"
      end

      def cpe
        "o:ros:ros"
      end

      def version
        nil
      end
    end
  end
end