首页 > 解决方案 > 从 Golang 更改 linux 用户密码不起作用

问题描述

我需要一个 goroutine 内部的单行代码来更改 linux 中的用户密码。

从命令行运行的命令:

      echo 'pgc:password' | sudo chpasswd  //"pgc" is the username and "password" 
                                           // is the password I'm changing it to. 

但这不适用于我的 Go 程序。我尝试过替换其他单行命令,例如:drm file.txt、touch file.txt 等。

这些都有效。

Go 程序位于一个大项目的一个包中,但我现在只是尝试直接从命令行运行它(不用作函数,而是一个独立的 .go 文件)。

我的代码:

    //I have tried changing back and forth between the package that changesystempassword.go is in 
    // and main, but that has no effect

    package main //one-liners DON'T WORK if package is the package this go file is in

    import (
        "fmt"
        "os/exec"
        //"time"
    )

    func main() {
        err := exec.Command("echo", "'pgc:password'", "|", "sudo", "chpasswd).Run()

        //time.sleep(time.Second) - tried adding a sleep so it would have time?

        if err != nil {
            fmt.Println("Password change unsuccessful"
        } else {
            fmt.Println("Password change successful")
        }
    }

程序运行时的结果(命令行中的./changesystempassword)是命令行显示“密码更改成功”。但猜猜怎么了。它没有改变。我在网上和 Stack Exchange 上找到了一些类似的示例,但我使用的是在那里找到的解决方案,但它不起作用。

标签: linuxpasswordsgo

解决方案


文档说“使用给定的参数执行命名程序”。甚至还有一个特定的段落:

与来自 C 和其他语言的“系统”库调用不同,os/exec 包有意不调用系统 shell,也不扩展任何 glob 模式或处理通常由 shell 完成的其他扩展、管道或重定向。

因此问题中的代码echo使用参数'pgc:password'|sudo和执行chpasswd。这是成功的,因为echo可以完全打印这四个字符串。

解决方案是chpasswd直接启动并写入其标准输入。这是一个最小的例子:

func main() {
    cmd := exec.Command("chpasswd")
    stdin, err := cmd.StdinPipe()
    io.WriteString(stdin, "pgc:password")
}

我建议将官方示例中显示的代码调整为带有错误检查的安全代码。

您也可以使用sudo chpasswd代替chpasswd. 请记住,sudo在这种情况下将无法要求输入密码。一种解决方法是在适当的情况下使用 NOPASSWD 配置 sudoers。


推荐阅读