Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoltSecurities authored Nov 27, 2023
1 parent d8d80e2 commit bb8a6a7
Show file tree
Hide file tree
Showing 4 changed files with 2,961 additions and 0 deletions.
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
censys==2.2.9
colorama==0.4.4
fake_useragent==1.2.1
httpx==0.25.2
plyer==2.1.0
pywebio==1.8.2
Requests==2.31.0
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup, find_packages

setup(
name='subdominator',
version='1.0.4',
author='D. Sanjai Kumar',
author_email='bughunterz0047@gmail.com',
description='Subdominator - An ultimate subdomain enumeration tool',
packages=find_packages(),
install_requires=[
'censys==2.2.9',
'colorama==0.4.6',
'httpx==0.25.2',
'plyer==2.1.0',
'pywebio==1.8.2',
'requests==2.31.0',
'argparse==1.4.0'
],
entry_points={
'console_scripts': [
'subdominator = subdominator.subdominator:main'
]
},
)

Empty file added subdominator/__init__.py
Empty file.
Loading

0 comments on commit bb8a6a7

Please sign in to comment.