secretshield 0.3.0__tar.gz → 0.3.2__tar.gz
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.
- {secretshield-0.3.0 → secretshield-0.3.2}/LICENSE +1 -1
- {secretshield-0.3.0/secretshield.egg-info → secretshield-0.3.2}/PKG-INFO +11 -2
- {secretshield-0.3.0 → secretshield-0.3.2}/README.md +9 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/pyproject.toml +2 -2
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/__init__.py +1 -1
- {secretshield-0.3.0 → secretshield-0.3.2/secretshield.egg-info}/PKG-INFO +11 -2
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/autofix/__init__.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/autofix/env.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/autofix/fixer.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/autofix/gitignore.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/autofix/python.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/cli.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/config.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/detector.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/git/__init__.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/git/hooks.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/github/__init__.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/github/actions.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/guardian.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/notifications.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/patterns.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield/redactor.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield.egg-info/SOURCES.txt +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield.egg-info/dependency_links.txt +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield.egg-info/entry_points.txt +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield.egg-info/requires.txt +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/secretshield.egg-info/top_level.txt +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/setup.cfg +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_autofix.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_detector.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_git_hooks.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_github_action.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_logging.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_redactor.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_scan.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_stdout.py +0 -0
- {secretshield-0.3.0 → secretshield-0.3.2}/tests/test_v030_cli_integration.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: secretshield
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Detect and redact likely secrets before they reach Python's terminal output or logging system.
|
|
5
|
-
Author:
|
|
5
|
+
Author: Samarth Chugh (Sam3360)
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/Sam3360/secretshield
|
|
8
8
|
Project-URL: Repository, https://github.com/Sam3360/secretshield
|
|
@@ -57,6 +57,15 @@ exactly that class of mistake during local development and debugging.
|
|
|
57
57
|
It is **not** a replacement for secret management, code review, or
|
|
58
58
|
static-analysis security tooling — see [Limitations](#limitations) below.
|
|
59
59
|
|
|
60
|
+
## 🎥 Demo
|
|
61
|
+
|
|
62
|
+
See SecretShield in action:
|
|
63
|
+
|
|
64
|
+
[](https://youtu.be/g95lNIhWsXM)
|
|
65
|
+
|
|
66
|
+
**▶️ [Watch the full demo on YouTube](https://youtu.be/g95lNIhWsXM)**
|
|
67
|
+
|
|
68
|
+
|
|
60
69
|
## Installation
|
|
61
70
|
|
|
62
71
|
```bash
|
|
@@ -32,6 +32,15 @@ exactly that class of mistake during local development and debugging.
|
|
|
32
32
|
It is **not** a replacement for secret management, code review, or
|
|
33
33
|
static-analysis security tooling — see [Limitations](#limitations) below.
|
|
34
34
|
|
|
35
|
+
## 🎥 Demo
|
|
36
|
+
|
|
37
|
+
See SecretShield in action:
|
|
38
|
+
|
|
39
|
+
[](https://youtu.be/g95lNIhWsXM)
|
|
40
|
+
|
|
41
|
+
**▶️ [Watch the full demo on YouTube](https://youtu.be/g95lNIhWsXM)**
|
|
42
|
+
|
|
43
|
+
|
|
35
44
|
## Installation
|
|
36
45
|
|
|
37
46
|
```bash
|
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "secretshield"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "Detect and redact likely secrets before they reach Python's terminal output or logging system."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
11
11
|
requires-python = ">=3.10"
|
|
12
12
|
authors = [
|
|
13
|
-
{ name = "
|
|
13
|
+
{ name = "Samarth Chugh (Sam3360)" },
|
|
14
14
|
]
|
|
15
15
|
keywords = ["security", "secrets", "redaction", "logging", "stdout", "credentials"]
|
|
16
16
|
classifiers = [
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: secretshield
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Detect and redact likely secrets before they reach Python's terminal output or logging system.
|
|
5
|
-
Author:
|
|
5
|
+
Author: Samarth Chugh (Sam3360)
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/Sam3360/secretshield
|
|
8
8
|
Project-URL: Repository, https://github.com/Sam3360/secretshield
|
|
@@ -57,6 +57,15 @@ exactly that class of mistake during local development and debugging.
|
|
|
57
57
|
It is **not** a replacement for secret management, code review, or
|
|
58
58
|
static-analysis security tooling — see [Limitations](#limitations) below.
|
|
59
59
|
|
|
60
|
+
## 🎥 Demo
|
|
61
|
+
|
|
62
|
+
See SecretShield in action:
|
|
63
|
+
|
|
64
|
+
[](https://youtu.be/g95lNIhWsXM)
|
|
65
|
+
|
|
66
|
+
**▶️ [Watch the full demo on YouTube](https://youtu.be/g95lNIhWsXM)**
|
|
67
|
+
|
|
68
|
+
|
|
60
69
|
## Installation
|
|
61
70
|
|
|
62
71
|
```bash
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|