Executing a shell script that requires sudo from a web app

限于喜欢 提交于 2019-12-13 02:02:08

问题


Given that the web application doesn't have su privileges, I'd like to execute a shell script that requires sudo. I'd also like to avoid having the user input the password. What are my options? This is basically what I'm trying to do.

Wicket Application (Form for changing the IP)

@Override
protected void onSubmit() {
    System.out.println("Submitted");            
    try {
        Shell.updateIp("eth0", "192.168.217.129");
    } catch (IOException e) {
        e.printStackTrace();
    }
}

Shell.java

public static void updateIp(String ethernetInterface, String ip) throws IOException {
    ProcessBuilder builder = new ProcessBuilder("/home/keeboi/Desktop/iptool.sh", ethernetInterface, ip);
    Process child = builder.start();
    Network.readOutput(child);
    child.destroy();
}

iptool.sh executes a runnable jar.

iptool.sh

#!/bin/sh
sudo java -jar changeip.jar $1 $2

And I'm getting:

sudo: no tty present and no askpass program specified
Sorry, try again.
sudo: no tty present and no askpass program specified
Sorry, try again.
sudo: no tty present and no askpass program specified
Sorry, try again.
sudo: 3 incorrect password attempts

Again, I'd like to emphasize that the web app isn't given any su privileges and I'd like to avoid asking the user for password.

Edit:

I've already tried adding keeboi ALL = NOPASSWD: /home/keeboi/Desktop/iptool.sh to my /etc/sudoers but it still requires a password.

Update

Added keeboi ALL = NOPASSWD: /home/keeboi/Desktop/changeip.jar too, no dice.


回答1:


just add NOPASSWD in /etc/sudoers:

user     ALL = NOPASSWD: /home/keeboi/Desktop/iptool.sh

That switches password check off.



来源:https://stackoverflow.com/questions/11336952/executing-a-shell-script-that-requires-sudo-from-a-web-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!