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 Feb 13, 2024
1 parent f1249c0 commit f61783a
Show file tree
Hide file tree
Showing 15 changed files with 954 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 @@
aiofiles>=23.2.1
aiohttp>=3.9.1
alive_progress>=3.1.4
beautifulsoup4>=4.11.1
colorama>=0.4.6
Requests>=2.31.0
urllib3>=1.26.18
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='subprober',
version='1.0.6',
author='D. Sanjai Kumar',
author_email='bughunterz0047@gmail.com',
description='Subprober - A Fast Probing Tool for Penetration testing',
packages=find_packages(),
install_requires=[
'aiofiles>=23.2.1',
'aiohttp>=3.9.1' ,
'alive_progress>=3.1.4' ,
'beautifulsoup4>=4.11.1' ,
'colorama>=0.4.6' ,
'httpx>=0.25.0',
'Requests>=2.31.0' ,
'urllib3>=1.26.18'
],
entry_points={
'console_scripts': [
'subprober = subprober.subprober:main'
]
},
)
Empty file added subprober/__init__.py
Empty file.
Binary file added subprober/__pycache__/subprober.cpython-311.pyc
Binary file not shown.
Empty file added subprober/modules/__init__.py
Empty file.
Binary file not shown.
Binary file added subprober/modules/__pycache__/handle.cpython-311.pyc
Binary file not shown.
Binary file not shown.
Binary file added subprober/modules/__pycache__/lib.cpython-311.pyc
Binary file not shown.
11 changes: 11 additions & 0 deletions subprober/modules/handler.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from .lib.lib import *
import asyncio

def starter():

asyncio.run(all_sub()) # accuracy and concurrency





Empty file.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit f61783a

Please sign in to comment.