mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
9fefd167b0
Just fyi for anyone reading this, it's not even close to being finished. The amount of changes are pretty insane, this commit is to serve as a refrence point for myself. Highlights for v4.0: - The whole codebase has been re-written from scratch - Codebase has been cut around 2/4 - Protocols are now modular! In theory we could use CME for everything - Module chaining has been removed for now, still trying to figure out a more elegant solution - Workspaces have implemented in cmedb - The smb protocol's database schema has been changed to support storing users, groups and computers with their respective memberships and relations. - I'm in the process of re-writing most of the modules, will re-add them once i've finished
39 lines
1.3 KiB
Python
Executable File
39 lines
1.3 KiB
Python
Executable File
from setuptools import setup, find_packages
|
|
|
|
setup(name='crackmapexec',
|
|
version='4.0.0dev',
|
|
description='A swiss army knife for pentesting networks',
|
|
dependency_links = ['https://github.com/CoreSecurity/impacket/tarball/master#egg=impacket-0.9.16dev',
|
|
'https://github.com/the-useless-one/pywerview/tarball/master#egg=pywerview-0.1.1'],
|
|
classifiers=[
|
|
'Environment :: Console',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Topic :: Security',
|
|
],
|
|
keywords='pentesting security windows smb active-directory networks',
|
|
url='http://github.com/byt3bl33d3r/CrackMapExec',
|
|
author='byt3bl33d3r',
|
|
author_email='byt3bl33d3r@gmail.com',
|
|
license='BSD',
|
|
packages=find_packages(include=[
|
|
"cme", "cme.*"
|
|
]),
|
|
install_requires=[
|
|
'impacket>=0.9.16dev',
|
|
'pywerview>=0.1.1',
|
|
'gevent',
|
|
'netaddr',
|
|
'pyOpenSSL',
|
|
'pycrypto',
|
|
'pyasn1',
|
|
'termcolor',
|
|
'requests',
|
|
'msgpack-python'
|
|
],
|
|
entry_points = {
|
|
'console_scripts': ['crackmapexec=cme.crackmapexec:main', 'cme=cme.crackmapexec:main', 'cmedb=cme.cmedb:main'],
|
|
},
|
|
include_package_data=True,
|
|
zip_safe=False)
|