forked from byt3bl33d3r/CrackMapExec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (73 loc) · 2.12 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "crackmapexec"
version = "5.1.1dev"
description = "A swiss army knife for pentesting networks"
authors = ["Marcello Salvati <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/byt3bl33d3r/CrackMapExec"
repository = "https://github.com/byt3bl33d3r/CrackMapExec"
exclude = [
"cme/data/powersploit/Recon/Dictionaries",
"cme/data/powersploit/Exfiltration/NTFSParser",
"cme/data/powersploit/CodeExecution/Invoke-ReflectivePEInjection_Resources",
"cme/data/powersploit/Exfiltration/LogonUser",
"cme/data/powersploit/Tests",
"cme/data/netripper/DLL",
"cme/data/netripper/Metasploit",
"cme/data/netripper/NetRipper",
"cme/data/netripper/Win32",
"cme/data/netripper/Release",
"cme/data/netripper/minhook",
"cme/data/netripper/x64",
"cme/data/netripper/*.pdf",
"cme/data/netripper/*.sln",
"cme/data/invoke-vnc/winvnc",
"cme/data/invoke-vnc/vncdll",
"cme/data/invoke-vnc/pebytes.ps1",
"cme/data/invoke-vnc/ReflectiveDLLInjection",
"cme/data/invoke-vnc/*.py",
"cme/data/invoke-vnc/*.bat",
"cme/data/invoke-vnc/*.msbuild",
"cme/data/invoke-vnc/*.sln",
"cme/data/RID-Hijacking/modules",
"cme/data/RID-Hijacking/slides"
]
include = ["LICENSE", "cme/data/*", "cme/modules/*", "cme/thirdparty/*"]
license = "BSD-2-Clause"
classifiers = [
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
packages = [
{ include = "cme"}
]
[tool.poetry.scripts]
cme = 'cme.crackmapexec:main'
crackmapexec = 'cme.crackmapexec:main'
cmedb = 'cme.cmedb:main'
[tool.poetry.dependencies]
python = "^3.7.0"
gevent = ">=1.2.0"
requests = ">=2.9.1"
requests-ntlm = ">=0.3.0"
bs4 = "^0.0.1"
lsassy = "^2.1.2"
termcolor = "^1.1.0"
msgpack = "^1.0.0"
neo4j = "^4.1.1"
pylnk3 = "^0.3.0"
pypsrp = "^0.5.0"
paramiko = "^2.7.2"
impacket = "^0.9.21"
xmltodict = "^0.12.0"
terminaltables = "^3.1.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.2"
pylint = "^2.5.2"
shiv = "^0.3.1"
ipython = "^7.18.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"