タグ bash -c
人気順 10 users 50 users 100 users 500 users 1000 usersBash: わかるとほんのちょっとうれしくなること5選 - Qiita
Bash の勉強を始めた頃、頭がごちゃごちゃになって調べたこと、わかるとほんのちょっとうれしくなったことを5個ピックアップしてみました。 - 目次 - alias sudo='sudo ' と alias sudo='sudo -E ' bash -c /dev/null grep -rl xargs で任意の位置に引数を展開する - 説明 - 1. alias sudo='sudo ' alias コマンドを使... 続きを読む
shellshock - What does env x='something' bash -c "command" do and why is it insecure? - Unix & Linux Stack Exchange
It's not the echo that gets executed. its the function definition of x. If the function defined in x does some sneaky underhanded work, there is no way bash can check the return value if function x we... 続きを読む
先程から騒ぎになっているbashの脆弱性について | 上田ブログ
確認しましたwwww ueda@remote:~$ x='() { :;}; echo vulnerable' bash -c "echo this is a test" vulnerable this is a test xの値であるはずの「() { :;}; echo vulnerable」の、echo vulnerableの部分がなぜか実行されています。 bashの文法ではシングルクォートで... 続きを読む