class OTX::Indicator::IP::DNS

Public Instance Methods

get_ips() click to toggle source
# File lib/otx_ruby/types/ip/dns.rb, line 5
def get_ips
  ips = []
  @passive_dns.each do |r|
    ips << r['address']
  end

  return ips
end