-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 1.04 KB
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "BoringSecretHunter"
version = "1.4.0"
description = "Extract ssl_log_secret() offsets from BoringSSL/RustLS binaries for Frida hooking"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = []
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Security",
]
[project.scripts]
bsh = "boring_secret_hunter.cli:main"
boring-secret-hunter = "boring_secret_hunter.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
boring_secret_hunter = ["ghidra_scripts/*.java", "ghidra_scripts/*.xml"]
[tool.ruff]
target-version = "py39"
exclude = [
"boring_secret_hunter_ghidra.py",
"boring_secret_hunter_jython.py",
"findBoringSSLLibsOnAndroid.py",
"findElfHeaders.py",
"frida_debug_scan_helper.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "--import-mode=importlib"