@networkpro/blog 1.3.11 → 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/COMMIT_GUIDE.md +8 -0
- package/.github/workflows/build-and-deploy.yml +9 -5
- package/.github/workflows/publish-test.yml +22 -1
- package/.github/workflows/publish.yml +41 -47
- package/CHANGELOG.md +69 -1
- 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-05-29-heliboard.md +2 -2
- package/src/posts/2025-05-29-msauth.md +2 -2
- package/src/posts/2025-06-08-squircle.md +2 -2
- package/src/posts/2025-06-12-backdoor.md +2 -1
- package/src/posts/2025-06-16-cryptomator.md +2 -1
- package/src/posts/2025-06-23-encryption-eff.md +1 -1
- package/src/posts/2025-07-17-otp-helper.md +2 -1
- package/src/posts/{2025-07-24-uk-apple-li.md → 2025-07-27-uk-apple.md} +2 -1
- package/src/posts/2025-09-23-sonicwall.md +50 -0
- package/src/posts/secure-secure-shell.md +4 -3
- package/src/sitemap.xml +35 -23
package/.github/COMMIT_GUIDE.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
<!-- =====================================================================
|
|
2
|
+
.github/COMMIT_GUIDE.md
|
|
3
|
+
|
|
4
|
+
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
+
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
+
This file is part of Network Pro.
|
|
7
|
+
====================================================================== -->
|
|
8
|
+
|
|
1
9
|
# Commit Message Guide
|
|
2
10
|
|
|
3
11
|
To maintain clarity and consistency, use one of the following commit types when
|
|
@@ -33,18 +33,22 @@ 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
|
-
node-version:
|
|
44
|
-
check-latest: true
|
|
43
|
+
node-version: 24
|
|
45
44
|
cache: npm
|
|
46
45
|
cache-dependency-path: package-lock.json
|
|
47
46
|
|
|
47
|
+
- name: Upgrade npm
|
|
48
|
+
run: |
|
|
49
|
+
corepack enable
|
|
50
|
+
npm install -g npm@11.6.0
|
|
51
|
+
|
|
48
52
|
- name: Set up Pages
|
|
49
53
|
uses: actions/configure-pages@v5
|
|
50
54
|
|
|
@@ -53,7 +57,7 @@ jobs:
|
|
|
53
57
|
|
|
54
58
|
# Begin Material for MkDocs setup
|
|
55
59
|
- name: Set up Python
|
|
56
|
-
uses: actions/setup-python@
|
|
60
|
+
uses: actions/setup-python@v6
|
|
57
61
|
with:
|
|
58
62
|
python-version: '3.13'
|
|
59
63
|
|
|
@@ -39,6 +39,11 @@ jobs:
|
|
|
39
39
|
cache: npm
|
|
40
40
|
cache-dependency-path: package-lock.json
|
|
41
41
|
|
|
42
|
+
- name: Upgrade npm
|
|
43
|
+
run: |
|
|
44
|
+
corepack enable
|
|
45
|
+
npm install -g npm@11.6.0
|
|
46
|
+
|
|
42
47
|
- name: Install Node.js dependencies
|
|
43
48
|
run: npm ci
|
|
44
49
|
|
|
@@ -99,6 +104,14 @@ jobs:
|
|
|
99
104
|
echo "Warning: package-lock.json not found";
|
|
100
105
|
fi
|
|
101
106
|
|
|
107
|
+
- name: Upgrade npm
|
|
108
|
+
run: |
|
|
109
|
+
corepack enable
|
|
110
|
+
npm install -g npm@11.6.0
|
|
111
|
+
|
|
112
|
+
- name: Install Node.js dependencies
|
|
113
|
+
run: npm ci
|
|
114
|
+
|
|
102
115
|
- name: Set up Git user
|
|
103
116
|
run: |
|
|
104
117
|
git config --global user.email "github@sl.neteng.cc"
|
|
@@ -139,6 +152,14 @@ jobs:
|
|
|
139
152
|
echo "Warning: package-lock.json not found";
|
|
140
153
|
fi
|
|
141
154
|
|
|
155
|
+
- name: Upgrade npm
|
|
156
|
+
run: |
|
|
157
|
+
corepack enable
|
|
158
|
+
npm install -g npm@11.6.0
|
|
159
|
+
|
|
160
|
+
- name: Install Node.js dependencies
|
|
161
|
+
run: npm ci
|
|
162
|
+
|
|
142
163
|
- name: Set up Git user
|
|
143
164
|
run: |
|
|
144
165
|
git config --global user.email "github@sl.neteng.cc"
|
|
@@ -146,7 +167,7 @@ jobs:
|
|
|
146
167
|
|
|
147
168
|
- name: Update package name for GPR
|
|
148
169
|
run: |
|
|
149
|
-
sed -i 's/"name": "
|
|
170
|
+
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/blog"/' package.json
|
|
150
171
|
|
|
151
172
|
- name: Publish package to GPR
|
|
152
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
|
|
|
@@ -63,8 +63,8 @@ jobs:
|
|
|
63
63
|
run: mkdocs build
|
|
64
64
|
|
|
65
65
|
# Remove build artifacts
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
- name: Clean build directory
|
|
67
|
+
run: rm -rf build/
|
|
68
68
|
|
|
69
69
|
# Create Git archive of version-controlled files
|
|
70
70
|
- name: Create clean source archive
|
|
@@ -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,26 +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
|
-
|
|
121
|
-
|
|
122
|
-
echo "🔍 NPM user config location:"
|
|
123
|
-
echo "$NPM_CONFIG_USERCONFIG"
|
|
117
|
+
#- name: Print npm config and registry info
|
|
118
|
+
# run: |
|
|
119
|
+
# echo "🔍 NPM registry (from config):"
|
|
120
|
+
# npm config get registry
|
|
124
121
|
|
|
125
|
-
|
|
126
|
-
|
|
122
|
+
# echo "🔍 NPM user config location:"
|
|
123
|
+
# echo "$NPM_CONFIG_USERCONFIG"
|
|
127
124
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
125
|
+
# echo "🔍 .npmrc contents:"
|
|
126
|
+
# cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
127
|
+
# env:
|
|
128
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
132
129
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
130
|
+
#- name: Verify npm authentication
|
|
131
|
+
# run: npm whoami
|
|
132
|
+
# env:
|
|
133
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
137
134
|
|
|
138
135
|
- name: Publish package to npmjs
|
|
139
136
|
run: npm publish --access public
|
|
@@ -146,7 +143,7 @@ jobs:
|
|
|
146
143
|
|
|
147
144
|
steps:
|
|
148
145
|
- name: Download clean source archive
|
|
149
|
-
uses: actions/download-artifact@
|
|
146
|
+
uses: actions/download-artifact@v5
|
|
150
147
|
with:
|
|
151
148
|
name: clean-source
|
|
152
149
|
path: ./
|
|
@@ -158,7 +155,7 @@ jobs:
|
|
|
158
155
|
run: rm clean-source.tar.gz
|
|
159
156
|
|
|
160
157
|
- name: Set up Node.js for GPR
|
|
161
|
-
uses: actions/setup-node@
|
|
158
|
+
uses: actions/setup-node@v5
|
|
162
159
|
with:
|
|
163
160
|
node-version: 24
|
|
164
161
|
registry-url: https://npm.pkg.github.com/
|
|
@@ -168,7 +165,7 @@ jobs:
|
|
|
168
165
|
- name: Upgrade npm
|
|
169
166
|
run: |
|
|
170
167
|
corepack enable
|
|
171
|
-
npm install -g npm@11.
|
|
168
|
+
npm install -g npm@11.6.0
|
|
172
169
|
|
|
173
170
|
- name: Install Node.js dependencies
|
|
174
171
|
run: npm ci
|
|
@@ -180,28 +177,25 @@ jobs:
|
|
|
180
177
|
|
|
181
178
|
- name: Update package name for GPR
|
|
182
179
|
run: |
|
|
183
|
-
sed -i 's/"name": "
|
|
180
|
+
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/blog"/' package.json
|
|
184
181
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
echo "🔍 NPM user config location:"
|
|
191
|
-
echo "$NPM_CONFIG_USERCONFIG"
|
|
182
|
+
#- name: Print npm config and registry info
|
|
183
|
+
# run: |
|
|
184
|
+
# echo "🔍 NPM registry (from config):"
|
|
185
|
+
# npm config get registry
|
|
192
186
|
|
|
193
|
-
|
|
194
|
-
|
|
187
|
+
# echo "🔍 NPM user config location:"
|
|
188
|
+
# echo "$NPM_CONFIG_USERCONFIG"
|
|
195
189
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
190
|
+
# echo "🔍 .npmrc contents:"
|
|
191
|
+
# cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
192
|
+
# env:
|
|
193
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
200
194
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
195
|
+
#- name: Verify npm authentication
|
|
196
|
+
# run: npm whoami --registry=https://npm.pkg.github.com/
|
|
197
|
+
# env:
|
|
198
|
+
# NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
205
199
|
|
|
206
200
|
- name: Publish package to GPR
|
|
207
201
|
run: npm publish --registry=https://npm.pkg.github.com/
|
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,72 @@ 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
|
+
|
|
60
|
+
## [1.4.0] - 2025-07-27
|
|
61
|
+
|
|
62
|
+
### Changed
|
|
63
|
+
|
|
64
|
+
- Bumped version to `v1.4.0`.
|
|
65
|
+
- Cleaned up tags in the following files, located in `src/posts`:
|
|
66
|
+
- `2025-05-29-heliboard.md`
|
|
67
|
+
- `2025-05-29-msauth.md`
|
|
68
|
+
- `2025-06-08-squircle.md`
|
|
69
|
+
- `2025-06-12-backdoor.md`
|
|
70
|
+
- `2025-06-16-cryptomator.md`
|
|
71
|
+
- `2025-06-23-encryption-eff.md`
|
|
72
|
+
- `2025-07-17-otp-helper.md`
|
|
73
|
+
- Updated `sitemap.xml` to reflect accurate "Last Modified" dates and correct
|
|
74
|
+
URLs.
|
|
75
|
+
- Renamed `src/posts/2025-07-24-uk-apple-li.md` to
|
|
76
|
+
`src/posts/2025-07-27-uk-apple.md`.
|
|
77
|
+
- Updated `.github/workflows/build-and-deploy.yml` to utilize `Node.js` `v24`
|
|
78
|
+
and `npm` `v11.4.2`.
|
|
79
|
+
- Updated `.github/workflows/publish.yml` and
|
|
80
|
+
`.github/workflows/publish-test.yml` to utilize `npm` `v11.4.2`.
|
|
81
|
+
- Added standardized header to `.github/COMMIT_GUIDE.md`.
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
19
85
|
## [1.3.11] - 2025-07-27
|
|
20
86
|
|
|
21
87
|
### Fixed
|
|
@@ -262,7 +328,9 @@ formatting may vary.
|
|
|
262
328
|
|
|
263
329
|
<!-- Link references -->
|
|
264
330
|
|
|
265
|
-
[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
|
|
333
|
+
[1.4.0]: https://github.com/netwk-pro/blog/releases/tag/v1.4.0
|
|
266
334
|
[1.3.11]: https://github.com/netwk-pro/blog/releases/tag/v1.3.11
|
|
267
335
|
[1.3.10]: https://github.com/netwk-pro/blog/releases/tag/v1.3.10
|
|
268
336
|
[1.3.9]: https://github.com/netwk-pro/blog/releases/tag/v1.3.9
|
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
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-05-29
|
|
4
|
-
updated: 2025-
|
|
4
|
+
updated: 2025-07-27
|
|
5
5
|
title: Microsoft Authenticator Users - Major Change Incoming
|
|
6
6
|
summary:
|
|
7
7
|
Microsoft Authenticator is phasing out its password autofill sync feature by
|
|
@@ -12,7 +12,7 @@ categories:
|
|
|
12
12
|
- Open-Source
|
|
13
13
|
- Security
|
|
14
14
|
tags:
|
|
15
|
-
-
|
|
15
|
+
- cybersecurity
|
|
16
16
|
- mfa
|
|
17
17
|
- microsoft
|
|
18
18
|
- ente-auth
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-08
|
|
4
|
-
updated: 2025-
|
|
5
|
-
title: FOSS Spotlight
|
|
4
|
+
updated: 2025-07-27
|
|
5
|
+
title: 'FOSS Spotlight: Squircle CE'
|
|
6
6
|
summary:
|
|
7
7
|
Looking for a lightweight, open-source text editor that actually respects your
|
|
8
8
|
privacy and still packs modern power? Meet Squircle CE!
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-12
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: What’s a Backdoor in Encryption?
|
|
5
6
|
summary:
|
|
6
7
|
What's a Backdoor in Encryption? Why It Matters to Everyone Using the Internet
|
|
@@ -10,7 +11,7 @@ categories:
|
|
|
10
11
|
- Security
|
|
11
12
|
- Privacy
|
|
12
13
|
tags:
|
|
13
|
-
-
|
|
14
|
+
- cybersecurity
|
|
14
15
|
- privacy
|
|
15
16
|
- encryption
|
|
16
17
|
- e2ee
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-16
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'FOSS Spotlight: Cryptomator'
|
|
5
6
|
summary: 'FOSS Spotlight: Cryptomator - Vault Up Your Cloud Privacy'
|
|
6
7
|
authors:
|
|
@@ -16,7 +17,7 @@ tags:
|
|
|
16
17
|
- foss-spotlight
|
|
17
18
|
- open-source
|
|
18
19
|
- privacy
|
|
19
|
-
-
|
|
20
|
+
- cybersecurity
|
|
20
21
|
- android
|
|
21
22
|
- windows
|
|
22
23
|
- linux
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-23
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'Encryption is not a loophole'
|
|
5
6
|
summary:
|
|
6
7
|
Encryption is not a loophole. It's a lifeline. Act now to protect encryption!
|
|
@@ -12,7 +13,6 @@ categories:
|
|
|
12
13
|
- Policy
|
|
13
14
|
tags:
|
|
14
15
|
- privacy
|
|
15
|
-
- security
|
|
16
16
|
- cybersecurity
|
|
17
17
|
- encryption
|
|
18
18
|
- eff
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-07-17
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'FOSS Spotlight: Copy SMS Code - OTP Helper'
|
|
5
6
|
summary:
|
|
6
7
|
Copy SMS Code – OTP Helper is a minimalist Android app that takes care of
|
|
@@ -16,7 +17,7 @@ tags:
|
|
|
16
17
|
- foss-spotlight
|
|
17
18
|
- open-source
|
|
18
19
|
- privacy
|
|
19
|
-
-
|
|
20
|
+
- cybersecurity
|
|
20
21
|
- android
|
|
21
22
|
- otp-helper
|
|
22
23
|
- sms
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-07-27
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'UK Reverses Course on Apple Cloud Encryption Demands'
|
|
5
6
|
summary:
|
|
6
7
|
The UK government has paused its proposal to compel Apple to weaken encryption
|
|
@@ -24,7 +25,7 @@ tags:
|
|
|
24
25
|
|
|
25
26
|
# 🔒 UK Reverses Course on Apple Cloud Encryption Demands
|
|
26
27
|
|
|
27
|
-
## 📢 _Important update for tech, legal, and policy
|
|
28
|
+
## 📢 _Important update for tech, legal, and policy professionals_
|
|
28
29
|
|
|
29
30
|
The UK government has **paused its proposal** to compel Apple to **weaken
|
|
30
31
|
encryption on its cloud storage services** — a move that would have had sweeping
|
|
@@ -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 -->
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2015-01-04
|
|
4
|
-
updated: 2025-
|
|
4
|
+
updated: 2025-07-27
|
|
5
5
|
title: Secure Secure Shell
|
|
6
6
|
summary: Secure shell (SSHD) hardening guide.
|
|
7
7
|
authors:
|
|
8
8
|
- team
|
|
9
9
|
categories:
|
|
10
10
|
- Security
|
|
11
|
+
- Implementation
|
|
11
12
|
tags:
|
|
12
|
-
-
|
|
13
|
-
-
|
|
13
|
+
- cybersecurity
|
|
14
|
+
- guides
|
|
14
15
|
---
|
|
15
16
|
|
|
16
17
|
# Secure Secure Shell
|
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
|
|
|
@@ -33,11 +45,11 @@
|
|
|
33
45
|
|
|
34
46
|
<loc>https://blog.netwk.pro/2025/07/17/foss-spotlight-copy-sms-code---otp-helper/</loc>
|
|
35
47
|
|
|
36
|
-
<lastmod>2025-07-
|
|
48
|
+
<lastmod>2025-07-27</lastmod>
|
|
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
|
|
|
@@ -93,7 +105,7 @@
|
|
|
93
105
|
|
|
94
106
|
<loc>https://blog.netwk.pro/2025/06/23/encryption-is-not-a-loophole/</loc>
|
|
95
107
|
|
|
96
|
-
<lastmod>2025-
|
|
108
|
+
<lastmod>2025-07-27</lastmod>
|
|
97
109
|
|
|
98
110
|
<changefreq>monthly</changefreq>
|
|
99
111
|
|
|
@@ -105,7 +117,7 @@
|
|
|
105
117
|
|
|
106
118
|
<loc>https://blog.netwk.pro/2025/06/16/foss-spotlight-cryptomator/</loc>
|
|
107
119
|
|
|
108
|
-
<lastmod>2025-
|
|
120
|
+
<lastmod>2025-07-27</lastmod>
|
|
109
121
|
|
|
110
122
|
<changefreq>monthly</changefreq>
|
|
111
123
|
|
|
@@ -117,7 +129,7 @@
|
|
|
117
129
|
|
|
118
130
|
<loc>https://blog.netwk.pro/2025/06/12/whats-a-backdoor-in-encryption/</loc>
|
|
119
131
|
|
|
120
|
-
<lastmod>2025-
|
|
132
|
+
<lastmod>2025-07-27</lastmod>
|
|
121
133
|
|
|
122
134
|
<changefreq>monthly</changefreq>
|
|
123
135
|
|
|
@@ -127,9 +139,9 @@
|
|
|
127
139
|
|
|
128
140
|
<url>
|
|
129
141
|
|
|
130
|
-
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight
|
|
142
|
+
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight-squircle-ce/</loc>
|
|
131
143
|
|
|
132
|
-
<lastmod>2025-
|
|
144
|
+
<lastmod>2025-07-27</lastmod>
|
|
133
145
|
|
|
134
146
|
<changefreq>monthly</changefreq>
|
|
135
147
|
|
|
@@ -163,9 +175,9 @@
|
|
|
163
175
|
|
|
164
176
|
<url>
|
|
165
177
|
|
|
166
|
-
<loc>https://blog.netwk.pro/2025/05/29/foss-spotlight
|
|
178
|
+
<loc>https://blog.netwk.pro/2025/05/29/foss-spotlight-heliboard/</loc>
|
|
167
179
|
|
|
168
|
-
<lastmod>2025-
|
|
180
|
+
<lastmod>2025-07-27</lastmod>
|
|
169
181
|
|
|
170
182
|
<changefreq>monthly</changefreq>
|
|
171
183
|
|
|
@@ -177,7 +189,7 @@
|
|
|
177
189
|
|
|
178
190
|
<loc>https://blog.netwk.pro/2025/05/29/microsoft-authenticator-users---major-change-incoming/</loc>
|
|
179
191
|
|
|
180
|
-
<lastmod>2025-
|
|
192
|
+
<lastmod>2025-07-27</lastmod>
|
|
181
193
|
|
|
182
194
|
<changefreq>monthly</changefreq>
|
|
183
195
|
|
|
@@ -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
|
|