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 19, 2024
1 parent 572cd40 commit 83e7ac8
Show file tree
Hide file tree
Showing 15 changed files with 990 additions and 0 deletions.
9 changes: 9 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
aiofiles>=23.2.1
aiohttp>=3.9.1
alive_progress>=3.1.4
beautifulsoup4>=4.11.1
httpx==0.25.0
colorama>=0.4.6
Requests>=2.31.0
urllib3>=1.26.18
anyio>=4.2.0
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from setuptools import setup, find_packages

setup(
name='subprober',
version='1.0.7',
author='D. Sanjai Kumar',
author_email='[email protected]',
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' ,
'anyio>=4.2.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 83e7ac8

Please sign in to comment.