페이지를 올리면
너무 
답을 공개하는것같아서
간단히 설명만할게

이단계에는

link버튼하나잇고

밑에 password를 치는 박스가잇는데

링크들어가면 php소스가대략

<pre style="line-height: normal; "><?phpif($_GET[id]){ </pre><pre style="line-height: normal; ">        $str= str_replace ~~~</pre><pre style="line-height: normal; ">        $str= str_replace ~~~</pre><pre style="line-height: normal; ">이런식으로 사용자가 입력한값을 str_replace를 통해서 여러가지로 바꾼다음에</pre><pre style="line-height: normal; ">그최종값이 결국 admin이면 password를 에코하는데</pre><pre style="line-height: normal; ">내가 php쪽은 문외한이라 얼추코드를 보니 어떤 스트링값을 넣어야 최종값이 admin이 되는지는 알겟는데</pre><pre style="line-height: normal; ">이걸 삽입하는 박스나 뭐 아무것도 없거든? 덩그라니 php소스만 몇줄잇는데</pre><pre style="line-height: normal; ">이러면 내가 답을 어디다가 삽입해야되는거야?</pre><pre style="line-height: normal; ">그니깐 결국 $_GET[id]를 햇을때 그값이 내가 입력한값이라는건데</pre><pre style="line-height: normal; ">쿠키로 id=내답 이렇게하고 f5눌러도 안되서..</pre><pre style="line-height: normal; ">도움점 ㅜㅜ</pre><pre style="line-height: normal; ">
</pre><pre style="line-height: normal; ">
</pre>








<pre style="line-height: normal; ">        <?php        $a = array("080", "097", "115", "115", "119", "111", "114", "100",         "032", "105", "115", "032", "091", "097", "115", "067", "049",         "049", "095", "099", "048", "068", "051", "033", "033", "093");        $password = '';        for($b=0; $b<26; $b++){                $password .= chr($a[$b]);        }        ?></pre><pre style="line-height: normal; ">
</pre><pre style="line-height: normal; ">코드가 저건데 딱봐도 $a 어레이 25개잇는거 다 다잇는것같은데</pre><pre style="line-height: normal; ">"080"을 string처럼 취급해놧는데 거기다가 다시 chr씌우면 어떻게되요?</pre><pre style="line-height: normal; ">
</pre>