class Proxy::Probing::Probes::UDP

Public Class Methods

humanized_scan_type() click to toggle source
# File lib/smart-proxy-probing/probes/udp.rb, line 8
def self.humanized_scan_type
  _('UDP')
end
scan_type() click to toggle source
# File lib/smart-proxy-probing/probes/udp.rb, line 4
def self.scan_type
  'udp'
end

Public Instance Methods

nmap_flags() click to toggle source
# File lib/smart-proxy-probing/probes/udp.rb, line 12
def nmap_flags
  # Use UDP scan with service detection
  %w(-sU -sV)
end