hfs 0.49.2 → 0.50.0-alpha3
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/README.md +2 -0
- package/admin/assets/{index-79c48481.js → index-18a6b5e2.js} +319 -61
- package/admin/assets/{index-1c2b890b.css → index-f3fd8783.css} +1 -1
- package/{frontend/assets/sha512-da48f0d4.js → admin/assets/sha512-58cb94a6.js} +1 -1
- package/admin/index.html +2 -2
- package/central.json +5 -0
- package/frontend/assets/index-629107cf.js +94 -0
- package/frontend/assets/{index-b50efd06.css → index-88f77c85.css} +1 -1
- package/{admin/assets/sha512-bdc531ce.js → frontend/assets/sha512-0e660b94.js} +1 -1
- package/frontend/index.html +2 -2
- package/package.json +3 -2
- package/plugins/antibrute/plugin.js +1 -1
- package/plugins/vhosting/plugin.js +3 -3
- package/src/adminApis.js +18 -12
- package/src/api.accounts.js +7 -1
- package/src/api.auth.js +7 -31
- package/src/api.file_list.js +6 -1
- package/src/api.monitor.js +10 -6
- package/src/api.vfs.js +6 -8
- package/src/apiMiddleware.js +12 -12
- package/src/auth.js +49 -0
- package/src/connections.js +6 -1
- package/src/const.js +3 -2
- package/src/cross.js +27 -3
- package/src/customHtml.js +1 -1
- package/src/geo.js +61 -0
- package/src/index.js +4 -1
- package/src/log.js +2 -2
- package/src/middlewares.js +24 -21
- package/src/perm.js +1 -6
- package/src/plugins.js +1 -3
- package/src/serveFile.js +2 -2
- package/src/serveGuiFiles.js +3 -6
- package/src/srp.js +22 -0
- package/src/upload.js +2 -2
- package/src/vfs.js +11 -16
- package/src/zip.js +2 -0
- package/frontend/assets/index-5f1c6cb8.js +0 -94
package/README.md
CHANGED
|
@@ -40,6 +40,7 @@ This is a full rewrite of [the Delphi version](https://github.com/rejetto/hfs2).
|
|
|
40
40
|
- real-time monitoring of connections
|
|
41
41
|
- [show some files](https://github.com/rejetto/hfs/discussions/270)
|
|
42
42
|
- speed throttler
|
|
43
|
+
- geographic firewall
|
|
43
44
|
- admin web interface
|
|
44
45
|
- multi-language front-end
|
|
45
46
|
- virtual hosting (plug-in)
|
|
@@ -182,6 +183,7 @@ Some actions you can take for improved security:
|
|
|
182
183
|
- Appending `#LOGIN` to address will bring up the login dialog
|
|
183
184
|
- Appending ?lang=CODE to address will force a specific language
|
|
184
185
|
- right/ctrl/command click on toggle-all checkbox will invert each checkbox state
|
|
186
|
+
- Appending `?login=USER:PASSWORD` will automatically log in the browser
|
|
185
187
|
|
|
186
188
|
## Contribute
|
|
187
189
|
|