Skip to content

Commit 56abf3f

Browse files
authoredMay 4, 2024
Initial commit
0 parents  commit 56abf3f

File tree

5 files changed

+151
-0
lines changed

5 files changed

+151
-0
lines changed
 

Diff for: ‎.github/workflows/gh-secrets-scanner.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: gh-secrets-scanner
2+
on: workflow_dispatch
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
9+
- uses: actions/checkout@v2
10+
- uses: kams-mash/gh-secrets-scanner-action@master

Diff for: ‎.github/workflows/gitleaks.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: gitleaks
2+
on: workflow_dispatch
3+
4+
jobs:
5+
gitleaks:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: DariuszPorowski/github-action-gitleaks@v2

Diff for: ‎.github/workflows/secret-scanner.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: secret-scanner
2+
on: workflow_dispatch
3+
4+
jobs:
5+
check-secrets:
6+
name: Checking for Secrets
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout Repo
10+
uses: actions/checkout@v3
11+
- name: Secret Scanner
12+
uses: secret-scanner/action@0.0.2

Diff for: ‎.secrets.baseline

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
{
2+
"version": "1.2.0",
3+
"plugins_used": [
4+
{
5+
"name": "ArtifactoryDetector"
6+
},
7+
{
8+
"name": "AWSKeyDetector"
9+
},
10+
{
11+
"name": "AzureStorageKeyDetector"
12+
},
13+
{
14+
"name": "Base64HighEntropyString",
15+
"limit": 4.5
16+
},
17+
{
18+
"name": "BasicAuthDetector"
19+
},
20+
{
21+
"name": "CloudantDetector"
22+
},
23+
{
24+
"name": "GitHubTokenDetector"
25+
},
26+
{
27+
"name": "HexHighEntropyString",
28+
"limit": 3.0
29+
},
30+
{
31+
"name": "IbmCloudIamDetector"
32+
},
33+
{
34+
"name": "IbmCosHmacDetector"
35+
},
36+
{
37+
"name": "JwtTokenDetector"
38+
},
39+
{
40+
"name": "KeywordDetector",
41+
"keyword_exclude": ""
42+
},
43+
{
44+
"name": "MailchimpDetector"
45+
},
46+
{
47+
"name": "NpmDetector"
48+
},
49+
{
50+
"name": "PrivateKeyDetector"
51+
},
52+
{
53+
"name": "SendGridDetector"
54+
},
55+
{
56+
"name": "SlackDetector"
57+
},
58+
{
59+
"name": "SoftlayerDetector"
60+
},
61+
{
62+
"name": "SquareOAuthDetector"
63+
},
64+
{
65+
"name": "StripeDetector"
66+
},
67+
{
68+
"name": "TwilioKeyDetector"
69+
}
70+
],
71+
"filters_used": [
72+
{
73+
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
74+
},
75+
{
76+
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
77+
"min_level": 2
78+
},
79+
{
80+
"path": "detect_secrets.filters.gibberish.should_exclude_secret",
81+
"limit": 3.7
82+
},
83+
{
84+
"path": "detect_secrets.filters.heuristic.is_indirect_reference"
85+
},
86+
{
87+
"path": "detect_secrets.filters.heuristic.is_likely_id_string"
88+
},
89+
{
90+
"path": "detect_secrets.filters.heuristic.is_lock_file"
91+
},
92+
{
93+
"path": "detect_secrets.filters.heuristic.is_not_alphanumeric_string"
94+
},
95+
{
96+
"path": "detect_secrets.filters.heuristic.is_potential_uuid"
97+
},
98+
{
99+
"path": "detect_secrets.filters.heuristic.is_prefixed_with_dollar_sign"
100+
},
101+
{
102+
"path": "detect_secrets.filters.heuristic.is_sequential_string"
103+
},
104+
{
105+
"path": "detect_secrets.filters.heuristic.is_swagger_file"
106+
},
107+
{
108+
"path": "detect_secrets.filters.heuristic.is_templated_secret"
109+
}
110+
],
111+
"results": {},
112+
"generated_at": "2023-04-12T06:34:43Z"
113+
}

Diff for: ‎README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Includes diffs between old and new version for new packages released on
2+
pypi for this day. Diffs are generated using diffoscope, output formats:
3+
4+
* markdown
5+
6+
Projects with artifacts > 10 MB are ignored and some "special cases" are not
7+
handled yet: no guarantee that all packages have been tracked.

0 commit comments

Comments
 (0)
Please sign in to comment.