Projects STRLCPY reverse_ssh Commits 9e48a0f1
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 57 lines
    58 58   - [Supported URI Schemes](#supported-uri-schemes)
    59 59  - [Help](#help)
    60 60   - [Garble](#garble)
    61  - - [Permission denied (publickey).](#permission-denied-publickey)
    62 61   - [Windows and SFTP](#windows-and-sftp)
    63 62   - [Foreground vs Background (Important note about clients)](#foreground-vs-background-important-note-about-clients)
    64 63   
    skipped 320 lines
    385 384  ```
    386 385   
    387 386  Then make sure that the `go/bin/` directory is in your `$PATH`
    388  - 
    389  -## Permission denied (publickey).
    390  -Unfortunately the golang `crypto/ssh` upstream library does not support `rsa-sha2-*` algorithms, and work is currently ongoing here:
    391  - 
    392  -https://github.com/golang/go/issues/49952
    393  - 
    394  -So until that work is completed, you will have to generate a different (non-rsa) key. I recommend the following:
    395  - 
    396  -```
    397  -ssh-keygen -t ed25519
    398  -```
    399 387   
    400 388   
    401 389  ## Windows and SFTP
    skipped 15 lines
  • ■ ■ ■ ■ ■ ■
    go.mod
    skipped 5 lines
    6 6   github.com/ActiveState/termtest/conpty v0.5.0
    7 7   github.com/creack/pty v1.1.18
    8 8   github.com/go-ping/ping v1.1.0
     9 + github.com/justincormack/go-memfd v0.0.0-20170219213707-6e4af0518993
    9 10   github.com/nicocha30/gvisor-ligolo v0.0.0-20220711100921-110ade85d411
    10 11   github.com/pkg/sftp v1.13.5
    11  - golang.org/x/crypto v0.2.0
     12 + golang.org/x/crypto v0.3.0
    12 13   golang.org/x/sys v0.2.0
    13 14  )
    14 15   
    skipped 1 lines
    16 17   github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
    17 18   github.com/google/btree v1.1.2 // indirect
    18 19   github.com/google/uuid v1.3.0 // indirect
    19  - github.com/justincormack/go-memfd v0.0.0-20170219213707-6e4af0518993 // indirect
    20 20   github.com/kr/fs v0.1.0 // indirect
    21 21   github.com/stretchr/testify v1.7.1 // indirect
    22 22   golang.org/x/net v0.2.0 // indirect
    skipped 4 lines
  • ■ ■ ■ ■ ■ ■
    go.sum
    skipped 381 lines
    382 382  golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw=
    383 383  golang.org/x/crypto v0.2.0 h1:BRXPfhNivWL5Yq0BGQ39a2sW6t44aODpfxkWjYdzewE=
    384 384  golang.org/x/crypto v0.2.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4=
     385 +golang.org/x/crypto v0.3.0 h1:a06MkbcxBrEFc0w0QIZWXrH/9cCX6KJyWbBOIwAn+7A=
     386 +golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4=
    385 387  golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
    386 388  golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
    387 389  golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
    skipped 354 lines
  • ■ ■ ■ ■ ■
    pkg/storage/store_windows.go pkg/storage/store_other.go
     1 +//go:build !linux
    1 2  package storage
    2 3   
    3 4  import (
    skipped 7 lines
Please wait...
Page is in error, reload to recover