-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(refactor): improve performance, add on_interval hook, rework CLI…
… opts (#473)
- Loading branch information
Showing
34 changed files
with
1,126 additions
and
679 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
requires = ['hatchling'] | ||
build-backend = 'hatchling.build' | ||
|
||
[project] | ||
name = "secator" | ||
version = "0.6.0" | ||
authors = [{ name = "FreeLabz", email = "[email protected]" }] | ||
readme = "README.md" | ||
name = 'secator' | ||
version = '0.6.0' | ||
authors = [{ name = 'FreeLabz', email = '[email protected]' }] | ||
readme = 'README.md' | ||
description = "The pentester's swiss knife." | ||
requires-python = ">=3.8" | ||
requires-python = '>=3.8' | ||
keywords = [ | ||
'cybersecurity', | ||
'recon', | ||
|
@@ -17,40 +17,42 @@ keywords = [ | |
'automation' | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"License :: Free for non-commercial use", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Information Technology', | ||
'License :: Free for non-commercial use', | ||
'Operating System :: Unix', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
] | ||
dependencies = [ | ||
"beautifulsoup4 <= 5", | ||
'beautifulsoup4 <= 5', | ||
'celery < 6', | ||
"cpe < 2", | ||
"dotmap < 2", | ||
"free-proxy < 2", | ||
"furl < 3", | ||
"humanize < 5", | ||
"ifaddr < 1", | ||
"jinja2 < 4", | ||
"packaging < 25", | ||
"python-dotenv < 2", | ||
"pyyaml < 7", | ||
"pydantic < 3", | ||
"requests < 3", | ||
"rich < 14", | ||
"rich-click < 1.7", | ||
"psutil < 7", | ||
"tldextract < 6", | ||
"typing_extensions < 5", | ||
"validators < 1", | ||
"xmltodict < 1" | ||
'cpe < 2', | ||
'dotmap < 2', | ||
'free-proxy < 2', | ||
'furl < 3', | ||
'greenlet < 4', | ||
'humanize < 5', | ||
'ifaddr < 1', | ||
'jinja2 < 4', | ||
'packaging < 25', | ||
'python-dotenv < 2', | ||
'pyyaml < 7', | ||
'pydantic < 3', | ||
'requests < 3', | ||
'rich < 14', | ||
'rich-click < 1.7', | ||
'psutil < 7', | ||
'retry < 1', | ||
'tldextract < 6', | ||
'typing_extensions < 5', | ||
'validators < 1', | ||
'xmltodict < 1' | ||
] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -85,8 +87,8 @@ google = [ | |
] | ||
|
||
[project.scripts] | ||
secator = "secator.cli:cli" | ||
secator = 'secator.cli:cli' | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/freelabz/secator" | ||
Issues = "https://github.com/freelabz/secator/issues" | ||
Homepage = 'https://github.com/freelabz/secator' | ||
Issues = 'https://github.com/freelabz/secator/issues' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.