mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
Add split file-write
This commit is contained in:
parent
a9b046f74b
commit
9745f89ea4
@ -6,6 +6,12 @@ functions:
|
|||||||
TF=$(mktemp)
|
TF=$(mktemp)
|
||||||
split $LFILE $TF
|
split $LFILE $TF
|
||||||
cat $TF*
|
cat $TF*
|
||||||
|
file-write:
|
||||||
|
- description: Data will be written in the current directory in a file named `xaa` by default. The input file will be split in multiple smaller files unless the `-b` option is used, pick a value in MB big enough.
|
||||||
|
code: |
|
||||||
|
TF=$(mktemp)
|
||||||
|
echo DATA >$TF
|
||||||
|
split -b999m $TF
|
||||||
command:
|
command:
|
||||||
- description: Command execution using an existing or newly created file.
|
- description: Command execution using an existing or newly created file.
|
||||||
code: |
|
code: |
|
||||||
|
Loading…
Reference in New Issue
Block a user