@networkpro/blog 1.3.9 → 1.4.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 +6 -2
- package/.github/workflows/publish-test.yml +21 -0
- package/.github/workflows/publish.yml +5 -11
- package/CHANGELOG.md +57 -1
- package/cspell.json +1 -0
- package/package.json +6 -6
- package/src/img/uk-apple-promo.png +0 -0
- package/src/img/uk-apple-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-27-uk-apple.md +70 -0
- package/src/posts/secure-secure-shell.md +4 -3
- package/src/sitemap.xml +25 -11
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
|
|
@@ -40,11 +40,15 @@ jobs:
|
|
|
40
40
|
- name: Set up Node.js
|
|
41
41
|
uses: actions/setup-node@v4
|
|
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.4.2
|
|
51
|
+
|
|
48
52
|
- name: Set up Pages
|
|
49
53
|
uses: actions/configure-pages@v5
|
|
50
54
|
|
|
@@ -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.4.2
|
|
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.4.2
|
|
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.4.2
|
|
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"
|
|
@@ -44,7 +44,7 @@ jobs:
|
|
|
44
44
|
- name: Upgrade npm
|
|
45
45
|
run: |
|
|
46
46
|
corepack enable
|
|
47
|
-
npm install -g npm@11.4.
|
|
47
|
+
npm install -g npm@11.4.2
|
|
48
48
|
|
|
49
49
|
- name: Install Node.js dependencies
|
|
50
50
|
run: npm ci
|
|
@@ -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
|
|
@@ -104,7 +104,7 @@ jobs:
|
|
|
104
104
|
- name: Upgrade npm
|
|
105
105
|
run: |
|
|
106
106
|
corepack enable
|
|
107
|
-
npm install -g npm@11.4.
|
|
107
|
+
npm install -g npm@11.4.2
|
|
108
108
|
|
|
109
109
|
- name: Install Node.js dependencies
|
|
110
110
|
run: npm ci
|
|
@@ -124,9 +124,6 @@ jobs:
|
|
|
124
124
|
|
|
125
125
|
echo "🔍 .npmrc contents:"
|
|
126
126
|
cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
127
|
-
|
|
128
|
-
echo "🔐 Token prefix:"
|
|
129
|
-
echo "${NODE_AUTH_TOKEN:0:4}********"
|
|
130
127
|
env:
|
|
131
128
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
132
129
|
|
|
@@ -168,7 +165,7 @@ jobs:
|
|
|
168
165
|
- name: Upgrade npm
|
|
169
166
|
run: |
|
|
170
167
|
corepack enable
|
|
171
|
-
npm install -g npm@11.4.
|
|
168
|
+
npm install -g npm@11.4.2
|
|
172
169
|
|
|
173
170
|
- name: Install Node.js dependencies
|
|
174
171
|
run: npm ci
|
|
@@ -192,9 +189,6 @@ jobs:
|
|
|
192
189
|
|
|
193
190
|
echo "🔍 .npmrc contents:"
|
|
194
191
|
cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
195
|
-
|
|
196
|
-
echo "🔐 Token prefix:"
|
|
197
|
-
echo "${NODE_AUTH_TOKEN:0:4}********"
|
|
198
192
|
env:
|
|
199
193
|
NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
200
194
|
|
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,59 @@ formatting may vary.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.4.0] - 2025-07-27
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Bumped version to `v1.4.0`.
|
|
24
|
+
- Cleaned up tags in the following files, located in `src/posts`:
|
|
25
|
+
- `2025-05-29-heliboard.md`
|
|
26
|
+
- `2025-05-29-msauth.md`
|
|
27
|
+
- `2025-06-08-squircle.md`
|
|
28
|
+
- `2025-06-12-backdoor.md`
|
|
29
|
+
- `2025-06-16-cryptomator.md`
|
|
30
|
+
- `2025-06-23-encryption-eff.md`
|
|
31
|
+
- `2025-07-17-otp-helper.md`
|
|
32
|
+
- Updated sitemap.xml to reflect accurate "Last Modified" dates and correct
|
|
33
|
+
URLs.
|
|
34
|
+
- Renamed `src/posts/2025-07-24-uk-apple-li.md` to
|
|
35
|
+
`src/posts/2025-07-27-uk-apple.md`.
|
|
36
|
+
- Updated `.github/workflows/build-and-deploy.yml` to utilize `Node.js` `v24`
|
|
37
|
+
and `npm` `v11.4.2`.
|
|
38
|
+
- Updated `.github/workflows/publish.yml` and
|
|
39
|
+
`.github/workflows/publish-test.yml` to utilize `npm` `v11.4.2`.
|
|
40
|
+
- Added standardized header to `.github/COMMIT_GUIDE.md`.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## [1.3.11] - 2025-07-27
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- Bumped version to `v1.3.11`
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## [1.3.10] - 2025-07-27
|
|
53
|
+
|
|
54
|
+
### Added
|
|
55
|
+
|
|
56
|
+
- New blog post: `2025-07-27-uk-apple.md` added to `/src/posts`.
|
|
57
|
+
- Included associated promotional images: `uk-apple-promo.png` and
|
|
58
|
+
`uk-apple-promo.webp`.
|
|
59
|
+
|
|
60
|
+
### Changed
|
|
61
|
+
|
|
62
|
+
- Sitemap updated to include new posts.
|
|
63
|
+
- Upgraded dependencies:
|
|
64
|
+
- `@eslint/js` `^9.31.0` → `^9.32.0`
|
|
65
|
+
- `@eslint/json` `^0.13.0` → `^0.13.1`
|
|
66
|
+
- `eslint` `^9.31.0` → `^9.32.0`
|
|
67
|
+
- `eslint-config-prettier` `^10.1.5` → `^10.1.8`
|
|
68
|
+
- `stylelint` `^16.21.1` → `^16.22.0`
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
19
72
|
## [1.3.9] - 2025-07-17
|
|
20
73
|
|
|
21
74
|
### Added
|
|
@@ -234,7 +287,10 @@ formatting may vary.
|
|
|
234
287
|
|
|
235
288
|
<!-- Link references -->
|
|
236
289
|
|
|
237
|
-
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.
|
|
290
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.4.0...HEAD
|
|
291
|
+
[1.4.0]: https://github.com/netwk-pro/blog/releases/tag/v1.4.0
|
|
292
|
+
[1.3.11]: https://github.com/netwk-pro/blog/releases/tag/v1.3.11
|
|
293
|
+
[1.3.10]: https://github.com/netwk-pro/blog/releases/tag/v1.3.10
|
|
238
294
|
[1.3.9]: https://github.com/netwk-pro/blog/releases/tag/v1.3.9
|
|
239
295
|
[1.3.8]: https://github.com/netwk-pro/blog/releases/tag/v1.3.8
|
|
240
296
|
[1.3.7]: https://github.com/netwk-pro/blog/releases/tag/v1.3.7
|
package/cspell.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -49,18 +49,18 @@
|
|
|
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.32.0",
|
|
53
|
+
"@eslint/json": "^0.13.1",
|
|
54
54
|
"autoprefixer": "^10.4.21",
|
|
55
55
|
"browserslist": "^4.25.1",
|
|
56
|
-
"eslint": "^9.
|
|
57
|
-
"eslint-config-prettier": "^10.1.
|
|
56
|
+
"eslint": "^9.32.0",
|
|
57
|
+
"eslint-config-prettier": "^10.1.8",
|
|
58
58
|
"globals": "^16.3.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.22.0",
|
|
64
64
|
"stylelint-config-html": "^1.1.0",
|
|
65
65
|
"stylelint-config-recommended": "^16.0.0",
|
|
66
66
|
"stylelint-order": "^7.0.0"
|
|
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
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
---
|
|
2
|
+
date:
|
|
3
|
+
created: 2025-07-27
|
|
4
|
+
updated: 2025-07-27
|
|
5
|
+
title: 'UK Reverses Course on Apple Cloud Encryption Demands'
|
|
6
|
+
summary:
|
|
7
|
+
The UK government has paused its proposal to compel Apple to weaken encryption
|
|
8
|
+
on its cloud storage services.
|
|
9
|
+
authors:
|
|
10
|
+
- team
|
|
11
|
+
categories:
|
|
12
|
+
- Privacy
|
|
13
|
+
- Security
|
|
14
|
+
- Policy
|
|
15
|
+
tags:
|
|
16
|
+
- privacy
|
|
17
|
+
- cybersecurity
|
|
18
|
+
- policy
|
|
19
|
+
- uk
|
|
20
|
+
- us
|
|
21
|
+
- apple
|
|
22
|
+
- cloud
|
|
23
|
+
- encryption
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# 🔒 UK Reverses Course on Apple Cloud Encryption Demands
|
|
27
|
+
|
|
28
|
+
## 📢 _Important update for tech, legal, and policy professionals_
|
|
29
|
+
|
|
30
|
+
The UK government has **paused its proposal** to compel Apple to **weaken
|
|
31
|
+
encryption on its cloud storage services** — a move that would have had sweeping
|
|
32
|
+
implications for user privacy, global tech policy, and corporate data protection
|
|
33
|
+
standards.
|
|
34
|
+
|
|
35
|
+
🚫 Apple had strongly resisted the demand, citing its commitment to end-to-end
|
|
36
|
+
encryption and refusal to compromise user security.
|
|
37
|
+
|
|
38
|
+
<!-- more -->
|
|
39
|
+
|
|
40
|
+
🇺🇸 The reversal follows **intense pressure from US officials** and **civil
|
|
41
|
+
liberties organizations**, signaling a broader international consensus around
|
|
42
|
+
the protection of digital encryption — even in the face of national surveillance
|
|
43
|
+
agendas.
|
|
44
|
+
|
|
45
|
+
### Key Takeaways
|
|
46
|
+
|
|
47
|
+
✅ Apple’s firm stance held the line on global encryption standards
|
|
48
|
+
✅ UK proposals could have set a dangerous precedent for tech surveillance
|
|
49
|
+
✅ This may influence future policy debates around cloud access and encryption
|
|
50
|
+
frameworks
|
|
51
|
+
|
|
52
|
+
As governments, enterprises, and users increasingly rely on **cloud
|
|
53
|
+
infrastructure**, this case reminds us of the **delicate balance between
|
|
54
|
+
national security and personal privacy**.
|
|
55
|
+
|
|
56
|
+
📌 _Is this just a pause—or a sign of shifting norms in tech regulation?_
|
|
57
|
+
|
|
58
|
+
Read the full article at Ars Technica:
|
|
59
|
+
🔗 <https://tnyr.me/#N9DPJzx69X>
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
<figure class="poster-figure">
|
|
64
|
+
<picture>
|
|
65
|
+
<source srcset="/img/uk-apple-promo.webp" type="image/webp" />
|
|
66
|
+
<img src="/img/uk-apple-promo.png" alt="UK Reverses Course on Apple Cloud Encryption Demands" style="width: 60%; height: 60%">
|
|
67
|
+
<figcaption>
|
|
68
|
+
UK Reverses Course on Apple Cloud Encryption Demands – featured visual
|
|
69
|
+
</figcaption>
|
|
70
|
+
</figure>
|
|
@@ -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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!-- Last Updated: July
|
|
2
|
+
<!-- Last Updated: July 27, 2025 -->
|
|
3
3
|
|
|
4
4
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
5
5
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<loc>https://blog.netwk.pro</loc>
|
|
9
9
|
|
|
10
|
-
<lastmod>2025-07-
|
|
10
|
+
<lastmod>2025-07-27</lastmod>
|
|
11
11
|
|
|
12
12
|
<changefreq>weekly</changefreq>
|
|
13
13
|
|
|
@@ -15,11 +15,25 @@
|
|
|
15
15
|
|
|
16
16
|
</url>
|
|
17
17
|
|
|
18
|
+
<url>
|
|
19
|
+
|
|
20
|
+
<loc>https://blog.netwk.pro/2025/07/27/uk-reverses-course-on-apple-cloud-encryption-demands/</loc>
|
|
21
|
+
|
|
22
|
+
<lastmod>2025-07-27</lastmod>
|
|
23
|
+
|
|
24
|
+
<changefreq>monthly</changefreq>
|
|
25
|
+
|
|
26
|
+
<priority>0.8</priority>
|
|
27
|
+
|
|
28
|
+
</url>
|
|
29
|
+
|
|
30
|
+
<url>
|
|
31
|
+
|
|
18
32
|
<url>
|
|
19
33
|
|
|
20
34
|
<loc>https://blog.netwk.pro/2025/07/17/foss-spotlight-copy-sms-code---otp-helper/</loc>
|
|
21
35
|
|
|
22
|
-
<lastmod>2025-07-
|
|
36
|
+
<lastmod>2025-07-27</lastmod>
|
|
23
37
|
|
|
24
38
|
<changefreq>monthly</changefreq>
|
|
25
39
|
|
|
@@ -79,7 +93,7 @@
|
|
|
79
93
|
|
|
80
94
|
<loc>https://blog.netwk.pro/2025/06/23/encryption-is-not-a-loophole/</loc>
|
|
81
95
|
|
|
82
|
-
<lastmod>2025-
|
|
96
|
+
<lastmod>2025-07-27</lastmod>
|
|
83
97
|
|
|
84
98
|
<changefreq>monthly</changefreq>
|
|
85
99
|
|
|
@@ -91,7 +105,7 @@
|
|
|
91
105
|
|
|
92
106
|
<loc>https://blog.netwk.pro/2025/06/16/foss-spotlight-cryptomator/</loc>
|
|
93
107
|
|
|
94
|
-
<lastmod>2025-
|
|
108
|
+
<lastmod>2025-07-27</lastmod>
|
|
95
109
|
|
|
96
110
|
<changefreq>monthly</changefreq>
|
|
97
111
|
|
|
@@ -103,7 +117,7 @@
|
|
|
103
117
|
|
|
104
118
|
<loc>https://blog.netwk.pro/2025/06/12/whats-a-backdoor-in-encryption/</loc>
|
|
105
119
|
|
|
106
|
-
<lastmod>2025-
|
|
120
|
+
<lastmod>2025-07-27</lastmod>
|
|
107
121
|
|
|
108
122
|
<changefreq>monthly</changefreq>
|
|
109
123
|
|
|
@@ -113,9 +127,9 @@
|
|
|
113
127
|
|
|
114
128
|
<url>
|
|
115
129
|
|
|
116
|
-
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight
|
|
130
|
+
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight-squircle-ce/</loc>
|
|
117
131
|
|
|
118
|
-
<lastmod>2025-
|
|
132
|
+
<lastmod>2025-07-27</lastmod>
|
|
119
133
|
|
|
120
134
|
<changefreq>monthly</changefreq>
|
|
121
135
|
|
|
@@ -149,9 +163,9 @@
|
|
|
149
163
|
|
|
150
164
|
<url>
|
|
151
165
|
|
|
152
|
-
<loc>https://blog.netwk.pro/2025/05/29/foss-spotlight
|
|
166
|
+
<loc>https://blog.netwk.pro/2025/05/29/foss-spotlight-heliboard/</loc>
|
|
153
167
|
|
|
154
|
-
<lastmod>2025-
|
|
168
|
+
<lastmod>2025-07-27</lastmod>
|
|
155
169
|
|
|
156
170
|
<changefreq>monthly</changefreq>
|
|
157
171
|
|
|
@@ -163,7 +177,7 @@
|
|
|
163
177
|
|
|
164
178
|
<loc>https://blog.netwk.pro/2025/05/29/microsoft-authenticator-users---major-change-incoming/</loc>
|
|
165
179
|
|
|
166
|
-
<lastmod>2025-
|
|
180
|
+
<lastmod>2025-07-27</lastmod>
|
|
167
181
|
|
|
168
182
|
<changefreq>monthly</changefreq>
|
|
169
183
|
|