@soos-io/soos-scm-audit 0.0.1

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.
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # [SOOS](https://soos.io/)
2
+
3
+ SOOS is an independent software security company, located in Winooski, VT USA, building security software for your team. [SOOS, Software security, simplified](https://soos.io).
4
+
5
+ Use SOOS to scan your software for [vulnerabilities](https://app.soos.io/research/vulnerabilities) and [open source license](https://app.soos.io/research/licenses) issues with [SOOS Core SCA](https://soos.io/products/sca). [Generate and ingest SBOMs](https://soos.io/products/sbom-manager). [Export reports](https://kb.soos.io/help/soos-reports-for-export) to industry standards. Govern your open source dependencies. Run the [SOOS DAST vulnerability scanner](https://soos.io/products/dast) against your web apps or APIs. [Scan your Docker containers](https://soos.io/products/containers) for vulnerabilities. Check your source code for issues with [SAST Analysis](https://soos.io/products/sast).
6
+
7
+ [Demo SOOS](https://app.soos.io/demo) or [Register for a Free Trial](https://app.soos.io/register).
8
+
9
+ If you maintain an Open Source project, sign up for the Free as in Beer [SOOS Community Edition](https://soos.io/products/community-edition).
10
+
11
+ ## Requirements
12
+ - [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
13
+
14
+ ## Installation
15
+
16
+ ### Globally
17
+ run `npm i -g @soos-io/soos-scm-audit@latest`
18
+ Then Run `soos-scm-audit` from any terminal and add the parameters you want.
19
+
20
+ ### Locally
21
+ run `npm install --prefix ./soos @soos-io/soos-scm-audit`
22
+ Then run from the same terminal `node ./soos/node_modules/@soos-io/soos-scm-audit/bin/index.js`
23
+
24
+ ## Client Parameters
25
+
26
+
27
+ | Argument | Default | Description |
28
+ | ----------------------- | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
29
+ | `--apiKey` | | SOOS API Key - get yours from [SOOS Integration](https://app.soos.io/integrate/sca). Uses `SOOS_API_KEY` env value if present. |
30
+ | `--clientId` | | SOOS Client ID - get yours from [SOOS Integration](https://app.soos.io/integrate/sca). Uses `SOOS_API_CLIENT` env value if present. | |
31
+ | `--logLevel` | | Minimum level to show logs: DEBUG INFO, WARN, FAIL, ERROR. |
32
+ | `--saveResults` | | Save results to file.
33
+ | `--scmType` | | Scm Type to use for the audit. Options: GitHub.
34
+ | `--secret` | | Secret to use for api calls, for example when --scmType=GitHub this needs to have the value of a PAT. |
35
+ | `--organizationName` | | Organization name to run audit. |
36
+ | `--verbose` | `false` | Enable verbose logging. |
package/bin/enums.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ export declare enum SCMSystem {
2
+ GitHub = "GitHub",
3
+ GitLab = "GitLab",
4
+ Bitbucket = "Bitbucket",
5
+ AzureDevOps = "AzureDevOps",
6
+ Other = "Other"
7
+ }
package/bin/enums.js ADDED
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SCMSystem = void 0;
4
+ var SCMSystem;
5
+ (function (SCMSystem) {
6
+ SCMSystem["GitHub"] = "GitHub";
7
+ SCMSystem["GitLab"] = "GitLab";
8
+ SCMSystem["Bitbucket"] = "Bitbucket";
9
+ SCMSystem["AzureDevOps"] = "AzureDevOps";
10
+ SCMSystem["Other"] = "Other";
11
+ })(SCMSystem || (exports.SCMSystem = SCMSystem = {}));
package/bin/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
package/bin/index.js ADDED
@@ -0,0 +1,54 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const tslib_1 = require("tslib");
5
+ const package_json_1 = require("../package.json");
6
+ const api_client_1 = require("@soos-io/api-client");
7
+ const process_1 = require("process");
8
+ const utilities_1 = require("@soos-io/api-client/dist/utilities");
9
+ const ContributorAuditService_1 = tslib_1.__importDefault(require("@soos-io/api-client/dist/services/ContributorAuditService/ContributorAuditService"));
10
+ const ContributorAuditArgumentParser_1 = tslib_1.__importDefault(require("@soos-io/api-client/dist/services/ContributorAuditArgumentParser"));
11
+ class SOOSSCMAudit {
12
+ constructor(args) {
13
+ this.args = args;
14
+ }
15
+ static parseArgs() {
16
+ const contributorAuditArgumentParser = ContributorAuditArgumentParser_1.default.create();
17
+ contributorAuditArgumentParser.addBaseContributorArguments();
18
+ api_client_1.soosLogger.info("Parsing arguments");
19
+ return contributorAuditArgumentParser.parseArguments();
20
+ }
21
+ async runAudit() {
22
+ const contributingDeveloperService = ContributorAuditService_1.default.create(this.args.apiKey, this.args.apiURL, this.args.scmType);
23
+ const auditParams = {
24
+ days: this.args.days,
25
+ secret: this.args.secret,
26
+ organizationName: this.args.organizationName,
27
+ scriptVersion: package_json_1.version,
28
+ };
29
+ api_client_1.soosLogger.info(`Running Contributing Developer audit for ${this.args.scmType}`);
30
+ const contributingDevelopers = await contributingDeveloperService.audit(auditParams);
31
+ await contributingDeveloperService.uploadContributorAudits(this.args.clientId, contributingDevelopers);
32
+ if (this.args.saveResults) {
33
+ contributingDeveloperService.saveResults(contributingDevelopers);
34
+ }
35
+ }
36
+ static async createAndRun() {
37
+ api_client_1.soosLogger.info("Starting SOOS SCM Contributor Audit");
38
+ api_client_1.soosLogger.logLineSeparator();
39
+ try {
40
+ const args = this.parseArgs();
41
+ api_client_1.soosLogger.setMinLogLevel(args.logLevel);
42
+ api_client_1.soosLogger.setVerbose(args.verbose);
43
+ api_client_1.soosLogger.verboseDebug(JSON.stringify((0, utilities_1.obfuscateProperties)(args, ["apiKey", "secret"]), null, 2));
44
+ api_client_1.soosLogger.logLineSeparator();
45
+ const soosSCMAudit = new SOOSSCMAudit(args);
46
+ await soosSCMAudit.runAudit();
47
+ }
48
+ catch (error) {
49
+ api_client_1.soosLogger.error(`Error on createAndRun: ${error}`);
50
+ (0, process_1.exit)(1);
51
+ }
52
+ }
53
+ }
54
+ SOOSSCMAudit.createAndRun();
@@ -0,0 +1,92 @@
1
+ export interface GitHubOrganization {
2
+ login: string;
3
+ id: number;
4
+ node_id: string;
5
+ url: string;
6
+ repos_url: string;
7
+ events_url: string;
8
+ hooks_url: string;
9
+ issues_url: string;
10
+ members_url: string;
11
+ public_members_url: string;
12
+ avatar_url: string;
13
+ description: string | null;
14
+ }
15
+ export interface GitHubRepository {
16
+ id: number;
17
+ node_id: string;
18
+ name: string;
19
+ full_name: string;
20
+ private: boolean;
21
+ owner: GitHubOrganization;
22
+ html_url: string;
23
+ description: string | null;
24
+ fork: boolean;
25
+ url: string;
26
+ forks_url: string;
27
+ keys_url: string;
28
+ collaborators_url: string;
29
+ teams_url: string;
30
+ hooks_url: string;
31
+ issue_events_url: string;
32
+ events_url: string;
33
+ assignees_url: string;
34
+ branches_url: string;
35
+ tags_url: string;
36
+ blobs_url: string;
37
+ git_tags_url: string;
38
+ git_refs_url: string;
39
+ trees_url: string;
40
+ statuses_url: string;
41
+ languages_url: string;
42
+ stargazers_url: string;
43
+ contributors_url: string;
44
+ subscribers_url: string;
45
+ subscription_url: string;
46
+ commits_url: string;
47
+ git_commits_url: string;
48
+ comments_url: string;
49
+ issue_comment_url: string;
50
+ contents_url: string;
51
+ compare_url: string;
52
+ merges_url: string;
53
+ archive_url: string;
54
+ downloads_url: string;
55
+ issues_url: string;
56
+ pulls_url: string;
57
+ milestones_url: string;
58
+ notifications_url: string;
59
+ labels_url: string;
60
+ releases_url: string;
61
+ deployments_url: string;
62
+ }
63
+ export interface Commits {
64
+ commit: {
65
+ author: author;
66
+ };
67
+ }
68
+ export interface author {
69
+ name: string;
70
+ email: string;
71
+ }
72
+ interface ContributingDeveloper {
73
+ username: string;
74
+ repositories: ContributingDeveloperRepositories[];
75
+ }
76
+ interface ContributingDeveloperRepositories {
77
+ id: number;
78
+ name: string;
79
+ lastCommit: string;
80
+ isPrivate: boolean;
81
+ }
82
+ export declare const threeMonthsDate: string;
83
+ declare class GitHubService {
84
+ githubPAT: string;
85
+ apiURL: string;
86
+ constructor(githubPAT: string, apiURL?: string);
87
+ static create(githubPAT: string): GitHubService;
88
+ getGithubOrgs(): Promise<GitHubOrganization[]>;
89
+ getGithubOrgRepos(org: GitHubOrganization): Promise<GitHubRepository[]>;
90
+ getContributorsForRepo(repository: GitHubRepository): Promise<ContributingDeveloper[]>;
91
+ }
92
+ export default GitHubService;
@@ -0,0 +1,99 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.threeMonthsDate = void 0;
4
+ const api_client_1 = require("@soos-io/api-client");
5
+ const d = new Date();
6
+ d.setDate(d.getDate() - 90);
7
+ exports.threeMonthsDate = `${d.getUTCFullYear()}-${d.getMonth() + 1}-${d.getUTCDate()}T${d.getHours()}:${d.getMinutes()}:${d.getSeconds()}Z`;
8
+ class GitHubService {
9
+ constructor(githubPAT, apiURL = "https://api.github.com") {
10
+ this.githubPAT = githubPAT;
11
+ this.apiURL = apiURL;
12
+ }
13
+ static create(githubPAT) {
14
+ return new GitHubService(githubPAT);
15
+ }
16
+ async getGithubOrgs() {
17
+ const url = `${this.apiURL}/user/orgs?per_page=100`;
18
+ api_client_1.soosLogger.verboseDebug(`Fetching GitHub orgs from ${url}`);
19
+ const response = await fetch(url, {
20
+ method: "GET",
21
+ headers: {
22
+ accept: "application/vnd.github+json",
23
+ Authorization: `Bearer ${this.githubPAT}`,
24
+ },
25
+ });
26
+ if (!response.ok) {
27
+ throw new Error(`Failed to fetch GitHub orgs: ${response.statusText}`);
28
+ }
29
+ api_client_1.soosLogger.verboseDebug(`Fetched GitHub orgs from ${url}`);
30
+ const orgs = await response.json();
31
+ api_client_1.soosLogger.verboseDebug(`GitHub orgs response: ${JSON.stringify(orgs)}`);
32
+ return orgs;
33
+ }
34
+ async getGithubOrgRepos(org) {
35
+ const url = `${this.apiURL}/orgs/${org.login}/repos?per_page=1`;
36
+ api_client_1.soosLogger.verboseDebug(`Fetching GitHub org repos from ${url}`);
37
+ const response = await fetch(url, {
38
+ method: "GET",
39
+ headers: {
40
+ accept: "application/vnd.github+json",
41
+ Authorization: `Bearer ${this.githubPAT}`,
42
+ },
43
+ });
44
+ if (!response.ok) {
45
+ throw new Error(`Failed to fetch GitHub org repos: ${response.statusText}`);
46
+ }
47
+ api_client_1.soosLogger.verboseDebug(`Fetched GitHub org repos from ${url}`);
48
+ const repos = await response.json();
49
+ api_client_1.soosLogger.verboseDebug(`GitHub org repos response: ${JSON.stringify(repos)}`);
50
+ return repos;
51
+ }
52
+ async getContributorsForRepo(repository) {
53
+ const url = `${this.apiURL}/repos/${repository.owner.login}/${repository.name}/commits?per_page=100&since=${exports.threeMonthsDate}`;
54
+ api_client_1.soosLogger.verboseDebug(`Fetching GitHub repo contributors from ${url}`);
55
+ const response = await fetch(url, {
56
+ method: "GET",
57
+ headers: {
58
+ accept: "application/vnd.github+json",
59
+ Authorization: `Bearer ${this.githubPAT}`,
60
+ },
61
+ });
62
+ if (!response.ok) {
63
+ throw new Error(`Failed to fetch GitHub repo contributors: ${response.statusText}`);
64
+ }
65
+ api_client_1.soosLogger.verboseDebug(`Fetched GitHub repo contributors from ${url}`);
66
+ const commits = await response.json();
67
+ const contributors = [];
68
+ commits.forEach(commit => {
69
+ const username = commit.commit.author;
70
+ const repo = {
71
+ id: repository.id,
72
+ name: repository.name,
73
+ lastCommit: exports.threeMonthsDate,
74
+ isPrivate: repository.private
75
+ };
76
+ const existingContributor = contributors.find(contributor => contributor.username === username.name);
77
+ if (existingContributor) {
78
+ existingContributor.repositories.forEach(existingRepo => {
79
+ if (existingRepo.id === repo.id) {
80
+ api_client_1.soosLogger.info("Repo already exists in the list");
81
+ return;
82
+ }
83
+ else {
84
+ existingContributor.repositories.push(repo);
85
+ }
86
+ });
87
+ }
88
+ else {
89
+ contributors.push({
90
+ username: username.name,
91
+ repositories: [repo]
92
+ });
93
+ }
94
+ });
95
+ api_client_1.soosLogger.verboseDebug(`GitHub repo contributors response: ${JSON.stringify(contributors)}`);
96
+ return contributors;
97
+ }
98
+ }
99
+ exports.default = GitHubService;
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@soos-io/soos-scm-audit",
3
+ "version": "0.0.1",
4
+ "description": "SOOS SCM Audit CLI",
5
+ "main": "bin/index.js",
6
+ "scripts": {
7
+ "setup:install": "npm install",
8
+ "setup:clean-install": "npm ci",
9
+ "setup:update": "npx npm-check -u",
10
+ "setup:clean": "npx rimraf node_modules && npx rimraf package-lock.json",
11
+ "build": "tsc",
12
+ "build:clean": "npx rimraf build",
13
+ "format": "prettier ./src --check",
14
+ "format:fix": "prettier ./src --write",
15
+ "typecheck": "tsc --noEmit",
16
+ "check": "npm run format && npm run typecheck && npm outdated",
17
+ "patch-api-client": "npm version patch --no-git-tag-version && npm run setup:clean && npm install @soos-io/api-client@latest --save-exact && npm install && npm run check",
18
+ "link:local": "npm link @soos-io/api-client && npm run build && npm link"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/soos-io/soos-scm-audit.git"
23
+ },
24
+ "author": "SOOS",
25
+ "license": "MIT",
26
+ "bugs": {
27
+ "url": "https://github.com/soos-io/soos-scm-audit/issues"
28
+ },
29
+ "homepage": "https://github.com/soos-io/soos-scm-audit#readme",
30
+ "dependencies": {
31
+ "@soos-io/api-client": "0.2.32",
32
+ "argparse": "^2.0.1",
33
+ "tslib": "^2.6.2"
34
+ },
35
+ "devDependencies": {
36
+ "@types/argparse": "^2.0.11",
37
+ "@types/node": "^20.11.5",
38
+ "prettier": "^3.2.4",
39
+ "typescript": "^5.3.3"
40
+ },
41
+ "bin": {
42
+ "soos-scm-audit": "bin/index.js"
43
+ }
44
+ }
@@ -0,0 +1,264 @@
1
+ {
2
+ "metadata": {
3
+ "scriptVersion": "0.0.1",
4
+ "days": 90
5
+ },
6
+ "organizationName": "soos-io",
7
+ "contributors": [
8
+ {
9
+ "username": "SOOS-GSteen",
10
+ "repositories": [
11
+ {
12
+ "id": 391059521,
13
+ "name": "soos-ci-analysis-python",
14
+ "lastCommit": "2023-11-15T18:34:28Z",
15
+ "isPrivate": false
16
+ },
17
+ {
18
+ "id": 391060504,
19
+ "name": "soos-sca-github-action",
20
+ "lastCommit": "2024-01-04T13:52:17Z",
21
+ "isPrivate": false
22
+ },
23
+ {
24
+ "id": 417488624,
25
+ "name": "soos-dast",
26
+ "lastCommit": "2024-01-18T20:08:17Z",
27
+ "isPrivate": false
28
+ },
29
+ {
30
+ "id": 421561326,
31
+ "name": "soos-dast-github-action",
32
+ "lastCommit": "2023-12-01T16:33:47Z",
33
+ "isPrivate": false
34
+ },
35
+ {
36
+ "id": 703769955,
37
+ "name": "soos-csa",
38
+ "lastCommit": "2024-01-18T20:03:54Z",
39
+ "isPrivate": false
40
+ },
41
+ {
42
+ "id": 707826823,
43
+ "name": "soos-api-client",
44
+ "lastCommit": "2024-01-18T19:53:48Z",
45
+ "isPrivate": false
46
+ },
47
+ {
48
+ "id": 715746107,
49
+ "name": "soos-sbom",
50
+ "lastCommit": "2024-01-18T20:13:00Z",
51
+ "isPrivate": false
52
+ },
53
+ {
54
+ "id": 717064373,
55
+ "name": "soos-csa-github-action",
56
+ "lastCommit": "2023-12-21T16:14:19Z",
57
+ "isPrivate": false
58
+ },
59
+ {
60
+ "id": 720060036,
61
+ "name": "soos-sast",
62
+ "lastCommit": "2024-01-18T20:10:23Z",
63
+ "isPrivate": false
64
+ },
65
+ {
66
+ "id": 721676171,
67
+ "name": "soos-sast-github-action",
68
+ "lastCommit": "2023-12-21T16:13:20Z",
69
+ "isPrivate": false
70
+ },
71
+ {
72
+ "id": 724596621,
73
+ "name": "soos-sca",
74
+ "lastCommit": "2024-01-18T20:11:50Z",
75
+ "isPrivate": false
76
+ }
77
+ ]
78
+ },
79
+ {
80
+ "username": "SOOS-JAlvarez",
81
+ "repositories": [
82
+ {
83
+ "id": 391060504,
84
+ "name": "soos-sca-github-action",
85
+ "lastCommit": "2023-12-26T14:52:44Z",
86
+ "isPrivate": false
87
+ },
88
+ {
89
+ "id": 391061021,
90
+ "name": "soos-ci-analysis-circleci-orb",
91
+ "lastCommit": "2023-12-26T14:56:14Z",
92
+ "isPrivate": false
93
+ },
94
+ {
95
+ "id": 409715211,
96
+ "name": "soos-integration-java-core",
97
+ "lastCommit": "2024-01-15T14:04:25Z",
98
+ "isPrivate": false
99
+ },
100
+ {
101
+ "id": 417488624,
102
+ "name": "soos-dast",
103
+ "lastCommit": "2024-01-11T17:54:10Z",
104
+ "isPrivate": false
105
+ },
106
+ {
107
+ "id": 421561326,
108
+ "name": "soos-dast-github-action",
109
+ "lastCommit": "2024-01-03T15:20:21Z",
110
+ "isPrivate": false
111
+ },
112
+ {
113
+ "id": 424384707,
114
+ "name": "kb-docs",
115
+ "lastCommit": "2024-01-09T18:15:47Z",
116
+ "isPrivate": false
117
+ },
118
+ {
119
+ "id": 488242034,
120
+ "name": "soos-dast-circleci-orb",
121
+ "lastCommit": "2023-11-28T19:02:29Z",
122
+ "isPrivate": false
123
+ },
124
+ {
125
+ "id": 560396288,
126
+ "name": "zaproxy",
127
+ "lastCommit": "2024-01-02T18:17:40Z",
128
+ "isPrivate": false
129
+ },
130
+ {
131
+ "id": 587360611,
132
+ "name": "sample-project-python",
133
+ "lastCommit": "2024-01-11T14:43:17Z",
134
+ "isPrivate": false
135
+ },
136
+ {
137
+ "id": 587363859,
138
+ "name": "sample-project-nuget",
139
+ "lastCommit": "2024-01-11T14:42:21Z",
140
+ "isPrivate": false
141
+ },
142
+ {
143
+ "id": 587366020,
144
+ "name": "sample-project-npm",
145
+ "lastCommit": "2024-01-11T14:48:26Z",
146
+ "isPrivate": false
147
+ },
148
+ {
149
+ "id": 592821605,
150
+ "name": "sample-project-node-package-fetch",
151
+ "lastCommit": "2024-01-11T14:53:07Z",
152
+ "isPrivate": false
153
+ },
154
+ {
155
+ "id": 592878845,
156
+ "name": "sample-project-node-vulnerability-fetch",
157
+ "lastCommit": "2024-01-11T14:52:05Z",
158
+ "isPrivate": false
159
+ },
160
+ {
161
+ "id": 592896836,
162
+ "name": "sample-project-node-license-fetch",
163
+ "lastCommit": "2024-01-11T14:51:00Z",
164
+ "isPrivate": false
165
+ },
166
+ {
167
+ "id": 596250526,
168
+ "name": "sample-project-dart",
169
+ "lastCommit": "2024-01-11T14:55:03Z",
170
+ "isPrivate": false
171
+ },
172
+ {
173
+ "id": 596576194,
174
+ "name": "sample-project-erlang",
175
+ "lastCommit": "2024-01-11T14:43:25Z",
176
+ "isPrivate": false
177
+ },
178
+ {
179
+ "id": 597169916,
180
+ "name": "sample-project-go",
181
+ "lastCommit": "2024-01-11T14:43:00Z",
182
+ "isPrivate": false
183
+ },
184
+ {
185
+ "id": 598310766,
186
+ "name": "sample-project-ruby",
187
+ "lastCommit": "2024-01-11T15:09:20Z",
188
+ "isPrivate": false
189
+ },
190
+ {
191
+ "id": 598814834,
192
+ "name": "sample-project-php",
193
+ "lastCommit": "2024-01-11T14:42:52Z",
194
+ "isPrivate": false
195
+ },
196
+ {
197
+ "id": 599211441,
198
+ "name": "sample-project-rust",
199
+ "lastCommit": "2024-01-11T14:42:31Z",
200
+ "isPrivate": false
201
+ },
202
+ {
203
+ "id": 703769955,
204
+ "name": "soos-csa",
205
+ "lastCommit": "2023-12-20T17:57:18Z",
206
+ "isPrivate": false
207
+ },
208
+ {
209
+ "id": 707826823,
210
+ "name": "soos-api-client",
211
+ "lastCommit": "2024-01-22T19:12:32Z",
212
+ "isPrivate": false
213
+ },
214
+ {
215
+ "id": 715746107,
216
+ "name": "soos-sbom",
217
+ "lastCommit": "2024-01-16T12:44:31Z",
218
+ "isPrivate": false
219
+ },
220
+ {
221
+ "id": 717064373,
222
+ "name": "soos-csa-github-action",
223
+ "lastCommit": "2023-12-14T14:50:37Z",
224
+ "isPrivate": false
225
+ },
226
+ {
227
+ "id": 719078266,
228
+ "name": "soos-sbom-github-action",
229
+ "lastCommit": "2023-11-17T18:19:48Z",
230
+ "isPrivate": false
231
+ },
232
+ {
233
+ "id": 720060036,
234
+ "name": "soos-sast",
235
+ "lastCommit": "2024-01-16T12:44:36Z",
236
+ "isPrivate": false
237
+ },
238
+ {
239
+ "id": 721676171,
240
+ "name": "soos-sast-github-action",
241
+ "lastCommit": "2024-01-02T18:33:05Z",
242
+ "isPrivate": false
243
+ },
244
+ {
245
+ "id": 724596621,
246
+ "name": "soos-sca",
247
+ "lastCommit": "2023-12-21T15:30:03Z",
248
+ "isPrivate": false
249
+ }
250
+ ]
251
+ },
252
+ {
253
+ "username": "SOOS-JGomez",
254
+ "repositories": [
255
+ {
256
+ "id": 499192142,
257
+ "name": "sca-dast-aws-codebuild-cloud",
258
+ "lastCommit": "2023-12-15T16:22:18Z",
259
+ "isPrivate": false
260
+ }
261
+ ]
262
+ }
263
+ ]
264
+ }