如何启用Debian的喘息suidperl?(How to enable suidperl in D

2019-10-19 07:38发布

我有一个属于root用户和具有setuid的Perl脚本。

在这个脚本中,我改变作为参数传递的文件的所有者。

但在运行此脚本我得到

chown: changing ownership of `file': Operation not permitted

有人告诉我,脚本默认使用suidperl setuid的运行如果启用。

但我不这样认为是在我的情况发生。

谁能帮我在这件事情? 我使用Debian喘息。 我的Perl版本是5.14.2。 我试过了

apt-get install perl-suid

但没有奏效。

apt-cache search perl

没有给我在Perl为SUID相关的候选人。

这是我的Perl程序

#! /usr/bin/perl -T

use Cwd 'abs_path';

sub check_path {
  my $file = $_[0];

  $file = abs_path($file);
  if ($file =~ /^\/home\/abc\/dir1\//) {
    return 1;
  }
  else {
    return 0;
    print("You can only update permissions for files inside /home/abc/dir1/ directory\n");
  }
}

if (@ARGV == 1) {
  if (&check_path($ARGV[0]) == 1) {
    $ENV{PATH} = "/bin:/usr/bin";
    my $command = "chown abc:abc " . $ARGV[0];
    if ($command =~ /^(.*)$/) {
      $command = $1;
    }

    $result = `$command`;
  }
}
elsif ((@ARGV == 2) && ($ARGV[0] eq "-R")) {
  if (&check_path($ARGV[1]) == 1) {
    $ENV{PATH} = "/bin:/usr/bin";
    my $command = "chown -R abc:abc " . $ARGV[1];
    if ($command =~ /^(.*)$/) {
      $command = $1;
    }
    $result = `$command`;
  }
}
else {
  print("Sorry wrong syntax. Syntax: perl /home/abc/sbin/update_permission.pl [-R] file_path");
}

Answer 1:

这可能是太晚了你,但我有同样的问题,使用下面这个简单的C包装(从恬不知耻采取http://www.blyberg.net/downloads/suid-wrapper.c ):

#include <unistd.h>
#include <errno.h>

main( int argc, char ** argv, char ** envp )
{
    if( setgid(getegid()) ) perror( "setgid" );
    if( setuid(geteuid()) ) perror( "setuid" );
    envp = 0; /* blocks IFS attack on non-bash shells */
    system( "/path/to/bash/script", argv, envp );
    perror( argv[0] );
    return errno;
}

替换的路径到脚本的C代码路径,编译

gcc -o suid-wrapper suid-wrapper.c

并设置与权限

chmod 6755 suid-wrapper

suidperl IST不再是一种选择,它已经没有用perl 5.12更换(见perl5120delta,即去除http://search.cpan.org/~shay/perl-5.20.2/pod/perl5120delta.pod )。



文章来源: How to enable suidperl in Debian wheezy?
标签: perl debian suid