How I found a Zero Day in W3 Schools

While using the W3Schools.com C Compiler I decided to play around with the shell. Link to the compiler : https://www.w3schools.com/c/tryc.php?filename=demo_compiler #include #include int main() { system(“ls -lra /etc/;set”); return 0; } Summary:The provided code executes a system command to list the contents of the /etc/ directory and display the environment variables. Let’s analyze it in…