Semicolon
;
%3b
Both
New Line
\n
%0a
Background
&
%26
Both (second output generally shown first)
Pipe
|
%7c
Both (only second output is shown)
AND
&&
%26%26
Both (only if first succeeds)
OR
||
%7c%7c
Second (only if first fails)
Sub-Shell
``
%60%60
Both (Linux-only)
$()
%24%28%29
Bypass filters :
${PATH:0:1} -> / echo ${LS_COLORS:10:1} -> ;
https://github.com/Bashfuscator/Bashfuscatorarrow-up-right
Last updated 2 years ago