Skip to content

Commit d3f2e7d

Browse files
authored
Do not display private key in wallet command (#1804)
1 parent b107947 commit d3f2e7d

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
lines changed

cmd/boost/wallet_cmd.go

+28-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import (
66
"encoding/json"
77
"fmt"
88
"os"
9+
"os/signal"
910
"strings"
11+
"syscall"
1012

1113
"github.com/dustin/go-humanize"
1214
"github.com/filecoin-project/boost/cli/node"
@@ -18,6 +20,7 @@ import (
1820
lcli "github.com/filecoin-project/lotus/cli"
1921
"github.com/filecoin-project/lotus/lib/tablewriter"
2022
"github.com/urfave/cli/v2"
23+
"golang.org/x/term"
2124
)
2225

2326
var walletCmd = &cli.Command{
@@ -388,13 +391,32 @@ var walletImport = &cli.Command{
388391

389392
var inpdata []byte
390393
if !cctx.Args().Present() || cctx.Args().First() == "-" {
391-
reader := bufio.NewReader(os.Stdin)
392-
fmt.Print("Enter private key: ")
393-
indata, err := reader.ReadBytes('\n')
394-
if err != nil {
395-
return err
394+
if term.IsTerminal(int(os.Stdin.Fd())) {
395+
fmt.Print("Enter private key(not display in the terminal): ")
396+
397+
sigCh := make(chan os.Signal, 1)
398+
// Notify the channel when SIGINT is received
399+
signal.Notify(sigCh, syscall.SIGINT, syscall.SIGTERM)
400+
401+
go func() {
402+
<-sigCh
403+
fmt.Println("\nInterrupt signal received. Exiting...")
404+
os.Exit(1)
405+
}()
406+
407+
inpdata, err = term.ReadPassword(int(os.Stdin.Fd()))
408+
if err != nil {
409+
return err
410+
}
411+
fmt.Println()
412+
} else {
413+
reader := bufio.NewReader(os.Stdin)
414+
indata, err := reader.ReadBytes('\n')
415+
if err != nil {
416+
return err
417+
}
418+
inpdata = indata
396419
}
397-
inpdata = indata
398420

399421
} else {
400422
fdata, err := os.ReadFile(cctx.Args().First())

0 commit comments

Comments
 (0)