-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathnotes.xml
5916 lines (5377 loc) · 159 KB
/
notes.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE chapter SYSTEM "chapter.dtd">
<chapter>
<header>
<copyright>
<year>2004</year><year>2023</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</legalnotice>
<title>SSH Release Notes</title>
<prepared></prepared>
<docno></docno>
<date></date>
<rev>%VSN%</rev>
<file>notes.xml</file>
</header>
<section><title>Ssh 5.1.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
With this change (being response to CVE-2023-48795), ssh
can negotiate "strict KEX" OpenSSH extension with peers
supporting it; also 'chacha20-poly1305@openssh.com'
algorithm becomes a less preferred cipher.</p>
<p>
If strict KEX availability cannot be ensured on both
connection sides, affected encryption modes(CHACHA and
CBC) can be disabled with standard ssh configuration.
This will provide protection against vulnerability, but
at a cost of affecting interoperability. See <seeguide
marker="configure_algos">Configuring algorithms in
SSH</seeguide>.</p>
<p>
*** POTENTIAL INCOMPATIBILITY ***</p>
<p>
Own Id: OTP-18897</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 5.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Replaced unintentional Erlang Public License 1.1 headers
in some files with the intended Apache License 2.0
header.</p>
<p>
Own Id: OTP-18815 Aux Id: PR-7780 </p>
</item>
<item>
<p>
Avoid outputting ansi escape sequences to dumb ssh
clients.</p>
<p>
Own Id: OTP-18861 Aux Id: PR-7627 </p>
</item>
<item>
<p>
With this change, connection handler does not execute
socket operations until it becomes socket owner.
Previously errors could occur if connection handler tried
to work with socket whose owner exited.</p>
<p>
Own Id: OTP-18869 Aux Id: PR-7849,GH-7571 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
With this change, reverse search works with ssh shell and
non dumb terminals.</p>
<p>
Own Id: OTP-18730 Aux Id: PR-7499 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 5.0.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Added multiline editing support to ssh clients connected
through OTP ssh daemon.</p>
<p>
Own Id: OTP-18653 Aux Id: PR-7242 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 5.0</title>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
The ssh_cli has been updated to work with the changes
introduced in the new Erlang shell implementation.</p>
<p>
Own Id: OTP-18231 Aux Id: OTP-17932 PR-6144 </p>
</item>
<item>
<p>
Typing <c>Ctrl+L</c> in a shell now clears the screen and
redraws the current line instead of only redrawing the
current line. To only redraw the current line, you must
now type <c>Alt+L</c>. This brings the behaviour of
<c>Ctrl+L</c> closer to how bash and other shells work.</p>
<p>
*** POTENTIAL INCOMPATIBILITY ***</p>
<p>
Own Id: OTP-18285 Aux Id: PR-6262 </p>
</item>
<item>
<p>
Deprecates <c>dbg:stop_clear/0</c> because it is simply a
function alias to <c>dbg:stop/0</c></p>
<p>
Own Id: OTP-18478 Aux Id: GH-6903 </p>
</item>
<item>
<p> The implementation has been fixed to use
<c>proc_lib:init_fail/2,3</c> where appropriate, instead
of <c>proc_lib:init_ack/1,2</c>. </p>
<p>
*** POTENTIAL INCOMPATIBILITY ***</p>
<p>
Own Id: OTP-18490 Aux Id: OTP-18471, GH-6339, PR-6843 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.15.3</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
With this change, PKCS8 formatted private key file is
properly decoded and SSH daemon with such key can be
started.</p>
<p>
Own Id: OTP-18446 Aux Id: GH-6475 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Replace size/1 with either tuple_size/1 or byte_size/1</p>
<p>
The <c>size/1</c> BIF is not optimized by the JIT, and
its use can result in worse types for Dialyzer.</p>
<p>
When one knows that the value being tested must be a
tuple, <c>tuple_size/1</c> should always be preferred.</p>
<p>
When one knows that the value being tested must be a
binary, <c>byte_size/1</c> should be preferred. However,
<c>byte_size/1</c> also accepts a bitstring (rounding up
size to a whole number of bytes), so one must make sure
that the call to <c>byte_size/</c> is preceded by a call
to <c>is_binary/1</c> to ensure that bitstrings are
rejected. Note that the compiler removes redundant calls
to <c>is_binary/1</c>, so if one is not sure whether
previous code had made sure that the argument is a
binary, it does not harm to add an <c>is_binary/1</c>
test immediately before the call to <c>byte_size/1</c>.</p>
<p>
Own Id: OTP-18432 Aux Id:
GH-6672,PR-6793,PR-6784,PR-6787,PR-6785,PR-6682,PR-6800,PR-6797,PR-6798,PR-6799,PR-6796,PR-6813,PR-6671,PR-6673,PR-6684,PR-6694,GH-6677,PR-6696,PR-6670,PR-6674 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.15.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
With this change, ssh application does not crash when
formatting some of info reports for unsuccessful
connections.</p>
<p>
Own Id: OTP-18386 Aux Id: PR-6611 </p>
</item>
<item>
<p>
With this change, ssh does not log extensively long
messages.</p>
<p>
Own Id: OTP-18417 Aux Id: DAFH-1349,ERIERL-888,IA18357 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.15.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
graceful shutdown of ssh_conection_handler when
connection is closed by peer</p>
<p>
Own Id: OTP-18326 Aux Id: ERIERL-865 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.15</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Handling rare race condition at channel close.</p>
<p>
Own Id: OTP-18220 Aux Id: ERIERL-666, ERIERL-661 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
New ssh option <c>no_auth_needed</c> to skip the ssh
authentication. Use with caution!</p>
<p>
Own Id: OTP-18134 Aux Id: GH-6021 </p>
</item>
<item>
<p>
This change fixes dialyzer warnings generated for
inets/httpd examples (includes needed adjustment of spec
for ssh_sftp module).</p>
<p>
Own Id: OTP-18178 Aux Id: ERIERL-833, ERIERL-834,
ERIERL-835 </p>
</item>
<item>
<p>
The new function <c>ssh:daemon_replace_options/2</c>
makes it possible to change the <c>Options</c> in a
running SSH server.</p>
<p>
Established connections are not affected, only those
created after the call to this new function.</p>
<p>
Own Id: OTP-18196</p>
</item>
<item>
<p>
Add a timeout as option <c>max_initial_idle_time</c>. It
closes a connection that does not allocate a channel
within the timeout time.</p>
<p>
For more information about timeouts, see the <seeguide
marker="hardening#timeouts">Timeouts section </seeguide>
in the User's Guide <seeguide
marker="hardening">Hardening</seeguide> chapter.</p>
<p>
Own Id: OTP-18207 Aux Id: PR-6231 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.14.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Binaries can be limited in logs with the parameter
<c>max_log_item_len</c>. The default value is 500 bytes.</p>
<p>
Own Id: OTP-18094</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.14</title>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
The representation of Edward curves (ed25519 and ed448)
inside ssh had a temporary representation (ed_pri and
ed_pub).</p>
<p>
That is now changed to the public_key form. See the
manual for more information.</p>
<p>
*** POTENTIAL INCOMPATIBILITY ***</p>
<p>
Own Id: OTP-17920</p>
</item>
<item>
<p>
Former internal function
<c>ssh_file:extract_public_key/1</c> documented publicly.</p>
<p>
Internally it was previously in ssh_transport.</p>
<p>
Own Id: OTP-18079 Aux Id: GH-5767 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.13.2.3</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
With this change, error logging related crashes in
ssh_connection_handler module are fixed.</p>
<p>
Own Id: OTP-18620 Aux Id: OTP-18386,PR-6611 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.13.2.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
With this change, ssh application does not crash when
formatting some of info reports for unsuccessful
connections.</p>
<p>
Own Id: OTP-18386 Aux Id: PR-6611 </p>
</item>
<item>
<p>
With this change, ssh does not log extensively long
messages.</p>
<p>
Own Id: OTP-18417 Aux Id: DAFH-1349,ERIERL-888,IA18357 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.13.2.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Binaries can be limited in logs with the parameter
<c>max_log_item_len</c>. The default value is 500 bytes.</p>
<p>
Own Id: OTP-18094</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.13.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Fix makefile dependency bugs.</p>
<p>
Own Id: OTP-17847 Aux Id: PR-5574 GH-5548 </p>
</item>
<item>
<p>
Fixed faulty OpenSSH decoding of Ed25519/Ed448 keys in
the OpenSSH format <c>openssh_key_v1</c>.</p>
<p>
Own Id: OTP-17868 Aux Id: PR-5520 </p>
</item>
<item>
<p>
Correction of ssh_file typing, specially for the
experimental openssh-key-v1 encoding.</p>
<p>
Own Id: OTP-17912 Aux Id: GH-5680 </p>
</item>
<item>
<p>
Improper tag for private ED keys when encoding with
ssh:encode/2.</p>
<p>
The tuple had <c>ed_priv</c> as first element, but should
have had <c>ed_pri</c>. This is now corrected.</p>
<p>
*** POTENTIAL INCOMPATIBILITY ***</p>
<p>
Own Id: OTP-17928 Aux Id: PR-5679 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Add support for Ed25519/Ed448 SSH host keys in the RFC
4716 format ("<c>-----BEGIN EC PRIVATE KEY-----</c>")
generated by for example openssl or via Erlang functions
(i.e. <c>public_key:generate_key({namedCurve,
ed25519})</c>).</p>
<p>
Ed25519 SSH host keys generated by <c>ssh-keygen</c> was,
and are still, supported.</p>
<p>
Own Id: OTP-17857 Aux Id: PR-5532 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.13.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
The ssh sever <c>parallel_login</c> option was missing in
OTP-24</p>
<p>
Own Id: OTP-17850 Aux Id: ERIERL-764 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.13</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
The value of the <c>connect_timeout</c> option is now
used as default value for the negotiation timeout.</p>
<p>
Own Id: OTP-17707 Aux Id: ERIERL-706 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Add better error handling in connect/2,3,4. Detect
incorrect arguments and return an informative error tuple
instead of throwing a function_clause or similar.</p>
<p>
Own Id: OTP-17515 Aux Id: ERIERL-648 </p>
</item>
<item>
<p>
Make ssh algorithm selection better handle dynamic
changes changes in crypto fips mode.</p>
<p>
Own Id: OTP-17795</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.12.5</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Fixed a race condition in the acceptor loop: if a client
disconnected immediately after the tcp connect, the
server could cease handling connection on that
address:port.</p>
<p>
Own Id: OTP-17764 Aux Id: ERIERL-726 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.12.4</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Fixed that a slow start (>30s) of a client subsystem
could cause a log entry with the password.</p>
<p>
Own Id: OTP-17390 Aux Id: ERIERL-648 </p>
</item>
<item>
<p>
Fixed an error when running as an sftp server and a
client requests a directory contents listing. </p>
<p>
The fix is to handle the error code <c>{error,
eacces}</c> as <c>{error, enoent}</c> in the
<c>ssh_sftpd:get_attrs/5</c> internal function; that is,
just skip it.</p>
<p>
Own Id: OTP-17586 Aux Id: GH-5014 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
The "Key exchange failed" Info Report is now more
informative.</p>
<p>
Own Id: OTP-17450 Aux Id: ERIERL-655 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.12.3</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Filter out sensitive data (passwords etc) from progress
reports and supervisor reports.</p>
<p>
Own Id: OTP-17468 Aux Id: ERIERL-656 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.12.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Avoid an extra blank line in the ssh known_hosts file</p>
<p>
Own Id: OTP-17427</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.12.1</title>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Add missing <c>known_hosts</c> and <c>authorized_keys</c>
file types to <c>ssh_file:decode/2</c> and
<c>ssh_file:encode/2</c>.</p>
<p>
Own Id: OTP-17397</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.12</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>Missing runtime dependencies has been added to this
application.</p>
<p>
Own Id: OTP-17243 Aux Id: PR-4557 </p>
</item>
<item>
<p>
The send window handling is changed to not initialize a
too large window on some occasions.</p>
<p>
Own Id: OTP-17353</p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
Removed usage of <c>erlang:is_port/1</c> from the SSH
implementation.</p>
<p>
Own Id: OTP-16750</p>
</item>
<item>
<p>
Internal connection setup refactoring.</p>
<p>
Own Id: OTP-17051</p>
</item>
<item>
<p>
Refactor SSH fsm into a (hopefully) more comprehensible
set of gen_statem callback-files.</p>
<p>
Own Id: OTP-17140</p>
</item>
<item>
<p>
The RSA SHA1 sign/verify variants are disabled by
default. That is, ssh-rsa is disabled by default as well
as the SHA1 sign/verify with RSA keys from id_rsa and
ssh_host_rsa_key. All SHA2 sign/verify are enabled by
default.</p>
<p>
The reason is that SHA1 is now considered easy to break.</p>
<p>
To enable RSA with SHA1, for example for a very old and
unsafe peer, see <seeguide
marker="configure_algos#example-9">Example 9</seeguide>
in the User's Guide chapter <seeguide
marker="configure_algos">Configuring algorithms in
SSH</seeguide>.</p>
<p>
*** POTENTIAL INCOMPATIBILITY ***</p>
<p>
Own Id: OTP-17259 Aux Id: OTP-16511, ERIERL-619 </p>
</item>
<item>
<p>
Adapt ssh supervisors to the new 'significant' and
'auto_shutdown' flags in supervisor.</p>
<p>
Own Id: OTP-17322 Aux Id: PR-4638, EEP-56, OTP-17334 </p>
</item>
<item>
<p>
The functions public_key:ssh_encode/2,
public_key:ssh_decode/2,
public_key:ssh_hostkey_fingerprint/1 and
public_key:ssh_hostkey_fingerprint/2 are deprecated.</p>
<p>
Replacement functions are available in SSH, see the
<seeguide
marker="system/general_info:deprecations#otp-24">Deprecations</seeguide>
chapter in the Erlang/OTP documentation.</p>
<p>
Own Id: OTP-17352</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11.1.6</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Binaries can be limited in logs with the parameter
<c>max_log_item_len</c>. The default value is 500 bytes.</p>
<p>
Own Id: OTP-18094</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11.1.5</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Fixed problem with blocked server after multiple
restarts. Applies to daemons with options
<c>{parallel_login,true}</c> and also <c>{max_sessions,
int()>0}</c>.</p>
<p>
Own Id: OTP-17835 Aux Id: ERIERL-721 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11.1.4</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
The value of the <c>connect_timeout</c> option is now
used as default value for the negotiation timeout.</p>
<p>
Own Id: OTP-17707 Aux Id: ERIERL-706 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11.1.3</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Filter out sensitive data (passwords etc) from progress
reports and supervisor reports.</p>
<p>
Own Id: OTP-17468 Aux Id: ERIERL-656 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
The "Key exchange failed" Info Report is now more
informative.</p>
<p>
Own Id: OTP-17450 Aux Id: ERIERL-655 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11.1.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Avoid an extra blank line in the ssh known_hosts file</p>
<p>
Own Id: OTP-17427</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11.1.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Fixed that a slow start (>30s) of a client subsystem
could cause a log entry with the password.</p>
<p>
Own Id: OTP-17390 Aux Id: ERIERL-648 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
The idle_time timer was not cancelled when a channel was
opened within the timeout time on an empty connection
that have had channels previously.</p>
<p>
Own Id: OTP-17279</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.11</title>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
The long name field in SSH_FXP_NAME responses to display
file information in sftp version 3 now contains the
expanded format defined in the sftp draft. It is similar
to what is returned by "ls -l" on Unix systems.</p>
<p>
Own Id: OTP-17197 Aux Id: PR- 3049 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.10.8</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Don't timeout slow connection setups and tear-downs. A
rare crash risk for the controller is also removed.</p>
<p>
Own Id: OTP-17173 Aux Id: ERIERL-581 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.10.7</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
The SSH daemon erroneously replaced LF with CRLF also
when there was no pty requested from the server.</p>
<p>
Own Id: OTP-17108 Aux Id: ERL-1442 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.10.6</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Fixed problems in the ssh cli/shell handling. Most
important are:</p>
<p>
1) the ssh:shell function did sometimes cause the input
to be echoed twice,</p>
<p>
2) the ssh:shell function didn't transfer the LANG and
LC_ALL shell variables to the connected server which
sometimes made Unicode handling erroneous,</p>
<p>
3) Unicode was not always transferred correctly to and
from the peer.</p>
<p>
Own Id: OTP-16799</p>
</item>
<item>
<p>
The SSH protocol message SSH_MSG_DISCONNECT was sometimes
sent instead of SSH_MSG_CHANNEL_FAILURE</p>
<p>
Own Id: OTP-16900</p>
</item>
<item>
<p>
The ssh_cli module now always sends the exit-status to
connected clients so they can use that to check for
successful command execution.</p>
<p>
Own Id: OTP-16908 Aux Id: PR-2753 </p>
</item>
</list>
</section>
<section><title>Improvements and New Features</title>
<list>
<item>
<p>
A new option <seeerl
marker="ssh:ssh#option-pk_check_user"><c>pk_check_user</c></seeerl>
enables checking of the client's user name in the server
when doing public key authentication.</p>
<p>
Own Id: OTP-16889</p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.10.5</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
An ssh-client can take an accepted socket from a
listening socket and do an ssh:connect/2 on it.</p>
<p>
Multiple clients on sockets accepted from the same
listening socket had stopped working. This is corrected
now.</p>
<p>
Own Id: OTP-17021 Aux Id: ERIERL-567 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.10.4.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
<item>
<p>
Filter out sensitive data (passwords etc) from progress
reports and supervisor reports.</p>
<p>
Own Id: OTP-17468 Aux Id: ERIERL-656 </p>
</item>
</list>
</section>
</section>
<section><title>Ssh 4.10.4</title>
<section><title>Fixed Bugs and Malfunctions</title>