punk-security / dnsReaper

dnsReaper - subdomain takeover tool for attackers, bug bounty hunters and the blue team!
GNU Affero General Public License v3.0
1.98k stars 161 forks source link

Guidance in syntax to provide multiple signatures #187

Open kyrylo-hulak opened 2 weeks ago

kyrylo-hulak commented 2 weeks ago

Hello,

Would someone please give me a hint of how multiple signatures must be separated to exclude them all? So, if we keep in mind the following

--exclude-signature EXCLUDE_SIGNATURE
                        Do not scan with this signature (multiple accepted)

How should look like my line below to exclude signature1, signature2 and so forth.

docker run punksecurity/dnsreaper aws \
--aws-access-key-id <key> \
--aws-access-key-secret <secret> \
--exclude-signature signature1,signature2 

Is it right understanding?

Thank you!

kyrylo-hulak commented 2 weeks ago

it seems I should always pass a flag --exclude-signature for a new signature which is not obvious

kyrylo-hulak commented 2 weeks ago

like below


docker run punksecurity/dnsreaper aws \
--aws-access-key-id <key> \
--aws-access-key-secret <secret> \
--exclude-signature signature1 \
--exclude-signature signature2