hfs 0.53.0-alpha5 → 0.53.0-alpha6
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 +7 -4
- package/admin/assets/{index-D9rdfxGQ.js → index-BYWlnM3f.js} +157 -157
- package/admin/assets/{sha512-DtDI0h32.js → sha512-CQAM6mbJ.js} +1 -1
- package/admin/index.html +1 -1
- package/package.json +1 -1
- package/plugins/list-uploader/plugin.js +1 -1
- package/src/api.plugins.js +4 -2
- package/src/const.js +1 -1
- package/src/index.js +1 -1
- package/src/log.js +3 -1
- package/src/plugins.js +3 -2
- package/src/serveGuiAndSharedFiles.js +9 -4
- package/src/upload.js +39 -26
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ This is a full rewrite of [the Delphi version](https://github.com/rejetto/hfs2).
|
|
|
34
34
|
- accounts
|
|
35
35
|
- resumable downloads & uploads
|
|
36
36
|
- download folders as zip archive
|
|
37
|
-
-
|
|
37
|
+
- delete, move and rename files
|
|
38
38
|
- simple website serving
|
|
39
39
|
- plug-ins
|
|
40
40
|
- real-time monitoring of connections
|
|
@@ -43,10 +43,13 @@ This is a full rewrite of [the Delphi version](https://github.com/rejetto/hfs2).
|
|
|
43
43
|
- geographic firewall
|
|
44
44
|
- admin web interface
|
|
45
45
|
- multi-language front-end
|
|
46
|
-
- virtual hosting
|
|
46
|
+
- virtual hosting
|
|
47
47
|
- anti-brute-force (plug-in)
|
|
48
48
|
- [reverse-proxy support](https://github.com/rejetto/hfs/wiki/Reverse-proxy)
|
|
49
49
|
- comments in file descript.ion
|
|
50
|
+
- integrated media player
|
|
51
|
+
- [customizable with html, css and javascript](https://github.com/rejetto/hfs/wiki/Customization)
|
|
52
|
+
- dynamic-dns updater
|
|
50
53
|
|
|
51
54
|
## Installation
|
|
52
55
|
|
|
@@ -169,14 +172,14 @@ But you may still want to stay with HFS 2.x (so far) for the following reasons
|
|
|
169
172
|
|
|
170
173
|
While this project focuses on ease of use, we care about security.
|
|
171
174
|
- HTTPS support
|
|
172
|
-
- Passwords are not saved, and
|
|
175
|
+
- Passwords are not saved, and not disclosed even without https thanks to [SRP](https://en.wikipedia.org/wiki/Secure_Remote_Password_protocol)
|
|
173
176
|
- Automated tests ran on every release, including libraries audit
|
|
174
177
|
- No default admin password
|
|
175
178
|
|
|
176
179
|
Some actions you can take for improved security:
|
|
177
180
|
- use https, better if using a proper certificate, even free with [Letsencrypt](https://letsencrypt.org/).
|
|
178
181
|
- have a domain (ddns is ok too), configure it in "Internet" page, and enable "Accept requests only using domain"
|
|
179
|
-
- install
|
|
182
|
+
- install "antidos" plugin
|
|
180
183
|
- ensure "antibrute" plugin is running
|
|
181
184
|
- disable "unprotected admin on localhost"
|
|
182
185
|
|