那么,在/hoome/lee下的所有脚本,只有给了执行全线,都可以直接打文件名执行
/home/lee#cat abc
echo ok
/home/lee#abc
ok
/home/lee#file abc
abc: ASCII text
/home/lee#作者: ZealeS 时间: 2004-12-29 21:03 标题: 问一下我的目录下文件执行的问题。 这个也是,不过我现在是无论那个目录都要。
把我郁闷怀了。作者: dradhzn 时间: 2004-12-29 22:44 标题: 问一下我的目录下文件执行的问题。 are you using root to execute the program ? check your ~/.profile , add ":." to the end of the PATH if it is not there .
else what i could think is the LIBPATH(AIX) / LD_LIBRARY_PATH (SOLARIS) if you use your script call someone else 's program . the last possible setting could be minor . since you could run ./progarm , the "#!/usr/bin/perl5" vs "#!/usr/local/bin/perl5 " problem should not happen here , just add it for your reference .作者: ZealeS 时间: 2004-12-30 00:30 标题: 问一下我的目录下文件执行的问题。 刚才试了一下,原来的PATH的问题。
我原来的PATH=/bin:/sbin:/usr/local/bin
我把他改为PATH=$PATH:/usr/local/bin
就行了。
实际上还是不明所以
因为echo $PATH的结果前后是一样的。作者: 寂寞烈火 时间: 2004-12-30 00:36 标题: 问一下我的目录下文件执行的问题。
大家不妨先猜猜看, 若沒人答中, 那我再試試說明一下...作者: dradhzn 时间: 2004-12-30 01:26 标题: 问一下我的目录下文件执行的问题。 reason why is that "." means current directory , it might accidently run a wrong program if the . is in the path , for security reason, root will not have "." in path by default , my suggestion is solely for troubleshooting only .作者: 網中人 时间: 2004-12-30 01:35 标题: 问一下我的目录下文件执行的问题。 could you tell us what "security reason" we may encounter by an example?
thanks... 作者: dradhzn 时间: 2004-12-30 01:55 标题: 问一下我的目录下文件执行的问题。 alright , seems can't off the line today
path is used for search executable , from left to right .
for example if the . is somehow localted before /usr/bin , or /usr/sbin etc, etc, i could simply wirte a script "su" to simulate the default su behavior to fool people and capture the root passwd some where . let say i have this su ready and copy this "su" in /tmp directory , if someone have the "." in wrong place , and execute "su" command from /tmp , Bing Go !作者: 網中人 时间: 2004-12-30 08:44 标题: 问一下我的目录下文件执行的问题。 very good!
還有人能舉更多例子嗎?作者: lightspeed 时间: 2004-12-30 09:26 标题: 问一下我的目录下文件执行的问题。 The possibility of unexpected behavior is higher if "." is early in your search path, but even the last position is not safe: consider the possibility of misspellings. A cracker could create a malicious /tmp/hwo, a misspelling of the common who command, and hope you type "hwo" sometime while you're in /tmp. As there is no earlier "hwo" in your search path, you'll unintentionally run the cracker's ./hwo program. (Which no doubt prints, `basename $SHELL`: hwo: command not found to stderr while secretly demolishing your filesystem.) Play it safe and keep "." out of your search path.作者: 網中人 时间: 2004-12-30 10:50 标题: 问一下我的目录下文件执行的问题。 是的, dradhzn & lightspeed 兄已指出可能的潛在危險了.
若 . 放在 PATH 的前面, 那只要在當前目錄寫一個 script , 以最常用的命令來命名就行. 如 cd, ls, rm, exit 等等....
然後裡面可執行任何你想要的其它命令,
才執行原有名令,
再將 script 刪掉.
比方說, 你寫一個 ls 的 script: