-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement CertSh worker #87
Conversation
The descriptions are a bit primitive :/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noticed two minor things, but other than that looks good.
summary 'Returns host from each domains certificate.' | ||
|
||
description <<~DESC | ||
Returns host from each domains certificate. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably should mention that it's querying cert.sh
in the description and summary.
|
||
certs.each do |cert| | ||
if cert[:common_name] | ||
yield Host.new(name: cert[:common_name]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Host.new()
accepts a single String.
Also this needs a spec that ensure that it will yield the correct |
Awesome work! |
Noticed this random network timeout error: https://github.com/ronin-rb/ronin-recon/actions/runs/6650106343/job/18069671524#step:5:63 Perhaps we should add a |
#35