devsecops-engine-tools 1.100.0__py3-none-any.whl → 1.101.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of devsecops-engine-tools might be problematic. Click here for more details.
- devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/driven_adapters/trufflehog/trufflehog_run.py +3 -2
- devsecops_engine_tools/version.py +1 -1
- {devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/METADATA +2 -2
- {devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/RECORD +7 -7
- {devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/WHEEL +0 -0
- {devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/entry_points.txt +0 -0
- {devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/top_level.txt +0 -0
|
@@ -130,7 +130,7 @@ class TrufflehogRun(ToolGateway):
|
|
|
130
130
|
command = f"{trufflehog_command} filesystem {path_folder} --include-paths {include_path} --exclude-paths {exclude_path} --no-verification --no-update --json"
|
|
131
131
|
if enable_custom_rules:
|
|
132
132
|
command = command.replace("--no-verification --no-update --json", f"--config {path}//rules//trufflehog//custom-rules.yaml --no-verification --no-update --json" if "Windows" in agent_os else
|
|
133
|
-
f"--config {path}/rules/trufflehog/custom-rules.yaml --no-verification --no-update --json" if "Linux" in agent_os else
|
|
133
|
+
f"--config {path}/rules/trufflehog/custom-rules.yaml --no-verification --no-update --json" if "Linux" or "Darwin" in agent_os else
|
|
134
134
|
"--no-verification --no-update --json")
|
|
135
135
|
|
|
136
136
|
result = subprocess.run(command, capture_output=True, shell=True, text=True, encoding='utf-8')
|
|
@@ -159,4 +159,5 @@ class TrufflehogRun(ToolGateway):
|
|
|
159
159
|
find["Mitigation"] = config_tool[tool]["RULES"][find["Id"]]["Mitigation"] if "SECRET_SCANNING" not in find["Id"] else "N.A"
|
|
160
160
|
json_str = json.dumps(find)
|
|
161
161
|
file.write(json_str + '\n')
|
|
162
|
-
|
|
162
|
+
|
|
163
|
+
return findings, file_findings
|
|
@@ -1 +1 @@
|
|
|
1
|
-
version = '1.
|
|
1
|
+
version = '1.101.1'
|
{devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: devsecops-engine-tools
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.101.1
|
|
4
4
|
Summary: Tool for DevSecOps strategy
|
|
5
5
|
Home-page: https://github.com/bancolombia/devsecops-engine-tools
|
|
6
6
|
Author: Bancolombia DevSecOps Team
|
|
@@ -34,7 +34,7 @@ Requires-Dist: PyJWT==2.9.0
|
|
|
34
34
|
Requires-Dist: sympy==1.13.3
|
|
35
35
|
Requires-Dist: urllib3<2.0.0
|
|
36
36
|
Requires-Dist: holidays==0.58
|
|
37
|
-
Requires-Dist: pyarrow==
|
|
37
|
+
Requires-Dist: pyarrow==17.0.0
|
|
38
38
|
|
|
39
39
|
# DevSecOps Engine Tools
|
|
40
40
|
|
{devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
devsecops_engine_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
devsecops_engine_tools/version.py,sha256=
|
|
2
|
+
devsecops_engine_tools/version.py,sha256=ATwMgXTmCVdh0nm97SAKihRqOMlX2GyH3ufsNDqQa20,20
|
|
3
3
|
devsecops_engine_tools/engine_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
devsecops_engine_tools/engine_core/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
devsecops_engine_tools/engine_core/src/applications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -197,7 +197,7 @@ devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/driven_adapt
|
|
|
197
197
|
devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/driven_adapters/gitleaks/gitleaks_tool.py,sha256=YGm6KhbFu06wzvTESuZnctmuyJEMQDiwMww3bO6SsC8,6015
|
|
198
198
|
devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/driven_adapters/trufflehog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
199
|
devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/driven_adapters/trufflehog/trufflehog_deserealizator.py,sha256=mrSqPrkMiikxQ_uY-rF2I8QvicsOMdMBzTC8CTV3Wk8,2392
|
|
200
|
-
devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/driven_adapters/trufflehog/trufflehog_run.py,sha256=
|
|
200
|
+
devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/driven_adapters/trufflehog/trufflehog_run.py,sha256=azMbd25Yvkil9xh6dWcBFBL1tFse1yr_-2zn8sBUYeU,8176
|
|
201
201
|
devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/entry_points/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
202
|
devsecops_engine_tools/engine_sast/engine_secret/src/infrastructure/entry_points/entry_point_tool.py,sha256=61OnP4ehmzh-tRbACgZsB4IJi6J6HT9E6KCOcuhvnRw,1185
|
|
203
203
|
devsecops_engine_tools/engine_sca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -380,8 +380,8 @@ devsecops_engine_tools/engine_utilities/utils/name_conversion.py,sha256=ADJrRGax
|
|
|
380
380
|
devsecops_engine_tools/engine_utilities/utils/printers.py,sha256=amYAr9YQfYgR6jK9a2l26z3oovFPQ3FAKmhq6BKhEBA,623
|
|
381
381
|
devsecops_engine_tools/engine_utilities/utils/session_manager.py,sha256=Z0fdhB3r-dxU0nGSD9zW_B4r2Qol1rUnUCkhFR0U-HQ,487
|
|
382
382
|
devsecops_engine_tools/engine_utilities/utils/utils.py,sha256=HCjS900TBoNcHrC4LaiP-Kf9frVdtagF130qOUgnO2M,6757
|
|
383
|
-
devsecops_engine_tools-1.
|
|
384
|
-
devsecops_engine_tools-1.
|
|
385
|
-
devsecops_engine_tools-1.
|
|
386
|
-
devsecops_engine_tools-1.
|
|
387
|
-
devsecops_engine_tools-1.
|
|
383
|
+
devsecops_engine_tools-1.101.1.dist-info/METADATA,sha256=T7fQwCL9rl2RQ7dr6t2s9re7U6SNfwezaZrJJbOPXnM,3232
|
|
384
|
+
devsecops_engine_tools-1.101.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
385
|
+
devsecops_engine_tools-1.101.1.dist-info/entry_points.txt,sha256=OWAww5aBsGeMv0kWhSgVNB0ySKKpYuJd4dly0ikFPkc,283
|
|
386
|
+
devsecops_engine_tools-1.101.1.dist-info/top_level.txt,sha256=ge6y0X_xBAU1aG3EMWFtl9djbVyg5BxuSp2r2Lg6EQU,23
|
|
387
|
+
devsecops_engine_tools-1.101.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{devsecops_engine_tools-1.100.0.dist-info → devsecops_engine_tools-1.101.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|