-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (49 loc) · 2.16 KB
/
setup.py
File metadata and controls
50 lines (49 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
setup(
name='WinSystemShell',
version="0.0.2",
py_modules=['SystemShellServer', 'WinSystemShell'],
packages=find_packages(include=[]),
install_requires=[],
scripts=[],
author="Maurice Lambert",
author_email="mauricelambert434@gmail.com",
maintainer="Maurice Lambert",
maintainer_email="mauricelambert434@gmail.com",
description='A local privilege escalation utility that allows elevating from an administrator context to the SYSTEM account on Windows to perform high-privilege operations.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/mauricelambert/WinSystemShell",
project_urls={
"Github": "https://github.com/mauricelambert/WinSystemShell",
"Documentation": "https://mauricelambert.github.io/info/python/security/WinSystemShell.html",
"Python Executable": "https://mauricelambert.github.io/info/python/security/WinSystemShell.pyz",
"Windows Executable": "https://mauricelambert.github.io/info/python/security/WinSystemShell.exe",
},
download_url="https://mauricelambert.github.io/info/python/security/WinSystemShell.pyz",
include_package_data=True,
classifiers=[
"Topic :: System",
"Topic :: Security",
"Environment :: Console",
"Topic :: System :: Shells",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: System :: System Shells",
"Programming Language :: Python :: 3.8",
'Operating System :: Microsoft :: Windows',
"Topic :: System :: Systems Administration",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
keywords=['privilege escalation', 'privesc', 'SYSTEM', 'Windows', 'elevated rights', 'local admin'],
platforms=['Windows'],
license="GPL-3.0 License",
entry_points = {
'console_scripts': [
'WinSystemShell = WinSystemShell:main'
],
},
python_requires='>=3.8',
)