Project

cymon

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Cymon is the largest open tracker of malware, phishing, botnets, spam, and more. Brought to you by eSentire.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0
~> 3.0
>= 4.0.0, ~> 4.0

Runtime

>= 0.15.2, ~> 0.15
>= 0.12.2, ~> 0.12
 Project Readme

Cymon

Gem Version Build Status

A Ruby client gem for Cymon.io API

Branch Cymon API
Master v2

Installation

Add this line to your application's Gemfile:

gem 'cymon'

And then execute:

$ bundle

Or install it yourself as:

$ gem install cymon

Usage

# Init a client
client = Cymon.client

# /search endpoint
# Seach By IP
resp = client.search.by_ip('209.90.88.140')
resp.status
    => 200
resp.body
    => {"total"=>14, "from"=>0, "size"=>10, "hits"=>[{...}, {...}]}

Usage with authentication

# Init a client
client = Cymon.client(username: 'yourname', password: 'yourpass')
client.auth.login
or
client = Cymon.client
client.auth.login(username: 'yourname', password: 'yourpass')

or if you have an active JWT token

client = Cymon.client(token: 'jwtoken')

# /search endpoint
# Seach By IP (max limit size is 10 for unauthoenticated user, and 100 for authenticated users)
resp = client.search.by_ip('209.90.88.140', size: 20)
resp.status
    => 200
resp.body
    => {"total"=>14, "from"=>0, "size"=>20, "hits"=>[{...}, {...}]}

Current Endpoints

Command Endpoint
client = Cymon.client Init a client
Auth http://docs.cymon.io/#header-authentication
client.auth.login http://docs.cymon.io/#auth-login-post
Search http://docs.cymon.io/#search
client.search.by_ip http://docs.cymon.io/#search-search-by-ip-get
client.search.by_domain http://docs.cymon.io/#search-search-by-domain-get
client.search.by_hostname http://docs.cymon.io/#search-search-by-hostname-get
client.search.by_md5 http://docs.cymon.io/#search-search-by-md5-get
client.search.by_sha1 http://docs.cymon.io/#search-search-by-sha1-get
client.search.by_sha256 http://docs.cymon.io/#search-search-by-sha256-get
client.search.by_term http://docs.cymon.io/#search-search-by-term-get
Feeds http://docs.cymon.io/#feeds
client.feed.all http://docs.cymon.io/#feeds-list-get
client.feed.find http://docs.cymon.io/#feeds-get-feed-get

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run rake console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install.

Contributing

Report issues / feature requests and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.