Project

vulndbhq

0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby wrapper for the VulnDB HQ API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.8
~> 2.8

Runtime

= 0.8.9
 Project Readme

VulnDB HQ Ruby Gem Build Status Dependency Status

This gem provides a Ruby wrapper to the VulnDB HQ API (http://vulndbhq.com).

Installation

Add this line to your application's Gemfile:

gem 'vulndbhq'

And then execute:

$ bundle

Or install it yourself as:

$ gem install vulndbhq

Configuration

To provide your access credentials:

require 'vulndbhq'

client = VulnDBHQ::client
client.host = 'https://you.vulndbhq.com'
client.user = 'your@email.com'
client.password = 'password'

Or provide configuration in line:

client = VulnDBHQ::Client.new(host: 'https://your.vulndbhq.com', user: 'your@email.com', password: 'password')

Usage examples

Return the all PrivatePage:

client.private_pages

Return private pages containing XSS

client.private_pages(q: 'XSS')

Get a PrivatePage by id:

private_page = client.private_page(1)

puts private_page.name
puts private_page.content

Return all the PublicPages:

client.public_pages

See the VulnDB HQ API docs for the full list of available methods.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Copyright

Copyright (c) 2012 Daniel Martin, Security Roots Ltd. See LICENSE for details.

Acknowledgements

This gem uses the Faraday gem for the HTTP layer and is inspired by the Twitter gem architecture.