files.com 1.1.48 → 1.1.50
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/as2_partner.md +1 -1
- data/docs/site.md +8 -4
- data/lib/files.com/models/as2_partner.rb +1 -1
- data/lib/files.com/models/site.rb +10 -4
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8685c86117c177940d15ba87bb040d3ab26cce61e2c022645bdb367b69f87c3c
|
4
|
+
data.tar.gz: 68c508f0f9249b62a8aac746ebb9e3d2e5d5f2de557d61bf31354384d708f05f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4722aeca1830c51919a686b51e9f3faea61952e3759d304cff5bac55cbfe1ef13bd7a94e31de90ffe1416a3f2f7e48366b9b94a39b54c2be2db1ac742185862b
|
7
|
+
data.tar.gz: 9f7110418f121a3f9b773bf3787efe1310768b4c23e33afee889bd94f1ed06d7b42d052efed1934203c384b44726e62f80b82948b30c364bbc51d2134a8c6931
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.50
|
data/docs/as2_partner.md
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
* `name` (string): The partner's formal AS2 name.
|
27
27
|
* `uri` (string): Public URI for sending AS2 message to.
|
28
28
|
* `server_certificate` (string): Remote server certificate security setting
|
29
|
-
* `mdn_validation_level` (string): MDN Validation Level
|
29
|
+
* `mdn_validation_level` (string): MDN Validation Level controls how to evaluate message transfer success based on a partner's MDN response. NOTE: This setting does not affect MDN storage; all MDNs received from a partner are always stored. `none`: MDN is stored for informational purposes only, a successful HTTPS transfer is a successful AS2 transfer. `weak`: Inspect the MDN for MIC and Disposition only. `normal`: `weak` plus validate MDN signature matches body, `strict`: `normal` but do not allow signatures from self-signed or incorrectly purposed certificates.
|
30
30
|
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
31
31
|
* `hex_public_certificate_serial` (string): Serial of public certificate used for message security in hex format.
|
32
32
|
* `public_certificate_md5` (string): MD5 hash of public certificate used for message security.
|
data/docs/site.md
CHANGED
@@ -169,6 +169,7 @@
|
|
169
169
|
"sftp_host_key_type": "default",
|
170
170
|
"active_sftp_host_key_id": 1,
|
171
171
|
"sftp_insecure_ciphers": true,
|
172
|
+
"sftp_insecure_diffie_hellman": true,
|
172
173
|
"sftp_user_root_enabled": true,
|
173
174
|
"sharing_enabled": true,
|
174
175
|
"show_request_access_link": true,
|
@@ -391,7 +392,8 @@
|
|
391
392
|
* `sftp_enabled` (boolean): Is SFTP enabled?
|
392
393
|
* `sftp_host_key_type` (string): Sftp Host Key Type
|
393
394
|
* `active_sftp_host_key_id` (int64): Id of the currently selected custom SFTP Host Key
|
394
|
-
* `sftp_insecure_ciphers` (boolean):
|
395
|
+
* `sftp_insecure_ciphers` (boolean): If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severly weakens the security of your site and it is not recommend, except as a last resort for compatibility.
|
396
|
+
* `sftp_insecure_diffie_hellman` (boolean): If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
|
395
397
|
* `sftp_user_root_enabled` (boolean): Use user FTP roots also for SFTP?
|
396
398
|
* `sharing_enabled` (boolean): Allow bundle creation
|
397
399
|
* `show_request_access_link` (boolean): Show request access link for users without access? Currently unused.
|
@@ -407,7 +409,7 @@
|
|
407
409
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
408
410
|
* `subdomain` (string): Site subdomain
|
409
411
|
* `switch_to_plan_date` (date-time): If switching plans, when does the new plan take effect?
|
410
|
-
* `tls_disabled` (boolean):
|
412
|
+
* `tls_disabled` (boolean): DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
411
413
|
* `trial_days_left` (int64): Number of days left in trial
|
412
414
|
* `trial_until` (date-time): When does this Site trial expire?
|
413
415
|
* `use_provided_modified_at` (boolean): Allow uploaders to set `provided_modified_at` for uploaded files?
|
@@ -490,6 +492,7 @@ Files::Site.update(
|
|
490
492
|
ssl_required: true,
|
491
493
|
tls_disabled: true,
|
492
494
|
sftp_insecure_ciphers: true,
|
495
|
+
sftp_insecure_diffie_hellman: true,
|
493
496
|
disable_files_certificate_generation: true,
|
494
497
|
user_lockout: true,
|
495
498
|
user_lockout_tries: 1,
|
@@ -633,8 +636,9 @@ Files::Site.update(
|
|
633
636
|
* `left_navigation_visibility` (object): Visibility settings for account navigation
|
634
637
|
* `session_expiry` (double): Session expiry in hours
|
635
638
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
636
|
-
* `tls_disabled` (boolean):
|
637
|
-
* `sftp_insecure_ciphers` (boolean):
|
639
|
+
* `tls_disabled` (boolean): DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
640
|
+
* `sftp_insecure_ciphers` (boolean): If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severly weakens the security of your site and it is not recommend, except as a last resort for compatibility.
|
641
|
+
* `sftp_insecure_diffie_hellman` (boolean): If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
|
638
642
|
* `disable_files_certificate_generation` (boolean): If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
639
643
|
* `user_lockout` (boolean): Will users be locked out after incorrect login attempts?
|
640
644
|
* `user_lockout_tries` (int64): Number of login tries within `user_lockout_within` hours before users are locked out
|
@@ -54,7 +54,7 @@ module Files
|
|
54
54
|
@attributes[:server_certificate] = value
|
55
55
|
end
|
56
56
|
|
57
|
-
# string - MDN Validation Level
|
57
|
+
# string - MDN Validation Level controls how to evaluate message transfer success based on a partner's MDN response. NOTE: This setting does not affect MDN storage; all MDNs received from a partner are always stored. `none`: MDN is stored for informational purposes only, a successful HTTPS transfer is a successful AS2 transfer. `weak`: Inspect the MDN for MIC and Disposition only. `normal`: `weak` plus validate MDN signature matches body, `strict`: `normal` but do not allow signatures from self-signed or incorrectly purposed certificates.
|
58
58
|
def mdn_validation_level
|
59
59
|
@attributes[:mdn_validation_level]
|
60
60
|
end
|
@@ -599,11 +599,16 @@ module Files
|
|
599
599
|
@attributes[:active_sftp_host_key_id]
|
600
600
|
end
|
601
601
|
|
602
|
-
# boolean -
|
602
|
+
# boolean - If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severly weakens the security of your site and it is not recommend, except as a last resort for compatibility.
|
603
603
|
def sftp_insecure_ciphers
|
604
604
|
@attributes[:sftp_insecure_ciphers]
|
605
605
|
end
|
606
606
|
|
607
|
+
# boolean - If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
|
608
|
+
def sftp_insecure_diffie_hellman
|
609
|
+
@attributes[:sftp_insecure_diffie_hellman]
|
610
|
+
end
|
611
|
+
|
607
612
|
# boolean - Use user FTP roots also for SFTP?
|
608
613
|
def sftp_user_root_enabled
|
609
614
|
@attributes[:sftp_user_root_enabled]
|
@@ -679,7 +684,7 @@ module Files
|
|
679
684
|
@attributes[:switch_to_plan_date]
|
680
685
|
end
|
681
686
|
|
682
|
-
# boolean -
|
687
|
+
# boolean - DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
683
688
|
def tls_disabled
|
684
689
|
@attributes[:tls_disabled]
|
685
690
|
end
|
@@ -830,8 +835,9 @@ module Files
|
|
830
835
|
# left_navigation_visibility - object - Visibility settings for account navigation
|
831
836
|
# session_expiry - double - Session expiry in hours
|
832
837
|
# ssl_required - boolean - Is SSL required? Disabling this is insecure.
|
833
|
-
# tls_disabled - boolean -
|
834
|
-
# sftp_insecure_ciphers - boolean -
|
838
|
+
# tls_disabled - boolean - DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
839
|
+
# sftp_insecure_ciphers - boolean - If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severly weakens the security of your site and it is not recommend, except as a last resort for compatibility.
|
840
|
+
# sftp_insecure_diffie_hellman - boolean - If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
|
835
841
|
# disable_files_certificate_generation - boolean - If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
836
842
|
# user_lockout - boolean - Will users be locked out after incorrect login attempts?
|
837
843
|
# user_lockout_tries - int64 - Number of login tries within `user_lockout_within` hours before users are locked out
|
data/lib/files.com/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: files.com
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.50
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|