trustfix 0.0.1__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.
- trustfix-0.0.1/PKG-INFO +52 -0
- trustfix-0.0.1/README.md +22 -0
- trustfix-0.0.1/setup.cfg +4 -0
- trustfix-0.0.1/setup.py +30 -0
- trustfix-0.0.1/trustfix.egg-info/PKG-INFO +52 -0
- trustfix-0.0.1/trustfix.egg-info/SOURCES.txt +6 -0
- trustfix-0.0.1/trustfix.egg-info/dependency_links.txt +1 -0
- trustfix-0.0.1/trustfix.egg-info/top_level.txt +1 -0
trustfix-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: trustfix
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: TrustFix — Automated NHI governance and IAM remediation. Finds your IAM misconfigurations and fixes them automatically via GitHub PRs.
|
|
5
|
+
Home-page: https://trustfix.dev
|
|
6
|
+
Author: TrustFix
|
|
7
|
+
Author-email: hello@trustfix.dev
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://trustfix.dev
|
|
10
|
+
Project-URL: GitHub, https://github.com/trustfix/trustfix-core
|
|
11
|
+
Keywords: iam,aws,security,oidc,nhi,non-human-identity,github-actions,terraform,devsecops,remediation
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: description
|
|
23
|
+
Dynamic: description-content-type
|
|
24
|
+
Dynamic: home-page
|
|
25
|
+
Dynamic: keywords
|
|
26
|
+
Dynamic: license
|
|
27
|
+
Dynamic: project-url
|
|
28
|
+
Dynamic: requires-python
|
|
29
|
+
Dynamic: summary
|
|
30
|
+
|
|
31
|
+
# TrustFix
|
|
32
|
+
|
|
33
|
+
**Automated NHI governance and IAM remediation for engineering teams.**
|
|
34
|
+
|
|
35
|
+
TrustFix finds your IAM misconfigurations and fixes them automatically via GitHub PRs — before they become incidents.
|
|
36
|
+
|
|
37
|
+
## Coming Soon
|
|
38
|
+
|
|
39
|
+
Full release at [trustfix.dev](https://trustfix.dev)
|
|
40
|
+
|
|
41
|
+
## What TrustFix Does
|
|
42
|
+
|
|
43
|
+
- Audits AWS IAM OIDC trust policies for misconfigurations
|
|
44
|
+
- Detects over-privileged machine identities
|
|
45
|
+
- Finds long-lived access keys and stale credentials
|
|
46
|
+
- Automatically opens GitHub PRs with least-privilege fixes
|
|
47
|
+
- Generates SOC2 compliance evidence from your CI/CD pipeline
|
|
48
|
+
|
|
49
|
+
## Stay Updated
|
|
50
|
+
|
|
51
|
+
- Website: [trustfix.dev](https://trustfix.dev)
|
|
52
|
+
- GitHub: [github.com/trustfix](https://github.com/trustfix)
|
trustfix-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# TrustFix
|
|
2
|
+
|
|
3
|
+
**Automated NHI governance and IAM remediation for engineering teams.**
|
|
4
|
+
|
|
5
|
+
TrustFix finds your IAM misconfigurations and fixes them automatically via GitHub PRs — before they become incidents.
|
|
6
|
+
|
|
7
|
+
## Coming Soon
|
|
8
|
+
|
|
9
|
+
Full release at [trustfix.dev](https://trustfix.dev)
|
|
10
|
+
|
|
11
|
+
## What TrustFix Does
|
|
12
|
+
|
|
13
|
+
- Audits AWS IAM OIDC trust policies for misconfigurations
|
|
14
|
+
- Detects over-privileged machine identities
|
|
15
|
+
- Finds long-lived access keys and stale credentials
|
|
16
|
+
- Automatically opens GitHub PRs with least-privilege fixes
|
|
17
|
+
- Generates SOC2 compliance evidence from your CI/CD pipeline
|
|
18
|
+
|
|
19
|
+
## Stay Updated
|
|
20
|
+
|
|
21
|
+
- Website: [trustfix.dev](https://trustfix.dev)
|
|
22
|
+
- GitHub: [github.com/trustfix](https://github.com/trustfix)
|
trustfix-0.0.1/setup.cfg
ADDED
trustfix-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="trustfix",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
description="TrustFix — Automated NHI governance and IAM remediation. Finds your IAM misconfigurations and fixes them automatically via GitHub PRs.",
|
|
7
|
+
long_description=open("README.md").read(),
|
|
8
|
+
long_description_content_type="text/markdown",
|
|
9
|
+
author="TrustFix",
|
|
10
|
+
author_email="hello@trustfix.dev",
|
|
11
|
+
url="https://trustfix.dev",
|
|
12
|
+
project_urls={
|
|
13
|
+
"Homepage": "https://trustfix.dev",
|
|
14
|
+
"GitHub": "https://github.com/trustfix/trustfix-core",
|
|
15
|
+
},
|
|
16
|
+
license="MIT",
|
|
17
|
+
keywords=[
|
|
18
|
+
"iam", "aws", "security", "oidc", "nhi",
|
|
19
|
+
"non-human-identity", "github-actions",
|
|
20
|
+
"terraform", "devsecops", "remediation"
|
|
21
|
+
],
|
|
22
|
+
python_requires=">=3.9",
|
|
23
|
+
classifiers=[
|
|
24
|
+
"Development Status :: 1 - Planning",
|
|
25
|
+
"Intended Audience :: Developers",
|
|
26
|
+
"Topic :: Security",
|
|
27
|
+
"License :: OSI Approved :: MIT License",
|
|
28
|
+
"Programming Language :: Python :: 3",
|
|
29
|
+
],
|
|
30
|
+
)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: trustfix
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: TrustFix — Automated NHI governance and IAM remediation. Finds your IAM misconfigurations and fixes them automatically via GitHub PRs.
|
|
5
|
+
Home-page: https://trustfix.dev
|
|
6
|
+
Author: TrustFix
|
|
7
|
+
Author-email: hello@trustfix.dev
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://trustfix.dev
|
|
10
|
+
Project-URL: GitHub, https://github.com/trustfix/trustfix-core
|
|
11
|
+
Keywords: iam,aws,security,oidc,nhi,non-human-identity,github-actions,terraform,devsecops,remediation
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: description
|
|
23
|
+
Dynamic: description-content-type
|
|
24
|
+
Dynamic: home-page
|
|
25
|
+
Dynamic: keywords
|
|
26
|
+
Dynamic: license
|
|
27
|
+
Dynamic: project-url
|
|
28
|
+
Dynamic: requires-python
|
|
29
|
+
Dynamic: summary
|
|
30
|
+
|
|
31
|
+
# TrustFix
|
|
32
|
+
|
|
33
|
+
**Automated NHI governance and IAM remediation for engineering teams.**
|
|
34
|
+
|
|
35
|
+
TrustFix finds your IAM misconfigurations and fixes them automatically via GitHub PRs — before they become incidents.
|
|
36
|
+
|
|
37
|
+
## Coming Soon
|
|
38
|
+
|
|
39
|
+
Full release at [trustfix.dev](https://trustfix.dev)
|
|
40
|
+
|
|
41
|
+
## What TrustFix Does
|
|
42
|
+
|
|
43
|
+
- Audits AWS IAM OIDC trust policies for misconfigurations
|
|
44
|
+
- Detects over-privileged machine identities
|
|
45
|
+
- Finds long-lived access keys and stale credentials
|
|
46
|
+
- Automatically opens GitHub PRs with least-privilege fixes
|
|
47
|
+
- Generates SOC2 compliance evidence from your CI/CD pipeline
|
|
48
|
+
|
|
49
|
+
## Stay Updated
|
|
50
|
+
|
|
51
|
+
- Website: [trustfix.dev](https://trustfix.dev)
|
|
52
|
+
- GitHub: [github.com/trustfix](https://github.com/trustfix)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|