Files
powerstager/setup.py
2017-04-17 15:50:41 +02:00

30 lines
690 B
Python
Executable File

#!/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"]
)