People Kept Complaining This Restaurant Sucked; Look What They Found Out 12 years agoGuests with smartphones are subverting their own restaurant experience. 0ThreadHN
CVE-2014-6271: Remote code execution through bash 12 years ago"A CGI script written in bash"You're killin' me here. If you expose a shell script directly to the network, you're exposing a shell and deserve to be pwned. 0ThreadHN
Write a program that makes 2 + 2 = 5 12 years ago #!/bin/bash tty if [[ $? -ne 0 ]] ; then # command returned nonzero echo "not a tty" else # command returned zero n=$? ((n=$n+2)) ((n=$n+2)) echo "0+2+2=$n"; fi 0ThreadHN