@networkpro/blog 1.5.4 → 1.5.6
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 +2 -1
- package/.github/workflows/publish-test.yml +4 -3
- package/.github/workflows/publish.yml +4 -39
- package/.python-version +1 -1
- package/CHANGELOG.md +51 -1
- package/cspell.json +3 -0
- package/mkdocs.yml +3 -3
- package/package.json +8 -7
- package/ref/README.md +1 -1
- package/requirements.txt +2 -2
- package/src/contributing.md +275 -38
- package/src/img/privacy-security-promo.png +0 -0
- package/src/img/privacy-security-promo.webp +0 -0
- package/src/img/sideloading-promo.png +0 -0
- package/src/img/sideloading-promo.webp +0 -0
- package/src/posts/2025-11-09-privacy-and-security.md +87 -0
- package/src/posts/2025-11-09-sideloading.md +79 -0
- package/src/posts/secure-secure-shell.md +13 -12
- package/src/sitemap.xml +46 -22
- package/assets/.gitkeep +0 -0
|
@@ -40,7 +40,7 @@ jobs:
|
|
|
40
40
|
- name: Set up Node.js
|
|
41
41
|
uses: actions/setup-node@v6
|
|
42
42
|
with:
|
|
43
|
-
node-version:
|
|
43
|
+
node-version: 24
|
|
44
44
|
cache: npm
|
|
45
45
|
cache-dependency-path: package-lock.json
|
|
46
46
|
|
|
@@ -60,6 +60,7 @@ jobs:
|
|
|
60
60
|
uses: actions/setup-python@v6
|
|
61
61
|
with:
|
|
62
62
|
python-version-file: .python-version
|
|
63
|
+
cache: 'pip'
|
|
63
64
|
|
|
64
65
|
- name: Install Python dependencies
|
|
65
66
|
run: pip install -r requirements.txt
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
- name: Set up Node.js
|
|
37
37
|
uses: actions/setup-node@v6
|
|
38
38
|
with:
|
|
39
|
-
node-version:
|
|
39
|
+
node-version: 24
|
|
40
40
|
cache: npm
|
|
41
41
|
cache-dependency-path: package-lock.json
|
|
42
42
|
|
|
@@ -53,6 +53,7 @@ jobs:
|
|
|
53
53
|
uses: actions/setup-python@v6
|
|
54
54
|
with:
|
|
55
55
|
python-version-file: .python-version
|
|
56
|
+
cache: 'pip'
|
|
56
57
|
|
|
57
58
|
- name: Install Python dependencies
|
|
58
59
|
run: pip install -r requirements.txt
|
|
@@ -95,7 +96,7 @@ jobs:
|
|
|
95
96
|
- name: Set up Node.js for npmjs
|
|
96
97
|
uses: actions/setup-node@v6
|
|
97
98
|
with:
|
|
98
|
-
node-version:
|
|
99
|
+
node-version: 24
|
|
99
100
|
registry-url: https://registry.npmjs.org/
|
|
100
101
|
cache: npm
|
|
101
102
|
|
|
@@ -143,7 +144,7 @@ jobs:
|
|
|
143
144
|
- name: Set up Node.js for GPR
|
|
144
145
|
uses: actions/setup-node@v6
|
|
145
146
|
with:
|
|
146
|
-
node-version:
|
|
147
|
+
node-version: 24
|
|
147
148
|
registry-url: https://npm.pkg.github.com/
|
|
148
149
|
cache: npm
|
|
149
150
|
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
- name: Set up Node.js
|
|
39
39
|
uses: actions/setup-node@v6
|
|
40
40
|
with:
|
|
41
|
-
node-version:
|
|
41
|
+
node-version: 24
|
|
42
42
|
cache: npm
|
|
43
43
|
cache-dependency-path: package-lock.json
|
|
44
44
|
|
|
@@ -55,6 +55,7 @@ jobs:
|
|
|
55
55
|
uses: actions/setup-python@v6
|
|
56
56
|
with:
|
|
57
57
|
python-version-file: .python-version
|
|
58
|
+
cache: 'pip'
|
|
58
59
|
|
|
59
60
|
- name: Install Python dependencies
|
|
60
61
|
run: pip install -r requirements.txt
|
|
@@ -97,7 +98,7 @@ jobs:
|
|
|
97
98
|
- name: Set up Node.js for npmjs
|
|
98
99
|
uses: actions/setup-node@v6
|
|
99
100
|
with:
|
|
100
|
-
node-version:
|
|
101
|
+
node-version: 24
|
|
101
102
|
registry-url: https://registry.npmjs.org/
|
|
102
103
|
cache: npm
|
|
103
104
|
cache-dependency-path: package-lock.json
|
|
@@ -115,24 +116,6 @@ jobs:
|
|
|
115
116
|
git config --global user.email "github@sl.neteng.cc"
|
|
116
117
|
git config --global user.name "SunDevil311"
|
|
117
118
|
|
|
118
|
-
#- name: Print npm config and registry info
|
|
119
|
-
# run: |
|
|
120
|
-
# echo "🔍 NPM registry (from config):"
|
|
121
|
-
# npm config get registry
|
|
122
|
-
|
|
123
|
-
# echo "🔍 NPM user config location:"
|
|
124
|
-
# echo "$NPM_CONFIG_USERCONFIG"
|
|
125
|
-
|
|
126
|
-
# echo "🔍 .npmrc contents:"
|
|
127
|
-
# cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
128
|
-
# env:
|
|
129
|
-
# NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
130
|
-
|
|
131
|
-
#- name: Verify npm authentication
|
|
132
|
-
# run: npm whoami
|
|
133
|
-
# env:
|
|
134
|
-
# NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
135
|
-
|
|
136
119
|
- name: Publish package to npmjs
|
|
137
120
|
run: npm publish --access public
|
|
138
121
|
env:
|
|
@@ -158,7 +141,7 @@ jobs:
|
|
|
158
141
|
- name: Set up Node.js for GPR
|
|
159
142
|
uses: actions/setup-node@v6
|
|
160
143
|
with:
|
|
161
|
-
node-version:
|
|
144
|
+
node-version: 24
|
|
162
145
|
registry-url: https://npm.pkg.github.com/
|
|
163
146
|
cache: npm
|
|
164
147
|
cache-dependency-path: package-lock.json
|
|
@@ -180,24 +163,6 @@ jobs:
|
|
|
180
163
|
run: |
|
|
181
164
|
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/blog"/' package.json
|
|
182
165
|
|
|
183
|
-
#- name: Print npm config and registry info
|
|
184
|
-
# run: |
|
|
185
|
-
# echo "🔍 NPM registry (from config):"
|
|
186
|
-
# npm config get registry
|
|
187
|
-
|
|
188
|
-
# echo "🔍 NPM user config location:"
|
|
189
|
-
# echo "$NPM_CONFIG_USERCONFIG"
|
|
190
|
-
|
|
191
|
-
# echo "🔍 .npmrc contents:"
|
|
192
|
-
# cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
193
|
-
# env:
|
|
194
|
-
# NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
195
|
-
|
|
196
|
-
#- name: Verify npm authentication
|
|
197
|
-
# run: npm whoami --registry=https://npm.pkg.github.com/
|
|
198
|
-
# env:
|
|
199
|
-
# NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
200
|
-
|
|
201
166
|
- name: Publish package to GPR
|
|
202
167
|
run: npm publish --registry=https://npm.pkg.github.com/
|
|
203
168
|
env:
|
package/.python-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.14
|
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,55 @@ formatting may vary.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.5.6] - 2025-11-09
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Updated MkDocs for Material **light mode** to use `orange` as the primary
|
|
24
|
+
color and `deep orange` as the accent color for improved readability.
|
|
25
|
+
- Updated `src/sitemap.xml` to reflect the newest posts and refresh last
|
|
26
|
+
modified dates.
|
|
27
|
+
- Bumped project version to `v1.5.6`.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## [1.5.5] - 2025-11-09
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- Added `src/posts/2025-11-09-privacy-and-security.md`, along with image assets:
|
|
36
|
+
- `src/img/privacy-security-promo.png`
|
|
37
|
+
- `src/img/privacy-security-promo.webp`
|
|
38
|
+
- Added `src/posts/2025-11-09-sideloading.md`, along with image assets:
|
|
39
|
+
- `src/img/sideloading-promo.png`
|
|
40
|
+
- `src/img/sideloading-promo.webp`
|
|
41
|
+
- Introduced `npm-run-all` devDependency for more efficient linting.
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
|
|
45
|
+
- Refactored `src/contributing.md` to accurately reflect the proper method of
|
|
46
|
+
contributing.
|
|
47
|
+
- Revised emphasis in the **Message authentication codes** section of
|
|
48
|
+
`/src/posts/secure-secure-shell.md`.
|
|
49
|
+
- Updated CI workflows to utilize **Node.js v24** (LTS):
|
|
50
|
+
- `build-and-deploy.yml`
|
|
51
|
+
- `publish-test.yml`
|
|
52
|
+
- `publish.yml`
|
|
53
|
+
- Revised scripts in `package.json` for more efficient use by utilizing
|
|
54
|
+
`npm-run-all`.
|
|
55
|
+
- Updated `.python-version` to reflect **Python v3.14**.
|
|
56
|
+
- Bumped project version to `v1.5.5`.
|
|
57
|
+
- Updated **Node.js** dependencies:
|
|
58
|
+
- `@eslint/js` `^9.38.0` → `^9.39.1`
|
|
59
|
+
- `@eslint/json` `^0.13.2` → `^0.14.0`
|
|
60
|
+
- `eslint` `^9.38.0` → `^9.39.1`
|
|
61
|
+
- `globals` `^16.4.0` → `^16.5.0`
|
|
62
|
+
- Updated **Python** dependencies:
|
|
63
|
+
- `mkdocs-material` `9.6.22` → `9.6.23`
|
|
64
|
+
- `mkdocs-rss-plugin` `1.17.4` → `1.17.5`
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
19
68
|
## [1.5.4] - 2025-10-28
|
|
20
69
|
|
|
21
70
|
### Added
|
|
@@ -399,7 +448,8 @@ formatting may vary.
|
|
|
399
448
|
|
|
400
449
|
<!-- Link references -->
|
|
401
450
|
|
|
402
|
-
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.
|
|
451
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.5...HEAD
|
|
452
|
+
[1.5.5]: https://github.com/netwk-pro/blog/releases/tag/v1.5.5
|
|
403
453
|
[1.5.4]: https://github.com/netwk-pro/blog/releases/tag/v1.5.4
|
|
404
454
|
[1.5.3]: https://github.com/netwk-pro/blog/releases/tag/v1.5.3
|
|
405
455
|
[1.5.2]: https://github.com/netwk-pro/blog/releases/tag/v1.5.2
|
package/cspell.json
CHANGED
|
@@ -17,9 +17,11 @@
|
|
|
17
17
|
"Heli",
|
|
18
18
|
"heliboard",
|
|
19
19
|
"homescreen",
|
|
20
|
+
"issuetrack",
|
|
20
21
|
"lastmod",
|
|
21
22
|
"mkdocs",
|
|
22
23
|
"msauth",
|
|
24
|
+
"ncurc",
|
|
23
25
|
"neteng",
|
|
24
26
|
"NETPRO",
|
|
25
27
|
"netwk",
|
|
@@ -29,6 +31,7 @@
|
|
|
29
31
|
"otphelper",
|
|
30
32
|
"pozil",
|
|
31
33
|
"robotstxt",
|
|
34
|
+
"sideloading",
|
|
32
35
|
"sonicwall",
|
|
33
36
|
"Squircle",
|
|
34
37
|
"srcset",
|
package/mkdocs.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
site_name: Network Pro™ Blog
|
|
2
2
|
site_url: https://blog.netwk.pro
|
|
3
|
-
repo_url: https://github.com/netwk-pro/
|
|
3
|
+
repo_url: https://github.com/netwk-pro/blog
|
|
4
4
|
repo_name: GitHub
|
|
5
5
|
docs_dir: src
|
|
6
6
|
site_dir: build/
|
|
@@ -23,8 +23,8 @@ theme:
|
|
|
23
23
|
name: Switch to light mode
|
|
24
24
|
# Optional light mode
|
|
25
25
|
- scheme: default
|
|
26
|
-
primary:
|
|
27
|
-
accent:
|
|
26
|
+
primary: orange
|
|
27
|
+
accent: deep orange
|
|
28
28
|
toggle:
|
|
29
29
|
icon: material/brightness-7
|
|
30
30
|
name: Switch to dark mode
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.6",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"author": {
|
|
29
29
|
"name": "Scott Lopez",
|
|
30
30
|
"email": "github@sl.neteng.cc",
|
|
31
|
-
"url": "https://bio.
|
|
31
|
+
"url": "https://bio.netwk.pro"
|
|
32
32
|
},
|
|
33
33
|
"type": "module",
|
|
34
34
|
"scripts": {
|
|
@@ -43,21 +43,22 @@
|
|
|
43
43
|
"lint:fix": "eslint . --ext .mjs,.js,.json,.jsonc --fix",
|
|
44
44
|
"lint:md": "npx markdownlint-cli2 \"**/*.{md,markdown}\" \"#node_modules/**\" \"#build/**\"",
|
|
45
45
|
"lint:css": "npx stylelint \"**/*.css\" --ignore-path .stylelintignore",
|
|
46
|
-
"lint:all": "npm
|
|
46
|
+
"lint:all": "npm-run-all --parallel lint lint:md lint:css --sequential format",
|
|
47
47
|
"checkout": "npm run lint:all",
|
|
48
48
|
"verify": "npm run checkout",
|
|
49
49
|
"upgrade": "npx npm-check-updates -u"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@eslint/js": "^9.
|
|
53
|
-
"@eslint/json": "^0.
|
|
52
|
+
"@eslint/js": "^9.39.1",
|
|
53
|
+
"@eslint/json": "^0.14.0",
|
|
54
54
|
"autoprefixer": "^10.4.21",
|
|
55
55
|
"browserslist": "^4.27.0",
|
|
56
|
-
"eslint": "^9.
|
|
56
|
+
"eslint": "^9.39.1",
|
|
57
57
|
"eslint-config-prettier": "^10.1.8",
|
|
58
|
-
"globals": "^16.
|
|
58
|
+
"globals": "^16.5.0",
|
|
59
59
|
"markdownlint": "^0.39.0",
|
|
60
60
|
"markdownlint-cli2": "^0.18.1",
|
|
61
|
+
"npm-run-all": "^4.1.5",
|
|
61
62
|
"postcss": "^8.5.6",
|
|
62
63
|
"prettier": "3.6.2",
|
|
63
64
|
"stylelint": "^16.25.0",
|
package/ref/README.md
CHANGED
|
@@ -51,7 +51,7 @@ docs/
|
|
|
51
51
|
blog/ # The directory that all blog content goes into (first blog instance)
|
|
52
52
|
posts/ # the place to put your posts
|
|
53
53
|
author/ # Author profiles
|
|
54
|
-
.authors.yml # Author information to be added to posts
|
|
54
|
+
.authors.yml # Author information to be added to posts
|
|
55
55
|
ext/ # Directory that contains code for the custom slugs
|
|
56
56
|
hooks/ # Directory for a hook that adds social media share buttons
|
|
57
57
|
```
|
package/requirements.txt
CHANGED
package/src/contributing.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
|
-
created: 2025-
|
|
4
|
-
updated: 2025-
|
|
3
|
+
created: 2025-07-05
|
|
4
|
+
updated: 2025-10-29
|
|
5
5
|
title: Contributing to Network Pro™
|
|
6
6
|
summary:
|
|
7
7
|
Instructions for getting involved and contributing to Network Pro Strategies.
|
|
@@ -12,15 +12,28 @@ tags:
|
|
|
12
12
|
- contributing
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
<
|
|
16
|
-
|
|
17
|
-
<sup>[SPDX-License-Identifier](https://spdx.dev/learn/handling-license-info):
|
|
15
|
+
<sup>[SPDX-License-Identifier](https://spdx.dev/learn/handling-license-info/):
|
|
18
16
|
`CC-BY-4.0 OR GPL-3.0-or-later`</sup>
|
|
19
17
|
|
|
18
|
+
<a name="top"></a>
|
|
19
|
+
|
|
20
20
|
# 🤝 Contributing to Network Pro Strategies
|
|
21
21
|
|
|
22
22
|
**Network Pro Strategies**
|
|
23
|
-
**Effective Date:**
|
|
23
|
+
**Effective Date:** October 29, 2025
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## Contents
|
|
28
|
+
|
|
29
|
+
- [Using the Issue Tracker](#issuetrack)
|
|
30
|
+
- [Bug Reports](#bug-reports)
|
|
31
|
+
- [Feature Requests](#feature-requests)
|
|
32
|
+
- [Before You Begin](#before-you-begin)
|
|
33
|
+
- [Dependency Management](#dependency-management)
|
|
34
|
+
- [Pull Requests](#pull-requests)
|
|
35
|
+
- [Coding & Style Notes](#coding)
|
|
36
|
+
- [Legal Notice](#legal)
|
|
24
37
|
|
|
25
38
|
|
|
26
39
|
|
|
@@ -33,6 +46,8 @@ respectfully. 🙌
|
|
|
33
46
|
|
|
34
47
|
---
|
|
35
48
|
|
|
49
|
+
<a name="issuetrack"></a>
|
|
50
|
+
|
|
36
51
|
## 🐛 Using the Issue Tracker
|
|
37
52
|
|
|
38
53
|
Use the [issue tracker](https://github.com/netwk-pro/netwk-pro.github.io/issues)
|
|
@@ -48,6 +63,16 @@ for:
|
|
|
48
63
|
- [GitHub Discussions](https://discuss.neteng.pro)
|
|
49
64
|
- [Discord](https://discord.neteng.pro)
|
|
50
65
|
|
|
66
|
+
**Please refer to the following documentation before initiating any feature or
|
|
67
|
+
pull requests:**
|
|
68
|
+
|
|
69
|
+
- [Before You Begin](#before-you-begin)
|
|
70
|
+
- [Dependency Management](#dependency-management)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
<sub>[Back to top](#top)</sub>
|
|
75
|
+
|
|
51
76
|
---
|
|
52
77
|
|
|
53
78
|
<a name="bug-reports"></a>
|
|
@@ -57,7 +82,7 @@ for:
|
|
|
57
82
|
A bug is a clear, reproducible issue in the code. High-quality reports help us
|
|
58
83
|
fix problems faster.
|
|
59
84
|
|
|
60
|
-
###
|
|
85
|
+
### A good bug report includes
|
|
61
86
|
|
|
62
87
|
- A **descriptive title**
|
|
63
88
|
- Steps to reproduce
|
|
@@ -81,6 +106,8 @@ _Example_:
|
|
|
81
106
|
|
|
82
107
|
<!-- markdownlint-enable MD042 -->
|
|
83
108
|
|
|
109
|
+
|
|
110
|
+
|
|
84
111
|
<sub>[Back to top](#top)</sub>
|
|
85
112
|
|
|
86
113
|
---
|
|
@@ -100,6 +127,165 @@ Before posting:
|
|
|
100
127
|
|
|
101
128
|
Strong proposals help us prioritize.
|
|
102
129
|
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
<sub>[Back to top](#top)</sub>
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
<a name="before-you-begin"></a>
|
|
137
|
+
|
|
138
|
+
## 🧭 Before You Begin
|
|
139
|
+
|
|
140
|
+
Before opening a pull request, please make sure your environment and commits
|
|
141
|
+
follow the project’s conventions.
|
|
142
|
+
|
|
143
|
+
### Prerequisites
|
|
144
|
+
|
|
145
|
+
- **Node.js:** v24.x (LTS)
|
|
146
|
+
- **npm:** v11.x
|
|
147
|
+
_(See package.json → `engines` field for exact supported versions.)_
|
|
148
|
+
|
|
149
|
+
Install dependencies with:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
cp .env.template .env
|
|
153
|
+
npm ci
|
|
154
|
+
npx playwright install
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
### Code Style & Linting
|
|
158
|
+
|
|
159
|
+
This project uses:
|
|
160
|
+
|
|
161
|
+
- **[Prettier](https://prettier.io)** for formatting
|
|
162
|
+
- **[ESLint](https://eslint.org)** for static analysis
|
|
163
|
+
- **[Vitest](https://vitest.dev)** for testing
|
|
164
|
+
|
|
165
|
+
Please refer to
|
|
166
|
+
**[Editor Configuration](https://github.com/netwk-pro/netwk-pro.github.io/wiki/Editor-Configuration)**
|
|
167
|
+
in the [Wiki](https://github.com/netwk-pro/netwk-pro.github.io/wiki) for the
|
|
168
|
+
full toolchain.
|
|
169
|
+
|
|
170
|
+
To ensure consistency, please run:
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
npm run checkout
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
This will:
|
|
177
|
+
|
|
178
|
+
- Verify Node and npm versions
|
|
179
|
+
- Run all tests (client + server)
|
|
180
|
+
- Lint and format your code
|
|
181
|
+
- Run SvelteKit’s type and build checks
|
|
182
|
+
|
|
183
|
+
> ✅ Tip: Run this before committing to catch issues early.
|
|
184
|
+
> If Prettier check fails, use `npm run format:fix` to correct formatting, then
|
|
185
|
+
> re-run `npm run checkout`.
|
|
186
|
+
|
|
187
|
+
### Branch Naming Convention
|
|
188
|
+
|
|
189
|
+
Use clear, consistent names for feature branches:
|
|
190
|
+
|
|
191
|
+
| Type | Example | Description |
|
|
192
|
+
| -------- | ------------------------------ | ------------------------------ |
|
|
193
|
+
| Feature | `feature/auth0-integration` | New feature or enhancement |
|
|
194
|
+
| Fix | `fix/login-redirect` | Bug fix or regression |
|
|
195
|
+
| Chore | `chore/deps-update` | Dependency or tooling updates |
|
|
196
|
+
| Docs | `docs/contributing-update` | Documentation-only changes |
|
|
197
|
+
| Refactor | `refactor/component-structure` | Code cleanup or reorganization |
|
|
198
|
+
|
|
199
|
+
### Commit Messages
|
|
200
|
+
|
|
201
|
+
Please use clear, descriptive commit messages.
|
|
202
|
+
If you prefer a convention, **Conventional Commits** are supported:
|
|
203
|
+
|
|
204
|
+
```cpp
|
|
205
|
+
type(scope): short description
|
|
206
|
+
|
|
207
|
+
[optional body]
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
Examples:
|
|
211
|
+
|
|
212
|
+
```scss
|
|
213
|
+
fix(auth): handle expired access token
|
|
214
|
+
chore(deps): pin vitest to 3.2.4 for compatibility
|
|
215
|
+
docs(contributing): clarify build process for SvelteKit
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
<sub>[Back to top](#top)</sub>
|
|
221
|
+
|
|
222
|
+
---
|
|
223
|
+
|
|
224
|
+
<a name="dependency-management"></a>
|
|
225
|
+
|
|
226
|
+
## 📦 Dependency Management
|
|
227
|
+
|
|
228
|
+
This project uses
|
|
229
|
+
[`npm-check-updates`](https://github.com/raineorshine/npm-check-updates) (NCU)
|
|
230
|
+
to manage dependency upgrades safely and predictably.
|
|
231
|
+
|
|
232
|
+
### Configuration
|
|
233
|
+
|
|
234
|
+
All upgrade rules and exclusions are defined in the root `.ncurc.cjs` file.
|
|
235
|
+
This configuration ensures we only upgrade compatible dependencies and avoid
|
|
236
|
+
breakage in core tooling.
|
|
237
|
+
|
|
238
|
+
**Example rules:**
|
|
239
|
+
|
|
240
|
+
- Only upgrade **production** and **dev** dependencies.
|
|
241
|
+
- Reject potentially breaking tools (e.g., `vitest`, `@vitest/coverage-v8`,
|
|
242
|
+
`prettier`).
|
|
243
|
+
- Maintain clean, grouped CLI output during upgrade runs.
|
|
244
|
+
|
|
245
|
+
### 🪄 Commands
|
|
246
|
+
|
|
247
|
+
| Command | Description |
|
|
248
|
+
| ----------------------- | -------------------------------------------------------------------- |
|
|
249
|
+
| `npm run check:updates` | Lists available dependency updates without modifying `package.json`. |
|
|
250
|
+
| `npm run upgrade` | Applies safe upgrades using `.ncurc.cjs` rules. |
|
|
251
|
+
|
|
252
|
+
These commands are wrappers around NCU, keeping the behavior consistent across
|
|
253
|
+
environments.
|
|
254
|
+
|
|
255
|
+
### Rejected Packages
|
|
256
|
+
|
|
257
|
+
Certain packages are **intentionally pinned** due to breaking changes between
|
|
258
|
+
major versions or ongoing test compatibility work.
|
|
259
|
+
Do **not manually upgrade** these unless the project maintainer specifically
|
|
260
|
+
approves it.
|
|
261
|
+
|
|
262
|
+
Commonly pinned packages include:
|
|
263
|
+
|
|
264
|
+
- `vitest`
|
|
265
|
+
- `@vitest/coverage-v8`
|
|
266
|
+
- `prettier`
|
|
267
|
+
- `jsdom`
|
|
268
|
+
|
|
269
|
+
If you think one of these can be safely updated, open a discussion issue or
|
|
270
|
+
mention it in your PR description before upgrading.
|
|
271
|
+
|
|
272
|
+
### Why We Use This Approach
|
|
273
|
+
|
|
274
|
+
We separate **rules** (in `.ncurc.cjs`) from **presentation** (via npm scripts)
|
|
275
|
+
to keep updates consistent:
|
|
276
|
+
|
|
277
|
+
- `.ncurc.cjs` defines _what_ can change
|
|
278
|
+
- `npm run upgrade` defines _how_ it’s displayed
|
|
279
|
+
- Contributors don’t need to remember CLI flags or project-specific exclusions
|
|
280
|
+
|
|
281
|
+
This ensures every update is:
|
|
282
|
+
|
|
283
|
+
- predictable
|
|
284
|
+
- consistent
|
|
285
|
+
- and easy to review
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
103
289
|
<sub>[Back to top](#top)</sub>
|
|
104
290
|
|
|
105
291
|
---
|
|
@@ -110,22 +296,22 @@ Strong proposals help us prioritize.
|
|
|
110
296
|
|
|
111
297
|
Well-scoped, well-documented pull requests are the lifeblood of open-source.
|
|
112
298
|
|
|
113
|
-
###
|
|
299
|
+
### Ask First
|
|
114
300
|
|
|
115
|
-
Before large PRs (new features, refactors, dependency
|
|
116
|
-
|
|
301
|
+
Before starting large PRs (new features, major refactors, or dependency
|
|
302
|
+
upgrades), please open an issue or discussion first to align on approach.
|
|
117
303
|
|
|
118
|
-
###
|
|
304
|
+
### Steps
|
|
119
305
|
|
|
120
|
-
`1.` **Fork the repo
|
|
306
|
+
`1.` **Fork and clone the repo:**
|
|
121
307
|
|
|
122
308
|
```bash
|
|
123
|
-
git clone https://github.com/<your-username>/
|
|
124
|
-
cd
|
|
125
|
-
git remote add upstream https://github.com/netwk-pro/
|
|
309
|
+
git clone https://github.com/<your-username>/netwk-pro.github.io.git
|
|
310
|
+
cd netwk-pro.github.io
|
|
311
|
+
git remote add upstream https://github.com/netwk-pro/netwk-pro.github.io.git
|
|
126
312
|
```
|
|
127
313
|
|
|
128
|
-
`2.` **Stay
|
|
314
|
+
`2.` **Stay up to date with upstream:**
|
|
129
315
|
|
|
130
316
|
```bash
|
|
131
317
|
git checkout master
|
|
@@ -135,74 +321,125 @@ git pull upstream master
|
|
|
135
321
|
`3.` **Create a topic branch:**
|
|
136
322
|
|
|
137
323
|
```bash
|
|
138
|
-
git checkout -b my-feature
|
|
324
|
+
git checkout -b feature/my-feature
|
|
139
325
|
```
|
|
140
326
|
|
|
141
|
-
`4.` **Install
|
|
327
|
+
`4.` **Install:**
|
|
142
328
|
|
|
143
329
|
```bash
|
|
330
|
+
cp .env.template .env
|
|
144
331
|
npm ci
|
|
332
|
+
npx playwright install
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
`5.` **Make and commit your changes:**
|
|
336
|
+
|
|
337
|
+
- Use clear, descriptive commit messages.
|
|
338
|
+
- Group related changes together logically.
|
|
339
|
+
|
|
340
|
+
`6.` **Test locally:**
|
|
341
|
+
|
|
342
|
+
```bash
|
|
343
|
+
npm run dev
|
|
145
344
|
npm run checkout
|
|
146
345
|
```
|
|
147
346
|
|
|
148
|
-
`
|
|
347
|
+
`7.` **Do not commit build artifacts.**
|
|
149
348
|
|
|
150
|
-
|
|
349
|
+
⚠️ SvelteKit builds are environment-specific and should not be checked into
|
|
350
|
+
source control. The CI/CD pipeline will automatically build, test, and deploy
|
|
351
|
+
your changes.
|
|
151
352
|
|
|
152
|
-
|
|
353
|
+
Please **do not commit**:
|
|
354
|
+
|
|
355
|
+
- `.svelte-kit/`
|
|
356
|
+
- `build/`
|
|
357
|
+
- `node_modules/`
|
|
358
|
+
|
|
359
|
+
To ensure your local environment matches CI:
|
|
153
360
|
|
|
154
361
|
```bash
|
|
155
362
|
npm run build
|
|
156
|
-
git add build/
|
|
157
|
-
git commit -m "Build: update assets"
|
|
158
363
|
```
|
|
159
364
|
|
|
160
|
-
|
|
365
|
+
(This validates your build works, but does not need to be committed.)
|
|
366
|
+
|
|
367
|
+
`8.` **Push and open your PR:**
|
|
161
368
|
|
|
162
369
|
```bash
|
|
163
|
-
git push origin my-feature
|
|
370
|
+
git push origin feature/my-feature
|
|
164
371
|
```
|
|
165
372
|
|
|
166
|
-
Open your PR
|
|
167
|
-
|
|
373
|
+
`9.` **Open your PR on GitHub:**
|
|
374
|
+
|
|
375
|
+
- Use a clear title and description.
|
|
376
|
+
- Reference any related issues.
|
|
377
|
+
- Include screenshots or logs if relevant.
|
|
378
|
+
|
|
379
|
+
---
|
|
380
|
+
|
|
381
|
+
✅ Tip: Keep your PRs small and focused — it’s easier to review and merge
|
|
382
|
+
quickly.
|
|
383
|
+
|
|
384
|
+
|
|
168
385
|
|
|
169
386
|
<sub>[Back to top](#top)</sub>
|
|
170
387
|
|
|
171
388
|
---
|
|
172
389
|
|
|
390
|
+
<a name="coding"></a>
|
|
391
|
+
|
|
173
392
|
## ✅ Coding & Style Notes
|
|
174
393
|
|
|
175
|
-
- Use the defined code style (Prettier, ESLint, Stylelint, markdownlint)
|
|
176
|
-
- Avoid unrelated changes in the same PR
|
|
177
|
-
- Keep PRs focused and test-covered when appropriate
|
|
394
|
+
- Use the defined code style (Prettier, ESLint, Stylelint, markdownlint).
|
|
395
|
+
- Avoid unrelated changes in the same PR.
|
|
396
|
+
- Keep PRs focused and test-covered when appropriate.
|
|
178
397
|
|
|
179
398
|
|
|
180
399
|
|
|
400
|
+
<a name="legal"></a>
|
|
401
|
+
|
|
181
402
|
## 🔐 Legal Notice
|
|
182
403
|
|
|
183
404
|
By submitting a pull request, you agree to license your contributions under:
|
|
184
405
|
|
|
185
|
-
- [CC BY 4.0](https://netwk.pro/
|
|
186
|
-
- [GNU GPL 3.0 or later](https://netwk.pro/
|
|
406
|
+
- [CC BY 4.0](https://netwk.pro/legal#cc-by)
|
|
407
|
+
- [GNU GPL 3.0 or later](https://netwk.pro/legal#gnu-gpl)
|
|
408
|
+
|
|
409
|
+
|
|
187
410
|
|
|
188
411
|
<sub>[Back to top](#top)</sub>
|
|
189
412
|
|
|
190
413
|
|
|
191
414
|
|
|
192
|
-
_Thanks again for your contribution and for being part of the Network Pro
|
|
415
|
+
_Thanks again for your contribution and for being part of the Network Pro™
|
|
193
416
|
community!_
|
|
194
417
|
|
|
195
418
|
---
|
|
196
419
|
|
|
420
|
+
<span style="font-size: 12px; font-weight: bold; text-align: center;">
|
|
421
|
+
|
|
422
|
+
[Home](https://netwk.pro) |
|
|
423
|
+
[Terms of Use](https://netwk.pro/terms-of-use)
|
|
424
|
+
[Privacy Policy](https://netwk.pro/privacy) |
|
|
425
|
+
[Legal](https://netwk.pro/license)
|
|
426
|
+
|
|
427
|
+
</span>
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
197
431
|
<span style="font-size: 12px; text-align: center;">
|
|
198
432
|
|
|
433
|
+
Copyright © 2025 **[Network Pro Strategies](https://netwk.pro/)** (Network
|
|
434
|
+
Pro™)
|
|
435
|
+
|
|
199
436
|
Network Pro™, the shield logo, and the "Locking Down Networks...™"
|
|
200
|
-
slogan are [trademarks](https://netwk.pro/
|
|
437
|
+
slogan are [trademarks](https://netwk.pro/legal#trademark) of Network Pro
|
|
201
438
|
Strategies.
|
|
202
439
|
|
|
203
|
-
Licensed under **[CC BY 4.0](https://
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
440
|
+
Licensed under **[CC BY 4.0](https://netwk.pro/legal#cc-by)** and the
|
|
441
|
+
**[GNU GPL](https://netwk.pro/legal#gnu-gpl)**, as published by the Free
|
|
442
|
+
Software Foundation, either version 3 of the License, or (at your option) any
|
|
443
|
+
later version.
|
|
207
444
|
|
|
208
445
|
</span>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
---
|
|
2
|
+
date:
|
|
3
|
+
created: 2025-11-09
|
|
4
|
+
title: Introducing Our New Privacy & Security Apps & Services Portal
|
|
5
|
+
summary:
|
|
6
|
+
'In a digital world where personal data has become the new currency,
|
|
7
|
+
protecting privacy isn’t just a choice — it’s a necessity. That’s why we’re
|
|
8
|
+
excited to announce the launch of our new site: apps.netwk.pro — your trusted
|
|
9
|
+
destination for discovering the best tools and services designed to safeguard
|
|
10
|
+
your digital life.'
|
|
11
|
+
authors:
|
|
12
|
+
- team
|
|
13
|
+
categories:
|
|
14
|
+
- Open-Source
|
|
15
|
+
- Android
|
|
16
|
+
- Privacy
|
|
17
|
+
- Security
|
|
18
|
+
tags:
|
|
19
|
+
- networkpro
|
|
20
|
+
- website
|
|
21
|
+
- android
|
|
22
|
+
- open-source
|
|
23
|
+
- privacy
|
|
24
|
+
- security
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# Introducing Our New Privacy & Security Apps & Services Portal
|
|
28
|
+
|
|
29
|
+
In a digital world where personal data has become the new currency, protecting
|
|
30
|
+
privacy isn’t just a choice — it’s a necessity. That’s why we’re excited to
|
|
31
|
+
announce the launch of our new site: [apps.netwk.pro](https://apps.netwk.pro) —
|
|
32
|
+
your trusted destination for discovering the best tools and services designed to
|
|
33
|
+
safeguard your digital life.
|
|
34
|
+
|
|
35
|
+
<!-- more -->
|
|
36
|
+
|
|
37
|
+
## 🔐 A Curated Guide to the Best in Privacy & Security
|
|
38
|
+
|
|
39
|
+
The new portal brings together a hand-picked collection of **privacy and
|
|
40
|
+
security apps for mobile and desktop**, chosen for their proven track records,
|
|
41
|
+
transparency, and technical integrity. From encrypted messaging platforms and
|
|
42
|
+
secure browsers to password managers, VPNs, firewalls, and data-protection
|
|
43
|
+
tools, each recommendation is carefully evaluated for performance and ethical
|
|
44
|
+
standards.
|
|
45
|
+
|
|
46
|
+
Wherever possible, we prioritize **open-source software** — because true
|
|
47
|
+
security starts with transparency. Open-source projects allow communities to
|
|
48
|
+
verify code integrity, audit vulnerabilities, and ensure that privacy claims are
|
|
49
|
+
backed by evidence, not marketing.
|
|
50
|
+
|
|
51
|
+
## 📱 Built for Users Who Value Control
|
|
52
|
+
|
|
53
|
+
At _[apps.netwk.pro](https://apps.netwk.pro)_, you won’t find ad-driven rankings
|
|
54
|
+
or pay-to-play listings. Every featured app or service has been selected through
|
|
55
|
+
technical analysis and real-world testing. Our goal is to help users — from
|
|
56
|
+
everyday consumers to professionals — find tools that respect their data,
|
|
57
|
+
enhance their privacy, and strengthen their security posture across platforms.
|
|
58
|
+
|
|
59
|
+
Whether you’re looking to **de-Google your phone**, improve your **network
|
|
60
|
+
security**, or discover **FOSS alternatives** to mainstream apps, the site
|
|
61
|
+
provides curated insights, installation guidance, and direct links to trusted
|
|
62
|
+
sources.
|
|
63
|
+
|
|
64
|
+
## 🌍 A Step Toward Digital Independence
|
|
65
|
+
|
|
66
|
+
This launch represents our commitment to promoting **digital autonomy** —
|
|
67
|
+
empowering individuals and organizations to take control of their privacy,
|
|
68
|
+
rather than surrendering it to default settings or proprietary ecosystems.
|
|
69
|
+
|
|
70
|
+
Explore the growing catalog now at [apps.netwk.pro](https://apps.netwk.pro) and
|
|
71
|
+
start building your personal security stack with confidence.
|
|
72
|
+
|
|
73
|
+
Because in a connected world, **privacy isn’t just protection — it’s freedom**.
|
|
74
|
+
|
|
75
|
+
Check out the new site:
|
|
76
|
+
🔗 [apps.netwk.pro](https://apps.netwk.pro)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
<figure class="poster-figure">
|
|
81
|
+
<picture>
|
|
82
|
+
<source srcset="/img/privacy-security-promo.webp" type="image/webp" />
|
|
83
|
+
<img src="/img/privacy-security-promo.png" alt="Introducing Our New Privacy & Security Apps & Services Portal" style="width: 60%; height: 60%">
|
|
84
|
+
<figcaption>
|
|
85
|
+
Introducing Our New Privacy & Security Apps & Services Portal – featured visual
|
|
86
|
+
</figcaption>
|
|
87
|
+
</figure>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
---
|
|
2
|
+
date:
|
|
3
|
+
created: 2025-11-09
|
|
4
|
+
title: 'The End of True Sideloading'
|
|
5
|
+
summary:
|
|
6
|
+
Google’s new restrictions will soon mean only registered apps can be installed
|
|
7
|
+
on Android. That’s not security — it’s control.
|
|
8
|
+
authors:
|
|
9
|
+
- team
|
|
10
|
+
categories:
|
|
11
|
+
- Open-Source
|
|
12
|
+
- Privacy
|
|
13
|
+
- Security
|
|
14
|
+
- Android
|
|
15
|
+
tags:
|
|
16
|
+
- google
|
|
17
|
+
- android
|
|
18
|
+
- sideloading
|
|
19
|
+
- apps
|
|
20
|
+
- open-source
|
|
21
|
+
- privacy
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
# The End of True Sideloading
|
|
25
|
+
|
|
26
|
+
## How Google Is Tightening Its Grip on Android
|
|
27
|
+
|
|
28
|
+
For years, **sideloading** — the ability to install apps outside of official app
|
|
29
|
+
stores — has been one of Android’s defining features. It’s what set the platform
|
|
30
|
+
apart from Apple’s closed ecosystem, giving users the freedom to choose where
|
|
31
|
+
their software comes from and how they use their devices.
|
|
32
|
+
|
|
33
|
+
<!-- more -->
|
|
34
|
+
|
|
35
|
+
That freedom, however, is about to change.
|
|
36
|
+
|
|
37
|
+
According to a
|
|
38
|
+
[recent F-Droid article](https://f-droid.org/en/2025/10/28/sideloading.html),
|
|
39
|
+
Google’s new policies will soon make it impossible to install apps that haven’t
|
|
40
|
+
been pre-approved through its registration systems. In other words, sideloading
|
|
41
|
+
as we know it will be replaced with a **"managed installation"** model — one
|
|
42
|
+
where every app must be part of Google’s controlled ecosystem.
|
|
43
|
+
|
|
44
|
+
## A Shift From Freedom To Control
|
|
45
|
+
|
|
46
|
+
This change is being framed as a security improvement, but it raises fundamental
|
|
47
|
+
questions about **digital sovereignty**. If every app has to be “verified”
|
|
48
|
+
through Google’s channels, then users effectively lose the ability to make
|
|
49
|
+
independent decisions about what software they trust or use.
|
|
50
|
+
|
|
51
|
+
Projects like **F-Droid**, which champion open-source, privacy-respecting apps,
|
|
52
|
+
could be severely impacted. Developers who distribute apps independently —
|
|
53
|
+
outside of Play Store policies or monetization structures — may find themselves
|
|
54
|
+
locked out entirely.
|
|
55
|
+
|
|
56
|
+
## The Bigger Picture
|
|
57
|
+
|
|
58
|
+
What’s happening isn’t just about Android. It’s part of a broader industry shift
|
|
59
|
+
toward closed ecosystems and controlled user experiences. By restricting
|
|
60
|
+
sideloading, Google is limiting not only user freedom but also innovation,
|
|
61
|
+
competition, and transparency.
|
|
62
|
+
|
|
63
|
+
For those who value openness, privacy, and true digital ownership, now is the
|
|
64
|
+
time to pay attention.
|
|
65
|
+
|
|
66
|
+
As F-Droid emphasizes, sideloading isn’t a loophole — it’s a fundamental right
|
|
67
|
+
of computing freedom. Losing it means ceding more control over our devices,
|
|
68
|
+
data, and choices to corporate gatekeepers.
|
|
69
|
+
|
|
70
|
+
Read more at the link below:
|
|
71
|
+
🔗 [f-droid.org/en/2025/10/28/sideloading.html](https://f-droid.org/en/2025/10/28/sideloading.html)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
<figure class="poster-figure">
|
|
76
|
+
<source srcset="/img/sideloading-promo.webp" type="image/webp" />
|
|
77
|
+
<img src="/img/sideloading-promo.png" alt="The End of True Sideloading" style="width: 60%; height: 60%;">
|
|
78
|
+
<figcaption>The End of True Sideloading – featured visual</figcaption>
|
|
79
|
+
</figure>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2015-01-04
|
|
4
|
-
updated: 2025-
|
|
4
|
+
updated: 2025-11-09
|
|
5
5
|
title: Secure Secure Shell
|
|
6
6
|
summary: Secure shell (SSHD) hardening guide.
|
|
7
7
|
authors:
|
|
@@ -12,6 +12,7 @@ categories:
|
|
|
12
12
|
tags:
|
|
13
13
|
- cybersecurity
|
|
14
14
|
- guides
|
|
15
|
+
- security
|
|
15
16
|
---
|
|
16
17
|
|
|
17
18
|
# Secure Secure Shell
|
|
@@ -370,18 +371,18 @@ Here are the available MAC choices:
|
|
|
370
371
|
1. hmac-md5-96
|
|
371
372
|
1. hmac-sha1
|
|
372
373
|
1. hmac-sha1-96
|
|
373
|
-
1. hmac-sha2-256
|
|
374
|
-
1. hmac-sha2-512
|
|
374
|
+
1. **hmac-sha2-256**
|
|
375
|
+
1. **hmac-sha2-512**
|
|
375
376
|
1. umac-64
|
|
376
|
-
1. umac-128
|
|
377
|
-
1.
|
|
378
|
-
1.
|
|
379
|
-
1.
|
|
380
|
-
1.
|
|
381
|
-
1.
|
|
382
|
-
1.
|
|
383
|
-
1.
|
|
384
|
-
1.
|
|
377
|
+
1. **umac-128**
|
|
378
|
+
1. hmac-md5-etm@openssh.com
|
|
379
|
+
1. hmac-md5-96-etm@openssh.com
|
|
380
|
+
1. hmac-sha1-etm@openssh.com
|
|
381
|
+
1. hmac-sha1-96-etm@openssh.com
|
|
382
|
+
1. **hmac-sha2-256-etm@openssh.com**
|
|
383
|
+
1. **hmac-sha2-512-etm@openssh.com**
|
|
384
|
+
1. umac-64-etm@openssh.com
|
|
385
|
+
1. **umac-128-etm@openssh.com**
|
|
385
386
|
|
|
386
387
|
The selection considerations:
|
|
387
388
|
|
package/src/sitemap.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!-- Last Updated:
|
|
2
|
+
<!-- Last Updated: 2025-11-09 -->
|
|
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-09
|
|
10
|
+
<lastmod>2025-11-09</lastmod>
|
|
11
11
|
|
|
12
12
|
<changefreq>monthly</changefreq>
|
|
13
13
|
|
|
@@ -15,6 +15,30 @@
|
|
|
15
15
|
|
|
16
16
|
</url>
|
|
17
17
|
|
|
18
|
+
<url>
|
|
19
|
+
|
|
20
|
+
<loc>https://blog.netwk.pro/2025/11/09/introducing-our-new-privacy--security-apps--services-portal/</loc>
|
|
21
|
+
|
|
22
|
+
<lastmod>2025-11-09</lastmod>
|
|
23
|
+
|
|
24
|
+
<changefreq>monthly</changefreq>
|
|
25
|
+
|
|
26
|
+
<priority>0.8</priority>
|
|
27
|
+
|
|
28
|
+
</url>
|
|
29
|
+
|
|
30
|
+
<url>
|
|
31
|
+
|
|
32
|
+
<loc>https://blog.netwk.pro/2025/11/09/the-end-of-true-sideloading/</loc>
|
|
33
|
+
|
|
34
|
+
<lastmod>2025-11-09</lastmod>
|
|
35
|
+
|
|
36
|
+
<changefreq>monthly</changefreq>
|
|
37
|
+
|
|
38
|
+
<priority>0.8</priority>
|
|
39
|
+
|
|
40
|
+
</url>
|
|
41
|
+
|
|
18
42
|
<url>
|
|
19
43
|
|
|
20
44
|
<loc>https://blog.netwk.pro/2025/09/23/cyber-alert-update---sonicwall-security-breach-what-you-need-to-know/</loc>
|
|
@@ -109,7 +133,7 @@
|
|
|
109
133
|
|
|
110
134
|
<changefreq>monthly</changefreq>
|
|
111
135
|
|
|
112
|
-
<priority>0.
|
|
136
|
+
<priority>0.6</priority>
|
|
113
137
|
|
|
114
138
|
</url>
|
|
115
139
|
|
|
@@ -121,7 +145,7 @@
|
|
|
121
145
|
|
|
122
146
|
<changefreq>monthly</changefreq>
|
|
123
147
|
|
|
124
|
-
<priority>0.
|
|
148
|
+
<priority>0.6</priority>
|
|
125
149
|
|
|
126
150
|
</url>
|
|
127
151
|
|
|
@@ -133,7 +157,7 @@
|
|
|
133
157
|
|
|
134
158
|
<changefreq>monthly</changefreq>
|
|
135
159
|
|
|
136
|
-
<priority>0.
|
|
160
|
+
<priority>0.6</priority>
|
|
137
161
|
|
|
138
162
|
</url>
|
|
139
163
|
|
|
@@ -145,7 +169,7 @@
|
|
|
145
169
|
|
|
146
170
|
<changefreq>monthly</changefreq>
|
|
147
171
|
|
|
148
|
-
<priority>0.
|
|
172
|
+
<priority>0.6</priority>
|
|
149
173
|
|
|
150
174
|
</url>
|
|
151
175
|
|
|
@@ -157,7 +181,7 @@
|
|
|
157
181
|
|
|
158
182
|
<changefreq>monthly</changefreq>
|
|
159
183
|
|
|
160
|
-
<priority>0.
|
|
184
|
+
<priority>0.6</priority>
|
|
161
185
|
|
|
162
186
|
</url>
|
|
163
187
|
|
|
@@ -169,7 +193,7 @@
|
|
|
169
193
|
|
|
170
194
|
<changefreq>monthly</changefreq>
|
|
171
195
|
|
|
172
|
-
<priority>0.
|
|
196
|
+
<priority>0.6</priority>
|
|
173
197
|
|
|
174
198
|
</url>
|
|
175
199
|
|
|
@@ -181,7 +205,7 @@
|
|
|
181
205
|
|
|
182
206
|
<changefreq>monthly</changefreq>
|
|
183
207
|
|
|
184
|
-
<priority>0.
|
|
208
|
+
<priority>0.5</priority>
|
|
185
209
|
|
|
186
210
|
</url>
|
|
187
211
|
|
|
@@ -193,7 +217,7 @@
|
|
|
193
217
|
|
|
194
218
|
<changefreq>monthly</changefreq>
|
|
195
219
|
|
|
196
|
-
<priority>0.
|
|
220
|
+
<priority>0.5</priority>
|
|
197
221
|
|
|
198
222
|
</url>
|
|
199
223
|
|
|
@@ -205,7 +229,7 @@
|
|
|
205
229
|
|
|
206
230
|
<changefreq>monthly</changefreq>
|
|
207
231
|
|
|
208
|
-
<priority>0.
|
|
232
|
+
<priority>0.5</priority>
|
|
209
233
|
|
|
210
234
|
</url>
|
|
211
235
|
|
|
@@ -217,7 +241,7 @@
|
|
|
217
241
|
|
|
218
242
|
<changefreq>monthly</changefreq>
|
|
219
243
|
|
|
220
|
-
<priority>0.
|
|
244
|
+
<priority>0.5</priority>
|
|
221
245
|
|
|
222
246
|
</url>
|
|
223
247
|
|
|
@@ -229,7 +253,7 @@
|
|
|
229
253
|
|
|
230
254
|
<changefreq>monthly</changefreq>
|
|
231
255
|
|
|
232
|
-
<priority>0.
|
|
256
|
+
<priority>0.5</priority>
|
|
233
257
|
|
|
234
258
|
</url>
|
|
235
259
|
|
|
@@ -241,7 +265,7 @@
|
|
|
241
265
|
|
|
242
266
|
<changefreq>monthly</changefreq>
|
|
243
267
|
|
|
244
|
-
<priority>0.
|
|
268
|
+
<priority>0.5</priority>
|
|
245
269
|
|
|
246
270
|
</url>
|
|
247
271
|
|
|
@@ -261,7 +285,7 @@
|
|
|
261
285
|
|
|
262
286
|
<loc>https://blog.netwk.pro/category/android/</loc>
|
|
263
287
|
|
|
264
|
-
<lastmod>2025-
|
|
288
|
+
<lastmod>2025-11-09</lastmod>
|
|
265
289
|
|
|
266
290
|
<changefreq>monthly</changefreq>
|
|
267
291
|
|
|
@@ -273,7 +297,7 @@
|
|
|
273
297
|
|
|
274
298
|
<loc>https://blog.netwk.pro/category/open-source/</loc>
|
|
275
299
|
|
|
276
|
-
<lastmod>2025-
|
|
300
|
+
<lastmod>2025-11-09</lastmod>
|
|
277
301
|
|
|
278
302
|
<changefreq>monthly</changefreq>
|
|
279
303
|
|
|
@@ -285,7 +309,7 @@
|
|
|
285
309
|
|
|
286
310
|
<loc>https://blog.netwk.pro/category/privacy/</loc>
|
|
287
311
|
|
|
288
|
-
<lastmod>2025-
|
|
312
|
+
<lastmod>2025-11-09</lastmod>
|
|
289
313
|
|
|
290
314
|
<changefreq>monthly</changefreq>
|
|
291
315
|
|
|
@@ -297,7 +321,7 @@
|
|
|
297
321
|
|
|
298
322
|
<loc>https://blog.netwk.pro/category/security/</loc>
|
|
299
323
|
|
|
300
|
-
<lastmod>2025-09
|
|
324
|
+
<lastmod>2025-11-09</lastmod>
|
|
301
325
|
|
|
302
326
|
<changefreq>monthly</changefreq>
|
|
303
327
|
|
|
@@ -309,7 +333,7 @@
|
|
|
309
333
|
|
|
310
334
|
<loc>https://blog.netwk.pro/archive/2025/</loc>
|
|
311
335
|
|
|
312
|
-
<lastmod>2025-09
|
|
336
|
+
<lastmod>2025-11-09</lastmod>
|
|
313
337
|
|
|
314
338
|
<changefreq>monthly</changefreq>
|
|
315
339
|
|
|
@@ -321,7 +345,7 @@
|
|
|
321
345
|
|
|
322
346
|
<loc>https://blog.netwk.pro/tags/</loc>
|
|
323
347
|
|
|
324
|
-
<lastmod>2025-09
|
|
348
|
+
<lastmod>2025-11-09</lastmod>
|
|
325
349
|
|
|
326
350
|
<changefreq>monthly</changefreq>
|
|
327
351
|
|
|
@@ -333,7 +357,7 @@
|
|
|
333
357
|
|
|
334
358
|
<loc>https://blog.netwk.pro/2015/01/04/secure-secure-shell/</loc>
|
|
335
359
|
|
|
336
|
-
<lastmod>2025-
|
|
360
|
+
<lastmod>2025-11-09</lastmod>
|
|
337
361
|
|
|
338
362
|
<changefreq>yearly</changefreq>
|
|
339
363
|
|
|
@@ -345,7 +369,7 @@
|
|
|
345
369
|
|
|
346
370
|
<loc>https://blog.netwk.pro/contributing/</loc>
|
|
347
371
|
|
|
348
|
-
<lastmod>2025-09
|
|
372
|
+
<lastmod>2025-11-09</lastmod>
|
|
349
373
|
|
|
350
374
|
<changefreq>monthly</changefreq>
|
|
351
375
|
|
package/assets/.gitkeep
DELETED
|
File without changes
|