-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
105 lines (101 loc) · 3.67 KB
/
setup.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
"""Pip configuration."""
# https://github.com/pypa/sampleproject/blob/main/setup.py
from setuptools import setup
with open("README.md", "r") as fp:
long_description = fp.read()
with open("requirements.txt", "r") as fp:
requirements = fp.read()
setup(
name="kusanagi",
version="0.0.5",
packages=[
"kusanagi",
"kusanagi.core",
"kusanagi.core.filter",
"kusanagi.core.helper",
"kusanagi.core.loader",
"kusanagi.core.loader.template",
"kusanagi.core.loader.yaml",
"kusanagi.core.output",
"kusanagi.core.output.clipboard",
"kusanagi.core.output.encoder",
"kusanagi.core.output.printer",
"kusanagi.core.parser",
"kusanagi.core.payload",
"kusanagi.core.payload.cmd",
"kusanagi.core.payload.cmd.obfuscator",
"kusanagi.core.payload.cmd.revshell",
"kusanagi.core.payload.code",
"kusanagi.core.payload.code.obfuscator",
"kusanagi.core.payload.code.revshell",
"kusanagi.core.sorter",
],
package_data={
"kusanagi": [
"files/cmd/obfuscators/bash-gnu.yml",
"files/cmd/revshells/bash.yml",
"files/code/obfuscators/bash.yml",
"files/code/obfuscators/php.yml",
"files/code/obfuscators/python.yml",
"files/code/revshells/bash.yml",
"files/code/revshells/php.yml",
"files/code/revshells/python.yml",
"files/code/revshells/ruby.yml",
],
},
entry_points={
"console_scripts": [
# cmd = package[.module]:func
"kusa=kusanagi:main",
],
},
install_requires=requirements,
description="Kusanagi is a bind and reverse shell payload generator with obfuscation and badchar support.",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["payload", "bind shell", "reverse shell", "generator", "shell", "kusanagi"],
author="cytopia",
author_email="[email protected]",
url="https://github.com/cytopia/kusanagi",
project_urls={
"Source Code": "https://github.com/cytopia/kusanagi",
"Bug Tracker": "https://github.com/cytopia/kusanagi/issues",
},
python_requires=">=3.6",
classifiers=[
# https://pypi.org/classifiers/
#
# How mature is this project
"Development Status :: 3 - Alpha",
# How does it run
"Environment :: Console",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
# License
"License :: OSI Approved :: MIT License",
# Where does it run
"Operating System :: OS Independent",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
# Project topics
"Topic :: Internet",
"Topic :: Security",
"Topic :: System :: Shells",
"Topic :: System :: Systems Administration",
"Topic :: Terminals",
"Topic :: Utilities",
# Typed
"Typing :: Typed",
],
)