mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2025-12-31 04:31:40 +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();;
|
|
---
|