HackChang

[Suninatas] 써니나타스 3번 문제 풀이 본문

W4RG4M3/W3B

[Suninatas] 써니나타스 3번 문제 풀이

HackChang 2020. 7. 30. 20:18

LEVEL 3

이번 문제도 웹 문제다.

문제에는 공지게시판에 글을 적으라고 되어있는데

우선 해당 페이지의 소스를 보도록 하겠다.

 


<!DOCTYPE html>

<html>
<head>
    <title>Game 03</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <link rel="shortcut icon" href="/static/img/game.ico" />
</head>
<body>
    <table width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td align="center">
                <table width="1000" cellpadding="0" cellspacing="0">
                    <tr height="20">
                        <td width="100%" bgcolor="000000" align="right">
                            <input type="button" name="main_btn" value="main" class="btn_check" style="width: 60" onclick="location.href = '/'">&nbsp<input type="button" name="main_btn" value="Back" class="btn_check" style="width: 60" onclick="history.back()"></td>
                    </tr>
                    <tr height="500">
                        <td bgcolor="000000" style="line-height: 15" align="center"><font color="white" size="10"><b>Write articles in Notice Board!</b></font></td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</body>
</html>
<!--M@de by 2theT0P-->

소스를 보면 텍스트만 존재하는 페이지인 것을 알 수 있고, 공지게시판에 글을 적어보기위해 해당 게시판을 들어가봤다.

 

따로 글쓰기 버튼이 존재하지 않았다.

 

공지게시판 말고 자유게시판은 글을 작성할 수 있을 것이라고 생각했다.

 

역시나 자유게시판은 게시물을 적을 수 있었고,

글쓰기 버튼을 눌러 글쓰기페이지로 넘어갔다.

 

URL을 보면 write라는 것을 볼 수 있고, 문제는 notice게시판에 글을 작성하는 것이기 때문에

free를 notice로 변경해봤다.

 

공지게시판 글쓰기가 나왔고, 한번 글을 작성해보도록 하겠다.

 

글쓰기 대신에 키값이 나와있는 메세지창을 띄웠고,

이 값으로 인증해서 클리어를 했다.

Comments