Compare commits
No commits in common. "master" and "v1.2.0-stable" have entirely different histories.
master
...
v1.2.0-sta
13
Main.go
13
Main.go
@ -3,17 +3,14 @@ package main
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/SommerEngineering/SSHTunnel/Tunnel"
|
"github.com/SommerEngineering/SSHTunnel/Tunnel"
|
||||||
"github.com/howeyc/gopass"
|
|
||||||
"golang.org/x/crypto/ssh"
|
"golang.org/x/crypto/ssh"
|
||||||
"log"
|
|
||||||
"os"
|
|
||||||
"runtime"
|
"runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
// Show the current version:
|
// Show the current version:
|
||||||
log.Println(`SSHTunnel v1.3.0`)
|
fmt.Println(`SSHTunnel v1.2.0`)
|
||||||
|
|
||||||
// Allow Go to use all CPUs:
|
// Allow Go to use all CPUs:
|
||||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||||
@ -26,13 +23,7 @@ func main() {
|
|||||||
if password == `` {
|
if password == `` {
|
||||||
// Promt for the password:
|
// Promt for the password:
|
||||||
fmt.Println(`Please provide the password for the connection:`)
|
fmt.Println(`Please provide the password for the connection:`)
|
||||||
if pass, errPass := gopass.GetPasswd(); errPass != nil {
|
fmt.Scanln(&password)
|
||||||
log.Println(`There was an error reading the password securely: ` + errPass.Error())
|
|
||||||
os.Exit(1)
|
|
||||||
return
|
|
||||||
} else {
|
|
||||||
password = string(pass)
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,6 @@ SSHTunnel is a tiny small program to tunnel something through a SSH without any
|
|||||||
- At the moment, SSHTunnel uses only the password authentication methods. Therefore, it is currently not possible to use e.g. a certificate, etc. Nevertheless, the implementation of this feature is possible.
|
- At the moment, SSHTunnel uses only the password authentication methods. Therefore, it is currently not possible to use e.g. a certificate, etc. Nevertheless, the implementation of this feature is possible.
|
||||||
- The configuration must be provided by using the command-line arguments. It is currently not possible to use e.g. a configuration file.
|
- The configuration must be provided by using the command-line arguments. It is currently not possible to use e.g. a configuration file.
|
||||||
- You can avoid the password argument if you prefer to provide the password on demand.
|
- You can avoid the password argument if you prefer to provide the password on demand.
|
||||||
- [Ocean Remote Connections](https://github.com/SommerEngineering/OceanRemoteConnections) is a simple GUI for SSH Tunnel, PuTTY, RDP and WinSCP.
|
|
||||||
|
|
||||||
### Download
|
### Download
|
||||||
Go and get the latest release from the [release page](https://github.com/SommerEngineering/SSHTunnel/releases).
|
Go and get the latest release from the [release page](https://github.com/SommerEngineering/SSHTunnel/releases).
|
||||||
|
Loading…
Reference in New Issue
Block a user