forked from BC-SECURITY/Empire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
98 lines (91 loc) · 2.43 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[tool.poetry]
name = "empire-bc-security-fork"
version = "5.2.2"
description = ""
authors = ["BC Security <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/BC-SECURITY/Empire"
repository = "https://github.com/BC-SECURITY/Empire.git"
packages = [
{ include = "empire.py" },
{ include = "empire/server/**/*.py" },
{ include = "empire/client/**/*.py" },
]
[tool.poetry.dependencies]
python = "^3.8"
urllib3 = "*"
requests = "^2.24.0"
iptools = "*"
macholib = "*"
dropbox = "*"
pyOpenSSL = "*"
pyinstaller = "*"
zlib_wrapper = "^0.1.3"
netifaces = "*"
jinja2 = "*"
xlutils = "*"
pyparsing = "*"
PyMySQL = "^0.10.1"
SQLAlchemy = "^1.3.20"
PyYAML = "^5.3.1"
SQLAlchemy-Utc = "^0.11.0"
prompt-toolkit = "^3.0.9"
terminaltables = "^3.1.0"
docopt = "^0.6.2"
humanize = "^3.2.0"
pydantic = "^1.8.1"
pycryptodome = "^3.10.1"
cryptography = "^37.0.3"
fastapi = "0.70"
uvicorn = "^0.14.0"
jq = "^1.2.1"
aiofiles = "^0.7.0"
python-multipart = "^0.0.5"
python-jose = {version = "^3.3.0", extras = ["cryptography"]}
passlib = {version = "^1.7.4", extras = ["bcrypt"]}
websockify = "^0.10.0"
websockets = "^10.1"
pyperclip = "^1.8.2"
pyvnc = {git = "https://github.com/BC-SECURITY/pyVNC.git"}
python-socketio = {extras = ["client"], version = "^5.7.1"}
Flask = "^2.1.2"
pysecretsocks = {git = "https://github.com/BC-SECURITY/PySecretSOCKS.git"}
donut-shellcode = "^1.0.2"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
black = "^23.1.0"
pytest = "^6.2.5"
pytest-timeout = "^2.1.0"
ruff = "^0.0.233"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
supported_extensions = ['pxd', 'py', 'pyi', 'pyx', 'plugin']
[tool.black]
extend-exclude = '''
(empire/server/data*)
| (empire/server/downloads*)
| (empire/client/generated-stagers*)
| (empire/client/downloads*)
'''
force-exclude = '''
(empire/server/data*)
| (empire/server/downloads*)
| (empire/client/generated-stagers*)
| (empire/client/downloads*)
'''
#include = '.*\.(plugin)$'
[tool.ruff]
extend-exclude = [
'empire/server/data',
'empire/server/downloads',
'empire/server/common/malleable',
'empire/client/generated-stagers',
'empire/client/downloads'
]
# Will revisit line lengths later. Black won't format the strings and comments
# by default. And the experimental flag still has some issues.
# fixes right now: https://github.com/psf/black/issues/2188
extend-ignore = ["E501"]