first commit
This commit is contained in:
30
setup.py
Executable file
30
setup.py
Executable file
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env python3
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name="PowerStager",
|
||||
version="0.2",
|
||||
description="This script creates an executable stager that downloads a selected powershell payload.",
|
||||
author="z0noxz",
|
||||
author_email="z0noxz@mail.com",
|
||||
url="https://github.com/z0noxz/powerstager",
|
||||
classifiers=[
|
||||
"Development Status :: 2 - Beta",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: End Users/Desktop",
|
||||
"Natural Language :: English",
|
||||
"Programming Language :: Python",
|
||||
"Topic :: Security :: Exploitation"
|
||||
],
|
||||
requires=[
|
||||
"os",
|
||||
"sys",
|
||||
"getopt",
|
||||
"string",
|
||||
"random",
|
||||
"base64",
|
||||
"hashlib"
|
||||
],
|
||||
scripts=["bin/powerstager"],
|
||||
packages=["powerstager"]
|
||||
)
|
||||
Reference in New Issue
Block a user