Can the web server execute a command in my Linux environment, and the Linux environment treat it as a request coming from me not from the server?
In other words, how can I change the web server's identity into mine?
Can the web server execute a command in my Linux environment, and the Linux environment treat it as a request coming from me not from the server?
In other words, how can I change the web server's identity into mine?
You could have the webserver run a script which calls a properly configured sudo
to execute commands as another user.
Alternatively, if you're using Apache then you could use mod_suexec, which allows you to run commands as a different user straight from the webserver.