1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[tool.hatch.version]
path = 'src/patator/patator.py'
[project]
name = 'patator'
dynamic = ['version']
authors = [
{ name='Sebastien Macke' },
]
description = 'Multi-purpose brute-forcer'
keywords = ['pentest', 'brute force', 'password attack']
readme = 'README.md'
requires-python = '>=3.13'
dependencies = [
'paramiko',
'pycurl',
'ajpy',
'impacket',
'cx_Oracle',
'mysqlclient',
'psycopg2-binary',
'pycryptodomex',
'dnspython',
'IPy',
'pysnmp',
'telnetlib-313-and-up'
]
classifiers = [
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
license = 'GPL-2.0-or-later'
license-files = ['LICEN[CS]E*']
[project.urls]
Homepage = 'https://github.com/lanjelot/patator'
Issues = 'https://github.com/lanjelot/patator/issues'
[project.scripts]
patator = 'patator.patator:cli'
|