Running a perl cgi as root with *proper* security

前端 未结 1 754
别跟我提以往
别跟我提以往 2021-01-16 09:51

I\'ve the need to run one Perl cgi as root. I already understand most of the security concerns of doing this but let me explain first.

The Perl cgi could run as the

相关标签:
1条回答
  • 2021-01-16 10:33

    I would likely try to investigate one of two options, both fairly similar.

    The first is a job engine. Your CGI would do nothing but post a request to the engine queue. The client would come back and poll for results. Works well if you already have such an asynchronous queue set up. The engine itself would run as root to be able to run requests. Requests would not, of course, include actual commands to run - security is still a significant requirement.

    The second option is a daemon. It would listen on an internal port (only on the localhost adapter, perhaps), and receive the requests. It would then return the results on the connection. If your CGI and daemon are both in perl, you could even just serialise via Storable, though I'd generally prefer JSON - it's not always bigger than Storable, and it's not generally a lot bigger than Storable. But it's fast, secure, and amenable to both reasonable tracing without modification and may also be good for sending back to the client without modification, depending on your needs.

    Again, security - you don't send commands to run or SQL phrases, you send requests and parameters. But that's the same as your CGI code.

    Both of these options require an extra process (or more). But they also avoid a lot of the overhead - you don't need to reinitialise the C runtime library each time, you don't need to recompile perl code each time, etc., and they take care of privileges outside your CGI code.

    0 讨论(0)
提交回复
热议问题