-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-actions-security-node.html
More file actions
291 lines (287 loc) · 9.26 KB
/
Copy pathgithub-actions-security-node.html
File metadata and controls
291 lines (287 loc) · 9.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GitHub Actions Security Kit for Node Projects</title>
<meta
name="description"
content="A buyer guide for GitHub Actions security hardening with the live GHA Guard Pro Kit checkout."
/>
<link
rel="canonical"
href="https://agentlaunchops-ai.github.io/agentlaunchops-offers/github-actions-security-node.html"
/>
<meta property="og:type" content="product" />
<meta property="og:site_name" content="AgentLaunchOps" />
<meta property="og:title" content="GitHub Actions Security Kit for Node Projects" />
<meta
property="og:description"
content="Workflow hardening checks, safe auto-fixes, PR reports, and secure templates for GitHub Actions."
/>
<meta
property="og:url"
content="https://agentlaunchops-ai.github.io/agentlaunchops-offers/github-actions-security-node.html"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="GitHub Actions Security Kit for Node Projects" />
<meta
name="twitter:description"
content="A focused source kit for hardening GitHub Actions workflows before release or deploy jobs drift."
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "GHA Guard Pro Kit",
"description": "A paid GitHub Actions security source kit with workflow checks, safe auto-fixes, PR reports, and hardened workflow templates.",
"brand": { "@type": "Brand", "name": "AgentLaunchOps" },
"offers": {
"@type": "Offer",
"price": "29",
"priceCurrency": "USD",
"url": "https://launchagent.gumroad.com/l/auqpvm",
"availability": "https://schema.org/InStock"
}
}
</script>
<style>
:root {
color-scheme: light;
--ink: #171717;
--muted: #5f6561;
--line: #d7ddd9;
--paper: #f9faf8;
--panel: #ffffff;
--accent: #126c62;
--accent-dark: #0f4f49;
--warn: #a74416;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: var(--paper);
color: var(--ink);
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
line-height: 1.55;
}
main {
width: min(1080px, calc(100% - 32px));
margin: 0 auto;
padding: 48px 0 60px;
}
header {
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
gap: 34px;
align-items: start;
border-bottom: 1px solid var(--line);
padding-bottom: 36px;
}
h1,
h2,
p {
margin: 0;
}
h1 {
max-width: 780px;
font-size: clamp(2.25rem, 5vw, 4.8rem);
line-height: 0.98;
letter-spacing: 0;
}
h2 {
margin-bottom: 14px;
font-size: 1.08rem;
text-transform: uppercase;
letter-spacing: 0;
}
p {
color: var(--muted);
}
section {
margin-top: 34px;
}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
border-bottom: 1px solid var(--line);
padding: 12px 10px;
text-align: left;
vertical-align: top;
}
th {
color: var(--accent-dark);
font-size: 0.9rem;
text-transform: uppercase;
}
.eyebrow {
color: var(--warn);
font-weight: 800;
margin-bottom: 14px;
text-transform: uppercase;
}
.lead {
margin-top: 18px;
font-size: 1.08rem;
}
.panel,
.card {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 8px;
padding: 22px;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 24px;
}
a.button {
align-items: center;
background: var(--accent);
border-radius: 6px;
color: #ffffff;
display: inline-flex;
font-weight: 800;
justify-content: center;
min-height: 44px;
padding: 10px 16px;
text-decoration: none;
}
a.button.secondary {
background: transparent;
border: 1px solid var(--accent-dark);
color: var(--accent-dark);
}
.grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}
ul {
margin: 0;
padding-left: 20px;
}
li + li {
margin-top: 8px;
}
code {
background: #eef3f0;
border-radius: 4px;
padding: 2px 5px;
}
@media (max-width: 860px) {
header,
.grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<main>
<header>
<div>
<p class="eyebrow">GitHub Actions security</p>
<h1>Harden release workflows before one permissive YAML file becomes a supply-chain problem.</h1>
<p class="lead">
GHA Guard Pro Kit is a paid Node source kit for local GitHub Actions review:
workflow risk checks, conservative auto-fixes, markdown PR reports, and secure
templates buyers can adapt inside their own repos.
</p>
<div class="actions">
<a class="button" href="https://launchagent.gumroad.com/l/auqpvm">Buy GHA Guard Pro Kit for $29</a>
<a class="button secondary" href="gha-guard-pro-kit.html">View product details</a>
</div>
</div>
<aside class="panel">
<h2>Good fit</h2>
<ul>
<li>Node teams with release, deploy, publish, or package workflows.</li>
<li>Maintainers who need repeatable checks before accepting workflow changes.</li>
<li>Teams that want a local scanner instead of uploading workflow contents to a service.</li>
</ul>
</aside>
</header>
<section>
<h2>Checks Covered</h2>
<div class="grid">
<div class="card">
<strong>Permissions and tokens</strong>
<p>Flags missing top-level permissions, broad write grants, write-all, and checkout credential persistence.</p>
</div>
<div class="card">
<strong>Fork and shell risk</strong>
<p>Finds unsafe pull_request_target patterns and direct shell interpolation from untrusted contexts.</p>
</div>
<div class="card">
<strong>Release hardening</strong>
<p>Looks for mutable action references, missing job timeouts, and broad runner labels on sensitive jobs.</p>
</div>
</div>
</section>
<section>
<h2>Delivered Source</h2>
<div class="grid">
<div class="card">
<strong>CLI and reports</strong>
<p>Run local scans with text, JSON, or markdown output for CI comments and PR review.</p>
</div>
<div class="card">
<strong>Safe fixes</strong>
<p>Applies mechanical defaults like least-privilege permissions and timeouts without pretending to pin third-party SHAs for you.</p>
</div>
<div class="card">
<strong>Templates</strong>
<p>Includes secure workflow examples, a composite action template, remediation docs, tests, and buyer smoke checks.</p>
</div>
</div>
</section>
<section class="panel">
<h2>Why teams buy it</h2>
<table>
<thead>
<tr>
<th>Workflow drift</th>
<th>What the kit checks</th>
<th>Buyer outcome</th>
</tr>
</thead>
<tbody>
<tr>
<td>Release jobs gain broad default token rights.</td>
<td>Top-level and job-level permissions, write-all, and broad write scopes.</td>
<td>Reviewers get a repeatable least-privilege baseline before tags or packages ship.</td>
</tr>
<tr>
<td>Forked PR workflows can run dangerous contexts.</td>
<td>pull_request_target patterns, untrusted interpolation, and risky shell usage.</td>
<td>Maintainers can block unsafe YAML changes without manually reading every expression.</td>
</tr>
<tr>
<td>Third-party actions and runners stay too loose.</td>
<td>Mutable action refs, broad runner labels, missing timeouts, and checkout credential persistence.</td>
<td>Teams get specific remediation notes and templates they can adapt locally.</td>
</tr>
</tbody>
</table>
</section>
<section class="panel">
<h2>Buyer Verification</h2>
<p>
The paid zip includes runnable checks: <code>npm run verify:manifest</code>,
<code>npm test</code>, and <code>npm run smoke:buyer</code>. Gumroad currently
serves the attached paid file for the live checkout.
</p>
</section>
</main>
</body>
</html>