mirror of
https://github.com/aljazceru/recon-pipeline.git
synced 2025-12-19 23:34:27 +01:00
* initial work on sphinx docs; much left to do * first pass at docs complete; still has some warts * added requirements for readthedocs * added requirements for readthedocs * added requirements for readthedocs * cleaned up code blocks; scans conform to 1 template for sections * trying to fix code blocks not rendering on readthedocs * trying to fix code blocks not rendering on readthedocs * trying to fix code blocks not rendering on readthedocs * trying to fix code blocks not rendering on readthedocs * trying to fix code blocks not rendering on readthedocs * trying to fix code blocks not rendering on readthedocs
28 lines
733 B
ReStructuredText
28 lines
733 B
ReStructuredText
.. _scope-ref-label:
|
|
|
|
Defining Target Scope
|
|
=====================
|
|
|
|
The pipeline expects a file that describes the target's scope to be provided as an argument to the
|
|
``--target-file`` option. The target file can consist of domains, ip addresses, and ip ranges, one per line. Ip
|
|
addresses and ip ranges can be mixed/matched, but domains cannot.
|
|
|
|
.. code-block:: console
|
|
|
|
tesla.com
|
|
tesla.cn
|
|
teslamotors.com
|
|
...
|
|
|
|
Some bug bounty scopes have expressly verboten subdomains and/or top-level domains, for that there is the
|
|
``--exempt-list`` option. The exempt list follows the same rules as the target file.
|
|
|
|
.. code-block:: console
|
|
|
|
shop.eu.teslamotors.com
|
|
energysupport.tesla.com
|
|
feedback.tesla.com
|
|
...
|
|
|
|
|