在 perl 脚本中执行 setuid perl 脚本

发布于 2024-12-16 16:14:51 字数 460 浏览 1 评论 0原文

我有两个 Perl 脚本:

  1. getPwd.pl - 返回密码的 setuid Perl 脚本

    子 getOraPwd{ ... 返回 getOraPwd; } getOraPwd();

  2. testDBConn.pl

我想在 testDBConn.pl 脚本中调用 getPwd.pl 并将 getPwd 脚本的结果分配给 $password 变量以连接到数据库。请记住,getPwd.pl 脚本是 setuid,因此设置 testDBConn.pl 来运行 getPwd.pl,

例如。

$username="blah";
$password=result from getPwd.pl
$dsn=qq{...};
$dbh=DBI->connect($dsn, $username, $password)};

I have two perl scripts:

  1. getPwd.pl - setuid perl script that returns a password

    sub getOraPwd{
    ...
    return getOraPwd;
    }
    getOraPwd();

  2. testDBConn.pl

I want to call getPwd.pl in the testDBConn.pl script and assign the result of the getPwd script to the $password variable to connect to a database. Remember the getPwd.pl script is setuid, and therefore setup for the testDBConn.pl to run getPwd.pl

eg.

$username="blah";
$password=result from getPwd.pl
$dsn=qq{...};
$dbh=DBI->connect($dsn, $username, $password)};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲歌长辞 2024-12-23 16:14:51

调用 setuid Perl 脚本与调用系统上的任何其他可执行文件没有什么不同:

my $password = `getPwd.pl`;

但是,我建议您不要使用 setuid Perl 脚本。任何语言的 setuid 可执行文件都有很多陷阱。此外,Perl 5.10.1 中不推荐使用它们,并在 5.12 中删除。更好的替代方法是在 sudo 下运行 getPwd.pl

Calling a setuid Perl script is no different from calling any other executable on the system:

my $password = `getPwd.pl`;

However, I would encourage you not to use a setuid Perl script. There are a lot of pitfalls with setuid executables in any language. Additionally, using them was deprecated in Perl 5.10.1 and removed in 5.12. A better alternative is to run getPwd.pl under sudo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文