mirror of
https://github.com/mochabyte0x/CTFPacker
synced 2026-06-06 16:14:33 +00:00
54d808e3f9
Introduces a new argument to select the target process for APC injection (RuntimeBroker.exe or svchost.exe) in both Linux and Windows main.py scripts.
32 lines
976 B
Python
32 lines
976 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='ctfpacker',
|
|
version='1.0',
|
|
description='Cross platform (Linux / Windows) shellcode packer for CTFs and pentest / red team exams',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/mochabyte0x/CTFPacker',
|
|
author='mochabyte0x',
|
|
author_email='contact@mochabyte.xyz',
|
|
maintainer='mochabyte0x',
|
|
license='MIT',
|
|
install_requires=['colorama',
|
|
'pycryptodome'],
|
|
py_modules=['main'],
|
|
include_package_data=True,
|
|
packages=find_packages(),
|
|
package_data={'custom_certs':['cert1.pfx', 'cert2.pfx'],
|
|
'templates': [
|
|
'stageless/*',
|
|
'staged/*'
|
|
]
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ctfpacker=main:main'
|
|
],
|
|
},
|
|
platforms=['Linux']
|
|
)
|