0.0
Low commit activity in last 3 years
implement api-alike for python libtaxii https://github.com/TAXIIProject/libtaxii
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.3
~> 2.18.0
~> 4.7.3
~> 13.0
~> 3.12.0
~> 0.22.0
~> 6.1.0
~> 3.18.1
~> 0.13.0
~> 3.10.1

Runtime

~> 1.4.0
~> 5.0.0
~> 1.15.2
~> 2.6.0
~> 2.1.0
 Project Readme

Ruby::Taxii

Ruby TAXII client

Currently under development - likely to break at a moment's notice.

Installation

Add this line to your application's Gemfile:

gem 'ruby-taxii2'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ruby-taxii2

Usage

require 'taxii'

# You can use a json file configuration
# client = Taxii::configure(config: 'my.config.json')
# or a direct configuration
client = Taxii::configure(user: 'user', pass: 'pass', url: 'url', logger: Logger.new(STDOUT))
collections = client.discover_collections

# List collections (name, type and availability)
puts "Listing collections:"
collections.each do |collection|
  puts "#{collection['@collection_name']} #{collection['@collection_type']} #{collection['@available']}"
end

# Pick up the first available collection
collection_name = collections.find{ |collection| collection['@available'] == 'true' }['@collection_name']

puts "Retrieving data for collection: #{collection_name}"
poll_request_message = Taxii::Messages::PollRequest.new(
  collection_name: collection_name,
  poll_parameters: Taxii::Messages::Parameters::Poll.new(response_type: 'FULL')
)

client.get_content_blocks(poll_request_message).each do |message|
  message = Taxii.parse(body)
  puts "Received a #{message.class}"
  puts message.as_json if message.is_a?(Taxii::Messages::ContentBlock)
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/crondaemon/ruby-taxii2.

See also

Ruby Stix2: https://github.com/crondaemon/ruby-stix2