honoki / bbrf-client

The Bug Bounty Reconnaissance Framework (BBRF) can help you coordinate your reconnaissance workflows across multiple devices
MIT License
613 stars 90 forks source link

Add a command to return the infered program #95

Closed aroly closed 2 years ago

aroly commented 2 years ago

It would be nice to have a call which return the infered program when one submit, for example, a domain.

This would allow to get the infered program name before triggering an action, and to store the results of this action (execute script, scan, cli...) in a specific location for arbitrary domains.

aroly commented 2 years ago

Workaround: bbrf show $service | jq -r .program works perfectly to get the program a service (or whatever) belongs to.

honoki commented 2 years ago

Hi @aroly - yeah, I would recommend using the workaround you suggested to make use of the power of the JSON db. :) Not planning to implement this as a BBRF command.

aroly commented 2 years ago

It makes sense, thanks for the feedback.