-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1249c0
commit f61783a
Showing
15 changed files
with
954 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Oops, something went wrong.