bazaarLinuxOther CommandsOther Linux Commands # find files and pretty print them find /home -type f -printf "%f\t%p\t%u\t%g\t%m\n" 2>/dev/null | column -t # find .php files which do not contain "_SECURE_" rg --files-without-match "_SECURE_" **/*.phpReverse Shells