Sha256: 8e36f483ee02dcbb34b0475dbe0f10e80de9d08fec45042682435781883c6836
Contents?: true
Size: 304 Bytes
Versions: 4
Compression:
Stored size: 304 Bytes
Contents
# frozen_string_literal: true module Onyphe module Clients class Threatlist < Client def get_by_ip(ip, page = 1) raise ArgumentError, "Invalid IP address: #{ip}" unless Validator.valid_ip?(ip) get("/threatlist/#{ip}", page: page) { |json| json } end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
onyphe-0.2.3 | lib/onyphe/clients/threatlist.rb |
onyphe-0.2.2 | lib/onyphe/clients/threatlist.rb |
onyphe-0.2.1 | lib/onyphe/clients/threatlist.rb |
onyphe-0.2.0 | lib/onyphe/clients/threatlist.rb |