Can i setuid for perl script?

后端 未结 2 895
[愿得一人]
[愿得一人] 2021-01-19 19:29

I made a perl script to change owner of a file owned by some other user. Script is complete. My administrator save that in /sbin directory and set uid for it using chmod u+s

相关标签:
2条回答
  • 2021-01-19 20:07

    No, you cannot use setuid aka chmod +s on scripts. The script's interpreter would be the thing that would actually need to be setuid, but doing that is a really bad idea. REALLY bad.

    If you absolutely must have something written in Perl as setuid, the typical thing to do would be to make a small C wrapper that is setuid and executes the Perl script after starting. This gives you the best of both worlds in having a small and limited setuid script but still have a scripting language available to do the work.

    0 讨论(0)
  • 2021-01-19 20:16

    Many unix systems (probably most modern ones) ignore the suid bit on interpreter scripts, as it opens up too many security holes.

    However, if you are using perl < 5.12.0, you can run perl scripts with setuid set, and they will run as root. How it works is that when the normal perl interpreter runs, and detects that the file you are trying to execute has the setuid bit set, and it then executes a program called suidperl. Suidperl takes care of elevating the user's privileges, and starting up the perl interpreter in a super-secure mode. suidperl is itself running with setuid root.

    One of the consequences of this is that taint mode is turned on automatically. Other additional checks are also performed. You will probably see messages like:

    Insecure $ENV{PATH} while running setuid at ./foobar.pl line 3.
    

    perlsec provides some good information about securing such scripts.

    suidperl is often not installed by default. You may have to install it via a separate package. If it is not installed then you get this message:

    Can't do setuid (cannot exec sperl)
    

    Having said all of that - you would be much better off using sudo to execute actions with elevated privileges. It is much more secure as you can specify exactly what is allowed to be executed via the sudoers file.

    As of perl 5.12.0, suidperl was dropped. As a result, if you want to run a perl script on perl >= 5.12.0 with setuid set, you would have to write your own C wrapper. Again I recommend sudo as a better alternative.

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