-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
80 lines (74 loc) · 2.69 KB
/
Copy pathsetup.py
File metadata and controls
80 lines (74 loc) · 2.69 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
from setuptools import setup
from setuptools.command.install import install
class PostInstallMessage(install):
"""Print Playwright system dependency instructions after install."""
def run(self):
install.run(self)
print("\n" + "=" * 70)
print(" DNSrazzle — Post-Install Setup")
print("=" * 70)
print("\n Playwright requires a browser and system libraries to be installed.")
print(" Run the following commands to complete setup:\n")
print(" playwright install chromium")
print(" sudo playwright install-deps chromium\n")
print(" For Firefox support:\n")
print(" playwright install firefox")
print(" sudo playwright install-deps firefox\n")
print("=" * 70 + "\n")
with open("docs/README.md", "r") as fh:
long_description = fh.read()
setup(
name='DNSrazzle',
version='2.0.0',
license='Apache',
author='SecurityShrimp',
author_email='securityshrimp@proton.me',
description='DNS enumeration script',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/f8al/DNSrazzle',
keywords=['DNS','screenshots','domain-fuzzing'],
py_modules=['argparse',
'playwright',
'python-nmap',
'opencv-python-headless',
'os',
'math',
'dnstwist',
'json',
'scikit-image',
'matplotlib',
'tld',
'dnspython',
'progress',
'dnsrecon'],
entry_points={
'console_scripts': ['DNSrazzle=DNSRazzle:main']
},
cmdclass={'install': PostInstallMessage},
python_requires='>=3.7',
data_files=[
('/etc/DNSrazzle',[
'./dictionaries/abused_tlds.dict',
'./dictionaries/common_tlds.dict',
'./dictionaries/english.dict',
'./dictionaries/polish.dict',
'./dictionaries/french.dict',
'./dictionaries/namelist.txt',
'./dictionaries/subdomains-top1mil.txt',
'./dictionaries/subdomains-top1mil-5000.txt',
'./dictionaries/subdomains-top1mil-20000.txt',
'./dictionaries/tlds-alpha-by-domain.txt'])
],
classifiers = [
'Development Status :: 1 - Beta',
'Environment :: Console',
'Intended Audience :: Security Researchers',
'Intended Audience :: Security Engineers',
'Intended Audience :: Threat Intelligence Analysts',
'Intended Audience :: Incident Response Analysts',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)