gpt4 book ai didi

linux - 如何在 Linux 中限制用户命令

转载 作者:IT王子 更新时间:2023-10-29 00:24:27 27 4
gpt4 key购买 nike

关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

2年前关闭。




Improve this question




我在一个组中有一个用户:“演示”。
我想设置这个用户只能运行 10 个命令的策略,比如 vim , nano , cd , 等等。
或者,将策略设置为对除 ssh 之外的所有命令具有访问权限和 cat命令。

最佳答案

有很多不同的方法可以实现这一目标。我将列出几种可能的解决方案之一。

我建议使用几个不同的保护层来防止用户运行他们不应该被允许访问的命令。这里的所有说明都假设用户有自己的 /home/[username]目录,他们的 shell 是 /bin/bash并且您希望他们在登录系统时使用 bash shell。

1) 将用户的 bash 更改为受限 bash 模式,以便他们无法更改目录 (如果您的系统上没有受限的 bash 模式,this link 会提供帮助并为您提供更多信息)chsh -s /bin/rbash [username]
2) 更改目录权限,以便只有用户可以编辑其主目录的内容
chmod 755 /home/[username]
3) 删除用户的.bashrc文件
rm /home/[username]/.bashrc This site有更多关于为什么删除 .bashrc 可能是个好主意的信息。在这种情况下。

4) 创建一个 .bash_profile并为要禁用的所有命令添加“安全”别名

./bash_profile 文件示例

alias apt-get="printf ''"  
alias aptitude="printf ''"
[...]
alias vi="vi -Z" #this is vi's safe mode and shell commands won't be run from within vi
alias alias="printf ''"

A 请查收 the full list of bash commands想要查询更多的信息。您必须确保 alias alias="printf ''" command 是列表中的最后一个命令,否则您将失去为所有这些命令设置别名的能力。

备注
运行下面的命令将搜索您系统上几乎所有可用的命令,并输出一个现成的文件,几乎所有可用的命令都将预先设置别名。 [命令是 test命令 在 bash 中。因此,如果您在文件中看到它,则这不是错误。
#search /bin and /usr/bin for any commands that exist on our system
ls /bin -1 > commands_on_system.txt && ls /usr/bin -1 >> commands_on_system.txt

#format and save this information to a bash variable
IFS=$'\n' GLOBIGNORE='*' command eval 'COMMANDS_ON_SYSTEM=($(cat ./commands_on_system.txt))'
IFS=$'\n' COMMANDS_ON_SYSTEM=($(sort <<<"${COMMANDS_ON_SYSTEM[*]}"))
unset IFS

#save these commands in aliased format for easy usage
for linux_command in "${COMMANDS_ON_SYSTEM[@]}"
do :
#you can change how this works to automatically
#setup the command file for you
echo "alias ${linux_command}=\"printf ''\"" >> ./startup_functions_for_beginners.sh
done

5) 通过将 vi 命令别名为受限模式来禁用 vi 中的 shell 命令
语法为 alias vi="vi -Z" ,但请参阅 this site想要查询更多的信息。

6) 更改用户的所有权 .bash_profile Root chown root:root /home/[username]/.bash_profile
7) 最后,删除用户 .bash_profile的写权限 chmod 755 /home/[username/.bash_profile]
现在,当用户登录时,他们将无法更改目录,您不希望他们使用的所有命令都将输出与用户按下 [ENTER] 相同的信息。未指定命令的键,以及您的 /bin/bash功能保持不变。

根据您选择或不以这种方式别名的功能,用户可能仍然能够绕过您实现的某些控件。然而,由于我们实现了一些安全缓冲区,用户真的必须了解计算机系统才能做任何危险的事情。

在相关说明和您可能想要考虑的事情上,如果您将这些别名直接放入每个用户的 .bash_profile您将难以维护哪些函数应该和不应该别名,并且如果您需要更改任何东西的别名,则必须单独更改所有这些。此外,由于用户可以使用 vimvi查看文件,他们可以看到他们的内容 .bash_profile并了解他们有什么限制,没有什么限制。

为了解决这个问题,我建议。

1) 将所有别名放在用户无法访问的目录中(将 .bash_profile 的内容粘贴到此处)
/[path_to_file]/startup_functions_for_beginners.sh
2) 将别名输入到他们的 .bash_profile

改进的 ./bash_profile 文件示例
if [[ -f /[path_to_file]/startup_functions_for_beginners.sh ]]; then
. /[path_to_file]/startup_functions_for_beginners.sh
fi

这应该让您继续前进,但请记住,几乎总有方法可以规避限制。

此外,请随意重新混合此答案中的信息以满足您的需求。这些绝对可以与许多其他限制相结合。

问:我需要用户有权访问 fgbg ,但我不希望他们能够访问 aptitudebash
alias apt-get="printf ''"  #the user won't be able to run this  
alias aptitude="printf ''" #the user won't be able to run this
alias bash="printf ''" #the user won't be able to run this
#alias fg="printf ''" #this will run as a bash built-in
#alias bg="printf ''" #you actually don't need to include these in your script

常用命令列表按照此 Harvard Website (并非详尽无遗)

当您将程序安装到 Linux 时,您可以使用的内容会发生变化。我建议您运行上面第 4 步中列出的命令,以帮助在安装后查找新命令。

编辑器应该小心,因为有些编辑器允许从程序内部执行 shell 命令
nano
emacs
pico
sed
vi
vim

其他一切
exit
logout
passwd
rlogin
ssh
slogin
yppasswd
mail
mesg
pine
talk
write
as
awk
bc
cc
csh
dbx
f77
gdb
gprof
kill
ld
lex
lint
make
maple
math
nice
nohup
pc
perl
prof
python
sh
yacc
xcalc
apropos
find
info
man
whatis
whereis
cd
chmod
chown
chgrp
cmp
comm
cp
crypt
diff
file
grep
gzip
ln
ls
lsof
mkdir
mv
pwd
quota
rm
rmdir
stat
sync
sort
tar
tee
tr
umask
uncompress
uniq
wc
cat
fold
head
lpq
lpr
lprm
more
less
page
pr
tail
zcat
xv
gv
xpdf
ftp
rsync
scp
alias
chquota
chsh
clear
echo
pbm
popd
pushd
script
setenv
stty
netstat
rsh
ssh
bg
fg
jobs
^y
^z
clock
date
df
du
env
finger
history
last
lpq
manpath
printenv
ps
pwd
set
spend
stty
time
top
uptime
w
who
whois
whoami
gimp
xfig
xv
xvscan
xpaint
kpaint
mplayer
realplay
timidity
xmms
abiword
addbib
col
diction
diffmk
dvips
explain
grap
hyphen
ispell
latex
pdfelatex
latex2html
lookbib
macref
ndx
neqn
nroff
pic
psdit
ptx
refer
roffbib
sortbib
spell
ispell
style
tbl
tex
tpic
wget
grabmode
import
xdpyinfo
xkill
xlock
xterm
xwininfo
html2ps
latex2html
lynx
netscape
sitecopy
weblint

关于linux - 如何在 Linux 中限制用户命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21498667/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com