https://github.com/willianvdv/hackerone-ruby
Get HackerOne resources in your app
https://github.com/willianvdv/hackerone-ruby
hackerone
Last synced: 10 months ago
JSON representation
Get HackerOne resources in your app
- Host: GitHub
- URL: https://github.com/willianvdv/hackerone-ruby
- Owner: Willianvdv
- License: mit
- Created: 2017-03-03T15:45:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-24T13:28:55.000Z (over 9 years ago)
- Last Synced: 2025-09-21T06:29:07.118Z (10 months ago)
- Topics: hackerone
- Language: Ruby
- Homepage:
- Size: 20.5 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Hackerone Ruby Bindings
HackerOne resources in your Ruby app. This is an experiment, don't use it.
## Installation
There are no installation instructions yet.
## Usage
To get an user from HackerOne you can do:
```lang=ruby
irb(main):001:0> Hackerone::User.find_by(username: 'wvdv')
=> #
```
To get a team from HackerOne you can do:
```lang=ruby
irb(main):001:0> Hackerone::Team.find_by(handle: 'security')
=> #
```
Fetch a published report
```lang=ruby
irb(main):001:0> Hackerone::Report.find_by(id: 192127)
=> #
```