Created
November 6, 2012 20:52
-
-
Save mhseiden/4027452 to your computer and use it in GitHub Desktop.
Simple Shell Injection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Not an immediate vector | |
touch ‘safe_file.txt$(echo “Shell Injection” > safe_file.txt)’ | |
# Quite unsafe | |
touch “bad_file.txt$(echo “Shell Injection” > bad_file.txt)” |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment