-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.py
More file actions
19 lines (16 loc) · 757 Bytes
/
Copy pathsettings.py
File metadata and controls
19 lines (16 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
Project metadata.
Single source of truth for the strings shown in the banner footer and
substituted into banner art files via the [VERSION] / [DESCRIPTION]
placeholders (see core/banner/asciiart.py).
Note: the default User-Agent literals ('SimpleReconURL/1') are deliberately
NOT derived from here. core/run_config.py compares each parsed argument
against its argparse default to decide whether the user set it explicitly,
so those literals must stay byte-identical across cli/parser.py,
sources/base.py, core/engine.py and core/run_config.py.
"""
__version__ = '1.0.0'
__description__ = 'Extract and Discover URLs from a seed page'
__author__ = "Cleiton Pinheiro a.k.a MrCl0wn"
__git_project__ = 'https://github.com/osintbrazuca'
__license__ = "MIT"