Skip to content

v0.0.11.0

Compare
Choose a tag to compare
@manojampalam manojampalam released this 04 Apr 19:50
· 110 commits to L1-Prod since this release

This is a pre-release (non-production ready)

Includes:

  • Latest changes from OpenSSH main repo (synced to 7.5p1)
  • Fix to Sshfs issue introduced in 0.0.9.0
  • Support for ssh redirection in Powershell ($o = ssh ... )
  • Install-sshd.ps1 support for Nano

and other misc issues listed here

NOTE - Breaking Change

  • Due to a security issue that got fixed in this release, SSHD account now needs read access to "authorized_keys. Otherwise pubkey authentication will fail. Do the following:
   $authorizedKeyPath = "c:\users\user\.ssh\authorized_keys"
   $acl = get-acl $authorizedKeyPath
   $ar = New-Object  System.Security.AccessControl.FileSystemAccessRule("NT Service\sshd", "Read", "Allow")
   $acl.SetAccessRule($ar)
   Set-Acl  $authorizedKeyPath $acl