Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
cyber-karthi committed Jun 21, 2024
1 parent 7de1852 commit f88bfa0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from setuptools import setup

VERSION = '0.0.1'
DESCRIPTION = 'A Tool to find an Easy Bounty - CVE-2024-0352'
LONG_DESCRIPTION = 'This is a tool used by several security researchers to find CVE-2024-0352.'

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="CVE-2024-0352",
version=VERSION,
author="@karthithehacker",
author_email="<contact@karthithehacker.com>",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'CVE-2024-0352 = cve20240352.main:main',
],
},
install_requires=['urllib3', 'requests', 'click'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)

0 comments on commit f88bfa0

Please sign in to comment.