-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
158 lines (149 loc) · 4.34 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "dissect.cobaltstrike"
dynamic = ["version"]
description = "a Python library for dissecting Cobalt Strike related data"
requires-python = ">=3.9"
license = {text = "MIT License"}
readme = "README.rst"
authors = [
{name = "Yun Zheng Hu", email = "[email protected]"},
]
dependencies = [
"dissect.cstruct >= 4.2",
"lark",
]
keywords = ["dissect", "cobaltstrike", "beacon", "parser", "parsing", "lark", "cstruct"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/fox-it/dissect.cobaltstrike"
Documentation = "https://dissect-cobaltstrike.readthedocs.io/"
Source = "https://github.com/fox-it/dissect.cobaltstrike"
[project.optional-dependencies]
c2 = [
"flow.record",
"pycryptodome",
"httpx",
]
pcap = [
"pyshark",
"dissect.cobaltstrike[c2]",
]
full = [
"dissect.cobaltstrike[c2,pcap]",
"rich",
]
test = [
"pytest",
"pytest-cov",
"pytest-httpserver",
"dissect.cobaltstrike[full]",
]
docs = [
"sphinx",
"sphinx_rtd_theme>=2.0",
"sphinx-autoapi",
"sphinx-copybutton",
"sphinx-argparse-cli",
"ipython",
"pickleshare",
"dissect.cobaltstrike[full]",
]
[project.scripts]
beacon-artifact = "dissect.cobaltstrike.artifact:main"
beacon-dump = "dissect.cobaltstrike.beacon:main"
beacon-xordecode = "dissect.cobaltstrike.xordecode:main"
beacon-pcap = "dissect.cobaltstrike.pcap:main"
beacon-client = "dissect.cobaltstrike.client:main"
c2profile-dump = "dissect.cobaltstrike.c2profile:main"
[tool.hatch]
version.source = "vcs"
version.raw-options.local_scheme = "no-local-version"
build.hooks.vcs.version-file = "dissect/cobaltstrike/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/tests/beacons/",
"/tests/profiles/",
]
[tool.hatch.build.targets.wheel]
only-include = ["dissect/cobaltstrike", "tests", "docs"]
[tool.black]
line-length = 120
color = true
[tool.ruff]
line-length = 120
lint.select = [
"F", # Pyflakes
"E", # pycodestyle
"W", # pycodestyle
#"C90", # mccabe
"I", # isort
#"N", # pep8-naming
#"D", # pydocstyle
#"UP", # pyupgrade
"YTT", # flake8-2020
#"ANN", # flake8-annotations
"ASYNC", # flake8-async
#"S", # flake8-bandit
#"BLE", # flake8-blind-except
#"FBT", # flake8-boolean-trap
#"B", # flake8-bugbear
#"A", # flake8-builtins
#"COM", # flake8-commas
#"C4", # flake8-comprehensions
#"DTZ", # flake8-datetimez
"T10", # flake8-debugger
#"DJ", # flake8-django
#"EM", # flake8-errmsg
#"EXE", # flake8-executable
"FA", # flake8-future-annotations
"ISC", # flake8-implicit-str-concat
"ICN", # flake8-import-conventions
#"G", # flake8-logging-format
#"INP", # flake8-no-pep420
"PIE", # flake8-pie
#"T20", # flake8-print
"PYI", # flake8-pyi
#"PT", # flake8-pytest-style
"Q", # flake8-quotes
"RSE", # flake8-raise
#"RET", # flake8-return
#"SLF", # flake8-self
#"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"TCH", # flake8-type-checking
"INT", # flake8-gettext
#"ARG", # flake8-unused-arguments
#"PTH", # flake8-use-pathlib
"TD", # flake8-todos
#"ERA", # eradicate
#"PD", # pandas-vet
#"PGH", # pygrep-hooks
#"PL", # Pylint
#"TRY", # tryceratops
#"FLY", # flynt
#"NPY", # NumPy-specific
#"RUF", # Ruff-specific
]