first commit

This commit is contained in:
z0noxz
2017-04-17 15:50:41 +02:00
commit 06c7f69923
6 changed files with 956 additions and 0 deletions

30
setup.py Executable file
View 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"]
)