@networkpro/blog 1.4.0 β 1.5.0
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/.github/workflows/build-and-deploy.yml +4 -4
- package/.github/workflows/publish-test.yml +4 -4
- package/.github/workflows/publish.yml +39 -39
- package/CHANGELOG.md +44 -2
- package/cspell.json +2 -0
- package/mkdocs.yml +16 -38
- package/package.json +8 -8
- package/requirements.txt +1 -1
- package/src/contributing.md +9 -10
- package/src/fontawesome/brands/discord.svg +1 -0
- package/src/img/sonicwall-promo.png +0 -0
- package/src/img/sonicwall-promo.webp +0 -0
- package/src/posts/2025-09-23-sonicwall.md +50 -0
- package/src/sitemap.xml +26 -14
|
@@ -33,12 +33,12 @@ jobs:
|
|
|
33
33
|
|
|
34
34
|
steps:
|
|
35
35
|
- name: Checkout repository
|
|
36
|
-
uses: actions/checkout@
|
|
36
|
+
uses: actions/checkout@v5
|
|
37
37
|
with:
|
|
38
38
|
fetch-depth: 0
|
|
39
39
|
|
|
40
40
|
- name: Set up Node.js
|
|
41
|
-
uses: actions/setup-node@
|
|
41
|
+
uses: actions/setup-node@v5
|
|
42
42
|
with:
|
|
43
43
|
node-version: 24
|
|
44
44
|
cache: npm
|
|
@@ -47,7 +47,7 @@ jobs:
|
|
|
47
47
|
- name: Upgrade npm
|
|
48
48
|
run: |
|
|
49
49
|
corepack enable
|
|
50
|
-
npm install -g npm@11.
|
|
50
|
+
npm install -g npm@11.6.0
|
|
51
51
|
|
|
52
52
|
- name: Set up Pages
|
|
53
53
|
uses: actions/configure-pages@v5
|
|
@@ -57,7 +57,7 @@ jobs:
|
|
|
57
57
|
|
|
58
58
|
# Begin Material for MkDocs setup
|
|
59
59
|
- name: Set up Python
|
|
60
|
-
uses: actions/setup-python@
|
|
60
|
+
uses: actions/setup-python@v6
|
|
61
61
|
with:
|
|
62
62
|
python-version: '3.13'
|
|
63
63
|
|
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
- name: Upgrade npm
|
|
43
43
|
run: |
|
|
44
44
|
corepack enable
|
|
45
|
-
npm install -g npm@11.
|
|
45
|
+
npm install -g npm@11.6.0
|
|
46
46
|
|
|
47
47
|
- name: Install Node.js dependencies
|
|
48
48
|
run: npm ci
|
|
@@ -107,7 +107,7 @@ jobs:
|
|
|
107
107
|
- name: Upgrade npm
|
|
108
108
|
run: |
|
|
109
109
|
corepack enable
|
|
110
|
-
npm install -g npm@11.
|
|
110
|
+
npm install -g npm@11.6.0
|
|
111
111
|
|
|
112
112
|
- name: Install Node.js dependencies
|
|
113
113
|
run: npm ci
|
|
@@ -155,7 +155,7 @@ jobs:
|
|
|
155
155
|
- name: Upgrade npm
|
|
156
156
|
run: |
|
|
157
157
|
corepack enable
|
|
158
|
-
npm install -g npm@11.
|
|
158
|
+
npm install -g npm@11.6.0
|
|
159
159
|
|
|
160
160
|
- name: Install Node.js dependencies
|
|
161
161
|
run: npm ci
|
|
@@ -167,7 +167,7 @@ jobs:
|
|
|
167
167
|
|
|
168
168
|
- name: Update package name for GPR
|
|
169
169
|
run: |
|
|
170
|
-
sed -i 's/"name": "
|
|
170
|
+
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/blog"/' package.json
|
|
171
171
|
|
|
172
172
|
- name: Publish package to GPR
|
|
173
173
|
run: npm publish --dry-run
|
|
@@ -30,12 +30,12 @@ jobs:
|
|
|
30
30
|
|
|
31
31
|
steps:
|
|
32
32
|
- name: Checkout repository
|
|
33
|
-
uses: actions/checkout@
|
|
33
|
+
uses: actions/checkout@v5
|
|
34
34
|
with:
|
|
35
35
|
fetch-depth: 0
|
|
36
36
|
|
|
37
37
|
- name: Set up Node.js
|
|
38
|
-
uses: actions/setup-node@
|
|
38
|
+
uses: actions/setup-node@v5
|
|
39
39
|
with:
|
|
40
40
|
node-version: 24
|
|
41
41
|
cache: npm
|
|
@@ -44,14 +44,14 @@ jobs:
|
|
|
44
44
|
- name: Upgrade npm
|
|
45
45
|
run: |
|
|
46
46
|
corepack enable
|
|
47
|
-
npm install -g npm@11.
|
|
47
|
+
npm install -g npm@11.6.0
|
|
48
48
|
|
|
49
49
|
- name: Install Node.js dependencies
|
|
50
50
|
run: npm ci
|
|
51
51
|
|
|
52
52
|
# Ensure MkDocs builds successfully
|
|
53
53
|
- name: Set up Python
|
|
54
|
-
uses: actions/setup-python@
|
|
54
|
+
uses: actions/setup-python@v6
|
|
55
55
|
with:
|
|
56
56
|
python-version: '3.13'
|
|
57
57
|
|
|
@@ -82,7 +82,7 @@ jobs:
|
|
|
82
82
|
|
|
83
83
|
steps:
|
|
84
84
|
- name: Download clean source archive
|
|
85
|
-
uses: actions/download-artifact@
|
|
85
|
+
uses: actions/download-artifact@v5
|
|
86
86
|
with:
|
|
87
87
|
name: clean-source
|
|
88
88
|
path: ./
|
|
@@ -94,7 +94,7 @@ jobs:
|
|
|
94
94
|
run: rm clean-source.tar.gz
|
|
95
95
|
|
|
96
96
|
- name: Set up Node.js for npmjs
|
|
97
|
-
uses: actions/setup-node@
|
|
97
|
+
uses: actions/setup-node@v5
|
|
98
98
|
with:
|
|
99
99
|
node-version: 24
|
|
100
100
|
registry-url: https://registry.npmjs.org/
|
|
@@ -104,7 +104,7 @@ jobs:
|
|
|
104
104
|
- name: Upgrade npm
|
|
105
105
|
run: |
|
|
106
106
|
corepack enable
|
|
107
|
-
npm install -g npm@11.
|
|
107
|
+
npm install -g npm@11.6.0
|
|
108
108
|
|
|
109
109
|
- name: Install Node.js dependencies
|
|
110
110
|
run: npm ci
|
|
@@ -114,23 +114,23 @@ jobs:
|
|
|
114
114
|
git config --global user.email "github@sl.neteng.cc"
|
|
115
115
|
git config --global user.name "SunDevil311"
|
|
116
116
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
117
|
+
#- name: Print npm config and registry info
|
|
118
|
+
# run: |
|
|
119
|
+
# echo "π NPM registry (from config):"
|
|
120
|
+
# npm config get registry
|
|
121
121
|
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
# echo "π NPM user config location:"
|
|
123
|
+
# echo "$NPM_CONFIG_USERCONFIG"
|
|
124
124
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
125
|
+
# echo "π .npmrc contents:"
|
|
126
|
+
# cat "$NPM_CONFIG_USERCONFIG" || echo "β No .npmrc found"
|
|
127
|
+
# env:
|
|
128
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
129
129
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
130
|
+
#- name: Verify npm authentication
|
|
131
|
+
# run: npm whoami
|
|
132
|
+
# env:
|
|
133
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
134
134
|
|
|
135
135
|
- name: Publish package to npmjs
|
|
136
136
|
run: npm publish --access public
|
|
@@ -143,7 +143,7 @@ jobs:
|
|
|
143
143
|
|
|
144
144
|
steps:
|
|
145
145
|
- name: Download clean source archive
|
|
146
|
-
uses: actions/download-artifact@
|
|
146
|
+
uses: actions/download-artifact@v5
|
|
147
147
|
with:
|
|
148
148
|
name: clean-source
|
|
149
149
|
path: ./
|
|
@@ -155,7 +155,7 @@ jobs:
|
|
|
155
155
|
run: rm clean-source.tar.gz
|
|
156
156
|
|
|
157
157
|
- name: Set up Node.js for GPR
|
|
158
|
-
uses: actions/setup-node@
|
|
158
|
+
uses: actions/setup-node@v5
|
|
159
159
|
with:
|
|
160
160
|
node-version: 24
|
|
161
161
|
registry-url: https://npm.pkg.github.com/
|
|
@@ -165,7 +165,7 @@ jobs:
|
|
|
165
165
|
- name: Upgrade npm
|
|
166
166
|
run: |
|
|
167
167
|
corepack enable
|
|
168
|
-
npm install -g npm@11.
|
|
168
|
+
npm install -g npm@11.6.0
|
|
169
169
|
|
|
170
170
|
- name: Install Node.js dependencies
|
|
171
171
|
run: npm ci
|
|
@@ -177,25 +177,25 @@ jobs:
|
|
|
177
177
|
|
|
178
178
|
- name: Update package name for GPR
|
|
179
179
|
run: |
|
|
180
|
-
sed -i 's/"name": "
|
|
180
|
+
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/blog"/' package.json
|
|
181
181
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
182
|
+
#- name: Print npm config and registry info
|
|
183
|
+
# run: |
|
|
184
|
+
# echo "π NPM registry (from config):"
|
|
185
|
+
# npm config get registry
|
|
186
186
|
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
# echo "π NPM user config location:"
|
|
188
|
+
# echo "$NPM_CONFIG_USERCONFIG"
|
|
189
189
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
190
|
+
# echo "π .npmrc contents:"
|
|
191
|
+
# cat "$NPM_CONFIG_USERCONFIG" || echo "β No .npmrc found"
|
|
192
|
+
# env:
|
|
193
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
194
194
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
195
|
+
#- name: Verify npm authentication
|
|
196
|
+
# run: npm whoami --registry=https://npm.pkg.github.com/
|
|
197
|
+
# env:
|
|
198
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
199
199
|
|
|
200
200
|
- name: Publish package to GPR
|
|
201
201
|
run: npm publish --registry=https://npm.pkg.github.com/
|
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,47 @@ formatting may vary.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.5.0] - 2025-09-23
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- New blog post: `2025-09-23-sonicwall.md` added to `/src/posts`.
|
|
24
|
+
- Included associated promotional images: `sonicwall-promo.png` and
|
|
25
|
+
`sonicwall-promo.webp`.
|
|
26
|
+
- Added `discord.svg` to `/src/fontawesome/brands`.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- Bumped version to `v1.5.0`.
|
|
31
|
+
- Updated overall site layout to improve readability and navigation.
|
|
32
|
+
- Adjusted styles and templates to support new design structure.
|
|
33
|
+
- Updated Material for MkDocs palette to default to dark mode, with optional
|
|
34
|
+
toggle to light mode.
|
|
35
|
+
- Removed Cookie Consent banner configuration, as this blog sub-site does not
|
|
36
|
+
use cookies.
|
|
37
|
+
- Updated footer to explicitly state that the blog does not use cookies, with
|
|
38
|
+
link to the Privacy Policy.
|
|
39
|
+
- CI workflow updated to use a safer `sed` pattern (`"[^"]*"`) when patching the
|
|
40
|
+
package name in `package.json`.
|
|
41
|
+
- GitHub Actions workflows (`build-and-deploy.yml`, `publish-test.yml`, and
|
|
42
|
+
`publish.yml`) updated to use `npm v11.6.0`.
|
|
43
|
+
- CI workflow updated to use `actions/checkout v5`, `actions/setup-node v5`,
|
|
44
|
+
`actions/setup-python v6`, and `actions/download-artifact v5`.
|
|
45
|
+
- Updated `sitemap.xml` to reflect accurate "Last Modified" dates and correct
|
|
46
|
+
URLs.
|
|
47
|
+
- Corrected fork and clone instructions in `contributing.md`.
|
|
48
|
+
- Upgraded dependencies:
|
|
49
|
+
- `@eslint/js` `^9.32.0` β `^9.36.0`
|
|
50
|
+
- `@eslint/json` `^0.13.1` β `^0.13.2`
|
|
51
|
+
- `browserslist` `^4.25.1` β `^4.26.2`
|
|
52
|
+
- `eslint` `^9.32.0` β `^9.36.0`
|
|
53
|
+
- `globals` `^16.3.0` β `^16.4.0`
|
|
54
|
+
- `stylelint` `^16.22.0` β `^16.24.0`
|
|
55
|
+
- `stylelint-config-recommended` `^16.0.0` β `^17.0.0`
|
|
56
|
+
- `mkdocs-material` `9.6.14` β `9.6.20`
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
19
60
|
## [1.4.0] - 2025-07-27
|
|
20
61
|
|
|
21
62
|
### Changed
|
|
@@ -29,7 +70,7 @@ formatting may vary.
|
|
|
29
70
|
- `2025-06-16-cryptomator.md`
|
|
30
71
|
- `2025-06-23-encryption-eff.md`
|
|
31
72
|
- `2025-07-17-otp-helper.md`
|
|
32
|
-
- Updated sitemap.xml to reflect accurate "Last Modified" dates and correct
|
|
73
|
+
- Updated `sitemap.xml` to reflect accurate "Last Modified" dates and correct
|
|
33
74
|
URLs.
|
|
34
75
|
- Renamed `src/posts/2025-07-24-uk-apple-li.md` to
|
|
35
76
|
`src/posts/2025-07-27-uk-apple.md`.
|
|
@@ -287,7 +328,8 @@ formatting may vary.
|
|
|
287
328
|
|
|
288
329
|
<!-- Link references -->
|
|
289
330
|
|
|
290
|
-
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.
|
|
331
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.0...HEAD
|
|
332
|
+
[1.5.0]: https://github.com/netwk-pro/blog/releases/tag/v1.5.0
|
|
291
333
|
[1.4.0]: https://github.com/netwk-pro/blog/releases/tag/v1.4.0
|
|
292
334
|
[1.3.11]: https://github.com/netwk-pro/blog/releases/tag/v1.3.11
|
|
293
335
|
[1.3.10]: https://github.com/netwk-pro/blog/releases/tag/v1.3.10
|
package/cspell.json
CHANGED
package/mkdocs.yml
CHANGED
|
@@ -14,24 +14,15 @@ theme:
|
|
|
14
14
|
logo: /icon-512x512.png
|
|
15
15
|
favicon: /favicon.svg
|
|
16
16
|
palette:
|
|
17
|
-
#
|
|
18
|
-
-
|
|
19
|
-
primary: amber
|
|
20
|
-
accent: yellow
|
|
21
|
-
toggle:
|
|
22
|
-
icon: material/brightness-auto
|
|
23
|
-
name: Switch to light mode
|
|
24
|
-
# Palette toggle for dark mode
|
|
25
|
-
- media: '(prefers-color-scheme: dark)'
|
|
26
|
-
scheme: slate
|
|
17
|
+
# Default to dark mode
|
|
18
|
+
- scheme: slate
|
|
27
19
|
primary: amber
|
|
28
20
|
accent: yellow
|
|
29
21
|
toggle:
|
|
30
22
|
icon: material/brightness-4
|
|
31
|
-
name: Switch to
|
|
32
|
-
#
|
|
33
|
-
-
|
|
34
|
-
scheme: default
|
|
23
|
+
name: Switch to light mode
|
|
24
|
+
# Optional light mode
|
|
25
|
+
- scheme: default
|
|
35
26
|
primary: amber
|
|
36
27
|
accent: yellow
|
|
37
28
|
toggle:
|
|
@@ -49,44 +40,31 @@ theme:
|
|
|
49
40
|
|
|
50
41
|
extra:
|
|
51
42
|
base_url: /
|
|
52
|
-
|
|
53
|
-
title: Cookie Consent
|
|
54
|
-
description: >-
|
|
55
|
-
We use cookies to recognize your repeated visits and preferences, as well
|
|
56
|
-
as to measure the effectiveness of our documentation and whether users
|
|
57
|
-
find what they're searching for. With your consent, you're helping us to
|
|
58
|
-
make our documentation better.
|
|
59
|
-
cookies:
|
|
60
|
-
analytics:
|
|
61
|
-
name: Google Analytics
|
|
62
|
-
checked: false
|
|
63
|
-
github:
|
|
64
|
-
name: GitHub
|
|
65
|
-
checked: true
|
|
66
|
-
actions:
|
|
67
|
-
- reject
|
|
68
|
-
- accept
|
|
69
|
-
- manage
|
|
43
|
+
#generator: false
|
|
70
44
|
social:
|
|
71
45
|
- icon: fontawesome/brands/instagram
|
|
72
46
|
name: Network Pro on Instagram
|
|
73
|
-
link: https://instagram.com/netwk_pro
|
|
47
|
+
link: https://instagram.com/netwk_pro
|
|
74
48
|
- icon: fontawesome/brands/facebook
|
|
75
49
|
name: Network Pro on Facebook
|
|
76
|
-
link: https://facebook.com/neteng.pro
|
|
50
|
+
link: https://facebook.com/neteng.pro
|
|
77
51
|
- icon: fontawesome/brands/linkedin
|
|
78
52
|
name: Network Pro on LinkedIn
|
|
79
|
-
link: https://linkedin.com/company/netwk-pro
|
|
53
|
+
link: https://linkedin.com/company/netwk-pro
|
|
80
54
|
- icon: fontawesome/brands/mastodon
|
|
81
55
|
name: Network Pro on Mastodon
|
|
82
|
-
link: https://noc.social/@neteng_pro
|
|
56
|
+
link: https://noc.social/@neteng_pro
|
|
57
|
+
- icon: fontawesome/brands/discord
|
|
58
|
+
name: Network Pro on Discord
|
|
59
|
+
link: https://discord.neteng.pro
|
|
83
60
|
- icon: fontawesome/solid/at
|
|
84
61
|
name: Contact Us
|
|
85
62
|
link: https://netwk.pro/contact
|
|
86
63
|
|
|
87
64
|
copyright: >
|
|
88
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™) β
|
|
89
|
-
href="
|
|
65
|
+
Copyright © 2025 Network Pro Strategies (Network Pro™) β This blog
|
|
66
|
+
does not use cookies. See our <a href="https://netwk.pro/privacy">Privacy
|
|
67
|
+
Policy</a> for details.
|
|
90
68
|
|
|
91
69
|
plugins:
|
|
92
70
|
- search
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Proβ’).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -49,20 +49,20 @@
|
|
|
49
49
|
"upgrade": "npx npm-check-updates -u"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@eslint/js": "^9.
|
|
53
|
-
"@eslint/json": "^0.13.
|
|
52
|
+
"@eslint/js": "^9.36.0",
|
|
53
|
+
"@eslint/json": "^0.13.2",
|
|
54
54
|
"autoprefixer": "^10.4.21",
|
|
55
|
-
"browserslist": "^4.
|
|
56
|
-
"eslint": "^9.
|
|
55
|
+
"browserslist": "^4.26.2",
|
|
56
|
+
"eslint": "^9.36.0",
|
|
57
57
|
"eslint-config-prettier": "^10.1.8",
|
|
58
|
-
"globals": "^16.
|
|
58
|
+
"globals": "^16.4.0",
|
|
59
59
|
"markdownlint": "^0.38.0",
|
|
60
60
|
"markdownlint-cli2": "^0.18.1",
|
|
61
61
|
"postcss": "^8.5.6",
|
|
62
62
|
"prettier": "3.6.2",
|
|
63
|
-
"stylelint": "^16.
|
|
63
|
+
"stylelint": "^16.24.0",
|
|
64
64
|
"stylelint-config-html": "^1.1.0",
|
|
65
|
-
"stylelint-config-recommended": "^
|
|
65
|
+
"stylelint-config-recommended": "^17.0.0",
|
|
66
66
|
"stylelint-order": "^7.0.0"
|
|
67
67
|
}
|
|
68
68
|
}
|
package/requirements.txt
CHANGED
package/src/contributing.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
|
-
created:
|
|
4
|
-
updated: 2025-
|
|
3
|
+
created: 2025-06-07
|
|
4
|
+
updated: 2025-09-23
|
|
5
5
|
title: Contributing to Network Proβ’
|
|
6
6
|
summary:
|
|
7
7
|
Instructions for getting involved and contributing to Network Pro Strategies.
|
|
@@ -20,7 +20,7 @@ tags:
|
|
|
20
20
|
# π€ Contributing to Network Pro Strategies
|
|
21
21
|
|
|
22
22
|
**Network Pro Strategies**
|
|
23
|
-
**Effective Date:**
|
|
23
|
+
**Effective Date:** September 23, 2025
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
|
|
@@ -120,16 +120,16 @@ with maintainers first.
|
|
|
120
120
|
`1.` **Fork the repo & set remotes**:
|
|
121
121
|
|
|
122
122
|
```bash
|
|
123
|
-
git clone https://github.com/<your-username>/
|
|
124
|
-
|
|
125
|
-
https://github.com/netwk-pro/
|
|
123
|
+
git clone https://github.com/<your-username>/blog.git
|
|
124
|
+
cd blog
|
|
125
|
+
git remote add upstream https://github.com/netwk-pro/blog.git
|
|
126
126
|
```
|
|
127
127
|
|
|
128
128
|
`2.` **Stay Updated**
|
|
129
129
|
|
|
130
130
|
```bash
|
|
131
|
-
git checkout
|
|
132
|
-
git pull upstream
|
|
131
|
+
git checkout master
|
|
132
|
+
git pull upstream master
|
|
133
133
|
```
|
|
134
134
|
|
|
135
135
|
`3.` **Create a topic branch:**
|
|
@@ -142,8 +142,7 @@ git checkout -b my-feature
|
|
|
142
142
|
|
|
143
143
|
```bash
|
|
144
144
|
npm ci
|
|
145
|
-
npm run
|
|
146
|
-
npm run test
|
|
145
|
+
npm run checkout
|
|
147
146
|
```
|
|
148
147
|
|
|
149
148
|
`5.` **Make your changes**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free 7.0.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M524.5 133.8C524.3 133.5 524.1 133.2 523.7 133.1C485.6 115.6 445.3 103.1 404 96C403.6 95.9 403.2 96 402.9 96.1C402.6 96.2 402.3 96.5 402.1 96.9C396.6 106.8 391.6 117.1 387.2 127.5C342.6 120.7 297.3 120.7 252.8 127.5C248.3 117 243.3 106.8 237.7 96.9C237.5 96.6 237.2 96.3 236.9 96.1C236.6 95.9 236.2 95.9 235.8 95.9C194.5 103 154.2 115.5 116.1 133C115.8 133.1 115.5 133.4 115.3 133.7C39.1 247.5 18.2 358.6 28.4 468.2C28.4 468.5 28.5 468.7 28.6 469C28.7 469.3 28.9 469.4 29.1 469.6C73.5 502.5 123.1 527.6 175.9 543.8C176.3 543.9 176.7 543.9 177 543.8C177.3 543.7 177.7 543.4 177.9 543.1C189.2 527.7 199.3 511.3 207.9 494.3C208 494.1 208.1 493.8 208.1 493.5C208.1 493.2 208.1 493 208 492.7C207.9 492.4 207.8 492.2 207.6 492.1C207.4 492 207.2 491.8 206.9 491.7C191.1 485.6 175.7 478.3 161 469.8C160.7 469.6 160.5 469.4 160.3 469.2C160.1 469 160 468.6 160 468.3C160 468 160 467.7 160.2 467.4C160.4 467.1 160.5 466.9 160.8 466.7C163.9 464.4 167 462 169.9 459.6C170.2 459.4 170.5 459.2 170.8 459.2C171.1 459.2 171.5 459.2 171.8 459.3C268 503.2 372.2 503.2 467.3 459.3C467.6 459.2 468 459.1 468.3 459.1C468.6 459.1 469 459.3 469.2 459.5C472.1 461.9 475.2 464.4 478.3 466.7C478.5 466.9 478.7 467.1 478.9 467.4C479.1 467.7 479.1 468 479.1 468.3C479.1 468.6 479 468.9 478.8 469.2C478.6 469.5 478.4 469.7 478.2 469.8C463.5 478.4 448.2 485.7 432.3 491.6C432.1 491.7 431.8 491.8 431.6 492C431.4 492.2 431.3 492.4 431.2 492.7C431.1 493 431.1 493.2 431.1 493.5C431.1 493.8 431.2 494 431.3 494.3C440.1 511.3 450.1 527.6 461.3 543.1C461.5 543.4 461.9 543.7 462.2 543.8C462.5 543.9 463 543.9 463.3 543.8C516.2 527.6 565.9 502.5 610.4 469.6C610.6 469.4 610.8 469.2 610.9 469C611 468.8 611.1 468.5 611.1 468.2C623.4 341.4 590.6 231.3 524.2 133.7zM222.5 401.5C193.5 401.5 169.7 374.9 169.7 342.3C169.7 309.7 193.1 283.1 222.5 283.1C252.2 283.1 275.8 309.9 275.3 342.3C275.3 375 251.9 401.5 222.5 401.5zM417.9 401.5C388.9 401.5 365.1 374.9 365.1 342.3C365.1 309.7 388.5 283.1 417.9 283.1C447.6 283.1 471.2 309.9 470.7 342.3C470.7 375 447.5 401.5 417.9 401.5z"/></svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
---
|
|
2
|
+
date:
|
|
3
|
+
created: 2025-09-23
|
|
4
|
+
title: 'Cyber Alert Update - SonicWall Security Breach: What You Need to Know'
|
|
5
|
+
summary:
|
|
6
|
+
SonicWall has issued an urgent advisory after experiencing a security incident
|
|
7
|
+
involving unauthorized access to its internal systems.
|
|
8
|
+
authors:
|
|
9
|
+
- team
|
|
10
|
+
categories:
|
|
11
|
+
- Security
|
|
12
|
+
tags:
|
|
13
|
+
- cybersecurity
|
|
14
|
+
- sonicwall
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Cyber Alert Update
|
|
18
|
+
|
|
19
|
+
## π¨ SonicWall Security Breach: What You Need to Know
|
|
20
|
+
|
|
21
|
+
SonicWall has issued an urgent advisory after experiencing a security incident
|
|
22
|
+
involving unauthorized access to its internal systems. β οΈ
|
|
23
|
+
|
|
24
|
+
Theyβre actively investigating and have taken containment actions while urging
|
|
25
|
+
customers to review their security configurations and follow best practices to
|
|
26
|
+
stay protected. π‘οΈ
|
|
27
|
+
|
|
28
|
+
<!-- more -->
|
|
29
|
+
|
|
30
|
+
If you use SonicWall products or services, stay alert and monitor updates from
|
|
31
|
+
official channels.
|
|
32
|
+
|
|
33
|
+
π§ Cyber hygiene is not optional. One breach can affect thousands. Keep systems
|
|
34
|
+
updated, passwords secure, and logs monitored!
|
|
35
|
+
|
|
36
|
+
π CISA Advisory:
|
|
37
|
+
[cisa.gov/news-events/alerts/2025/09/22/sonicwall-releases-advisory-customers-after-security-incident](https://www.cisa.gov/news-events/alerts/2025/09/22/sonicwall-releases-advisory-customers-after-security-incident)
|
|
38
|
+
|
|
39
|
+
π SonicWall KB:
|
|
40
|
+
[sonicwall.com/support/knowledge-base/mysonicwall-cloud-backup-file-incident/250915160910330](https://www.sonicwall.com/support/knowledge-base/mysonicwall-cloud-backup-file-incident/250915160910330)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
<figure class="poster-figure">
|
|
45
|
+
<source srcset="/img/sonicwall-promo.webp" type="image/webp" />
|
|
46
|
+
<img src="/img/sonicwall-promo.png" alt="SonicWall Security Breach: What You Need to Know" style="width: 60%; height: 60%;">
|
|
47
|
+
<figcaption>SonicWall Security Breach β featured visual</figcaption>
|
|
48
|
+
</figure>
|
|
49
|
+
|
|
50
|
+
<!-- cspell:ignore mysonicwall -->
|
package/src/sitemap.xml
CHANGED
|
@@ -7,14 +7,26 @@
|
|
|
7
7
|
|
|
8
8
|
<loc>https://blog.netwk.pro</loc>
|
|
9
9
|
|
|
10
|
-
<lastmod>2025-
|
|
10
|
+
<lastmod>2025-09-23</lastmod>
|
|
11
11
|
|
|
12
|
-
<changefreq>
|
|
12
|
+
<changefreq>monthly</changefreq>
|
|
13
13
|
|
|
14
14
|
<priority>1.0</priority>
|
|
15
15
|
|
|
16
16
|
</url>
|
|
17
17
|
|
|
18
|
+
<url>
|
|
19
|
+
|
|
20
|
+
<loc>https://blog.netwk.pro/2025/09/23/cyber-alert-update---sonicwall-security-breach-what-you-need-to-know/</loc>
|
|
21
|
+
|
|
22
|
+
<lastmod>2025-09-23</lastmod>
|
|
23
|
+
|
|
24
|
+
<changefreq>monthly</changefreq>
|
|
25
|
+
|
|
26
|
+
<priority>0.8</priority>
|
|
27
|
+
|
|
28
|
+
</url>
|
|
29
|
+
|
|
18
30
|
<url>
|
|
19
31
|
|
|
20
32
|
<loc>https://blog.netwk.pro/2025/07/27/uk-reverses-course-on-apple-cloud-encryption-demands/</loc>
|
|
@@ -23,7 +35,7 @@
|
|
|
23
35
|
|
|
24
36
|
<changefreq>monthly</changefreq>
|
|
25
37
|
|
|
26
|
-
<priority>0.
|
|
38
|
+
<priority>0.7</priority>
|
|
27
39
|
|
|
28
40
|
</url>
|
|
29
41
|
|
|
@@ -37,7 +49,7 @@
|
|
|
37
49
|
|
|
38
50
|
<changefreq>monthly</changefreq>
|
|
39
51
|
|
|
40
|
-
<priority>0.
|
|
52
|
+
<priority>0.7</priority>
|
|
41
53
|
|
|
42
54
|
</url>
|
|
43
55
|
|
|
@@ -49,7 +61,7 @@
|
|
|
49
61
|
|
|
50
62
|
<changefreq>monthly</changefreq>
|
|
51
63
|
|
|
52
|
-
<priority>0.
|
|
64
|
+
<priority>0.7</priority>
|
|
53
65
|
|
|
54
66
|
</url>
|
|
55
67
|
|
|
@@ -61,7 +73,7 @@
|
|
|
61
73
|
|
|
62
74
|
<changefreq>monthly</changefreq>
|
|
63
75
|
|
|
64
|
-
<priority>0.
|
|
76
|
+
<priority>0.7</priority>
|
|
65
77
|
|
|
66
78
|
</url>
|
|
67
79
|
|
|
@@ -73,7 +85,7 @@
|
|
|
73
85
|
|
|
74
86
|
<changefreq>monthly</changefreq>
|
|
75
87
|
|
|
76
|
-
<priority>0.
|
|
88
|
+
<priority>0.7</priority>
|
|
77
89
|
|
|
78
90
|
</url>
|
|
79
91
|
|
|
@@ -85,7 +97,7 @@
|
|
|
85
97
|
|
|
86
98
|
<changefreq>monthly</changefreq>
|
|
87
99
|
|
|
88
|
-
<priority>0.
|
|
100
|
+
<priority>0.7</priority>
|
|
89
101
|
|
|
90
102
|
</url>
|
|
91
103
|
|
|
@@ -285,7 +297,7 @@
|
|
|
285
297
|
|
|
286
298
|
<loc>https://blog.netwk.pro/category/security/</loc>
|
|
287
299
|
|
|
288
|
-
<lastmod>2025-
|
|
300
|
+
<lastmod>2025-09-23</lastmod>
|
|
289
301
|
|
|
290
302
|
<changefreq>monthly</changefreq>
|
|
291
303
|
|
|
@@ -297,9 +309,9 @@
|
|
|
297
309
|
|
|
298
310
|
<loc>https://blog.netwk.pro/archive/2025/</loc>
|
|
299
311
|
|
|
300
|
-
<lastmod>2025-
|
|
312
|
+
<lastmod>2025-09-23</lastmod>
|
|
301
313
|
|
|
302
|
-
<changefreq>
|
|
314
|
+
<changefreq>monthly</changefreq>
|
|
303
315
|
|
|
304
316
|
<priority>0.5</priority>
|
|
305
317
|
|
|
@@ -309,9 +321,9 @@
|
|
|
309
321
|
|
|
310
322
|
<loc>https://blog.netwk.pro/tags/</loc>
|
|
311
323
|
|
|
312
|
-
<lastmod>2025-
|
|
324
|
+
<lastmod>2025-09-23</lastmod>
|
|
313
325
|
|
|
314
|
-
<changefreq>
|
|
326
|
+
<changefreq>monthly</changefreq>
|
|
315
327
|
|
|
316
328
|
<priority>0.5</priority>
|
|
317
329
|
|
|
@@ -333,7 +345,7 @@
|
|
|
333
345
|
|
|
334
346
|
<loc>https://blog.netwk.pro/contributing/</loc>
|
|
335
347
|
|
|
336
|
-
<lastmod>2025-
|
|
348
|
+
<lastmod>2025-09-23</lastmod>
|
|
337
349
|
|
|
338
350
|
<changefreq>monthly</changefreq>
|
|
339
351
|
|