在 perl 脚本中执行 setuid perl 脚本
我有两个 Perl 脚本:
getPwd.pl - 返回密码的 setuid Perl 脚本
子 getOraPwd{ ... 返回 getOraPwd; } getOraPwd();
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:
getPwd.pl - setuid perl script that returns a password
sub getOraPwd{
...
return getOraPwd;
}
getOraPwd();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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用 setuid Perl 脚本与调用系统上的任何其他可执行文件没有什么不同:
但是,我建议您不要使用 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:
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
undersudo
.