본문 바로가기

프로그래밍/Web

javascript 로 POST값 넘겨주기


POST['post'] = hehe

POST['post2'] = hehe2


post 값은 hehe post2 는 hehe 값을 넘겨주어야 한다.


javascript 로 POST 값을 넘겨주는 방법은


document.body.innerH TM L + = "<form action='"

+ location.href+ "' method='post' id='frm'> <inpu

t type='hidden' name='post' value='hehe' /> <i

nput type='hidden' name='post2' value='hehe2'

/> </form>";

document.getElem entById("frm").submit();


이소스를 웹 개발자 도구에 콘솔에 들어가 입력해주면 된다.

'프로그래밍 > Web' 카테고리의 다른 글

SQL Injection 필터링 - substr,ascii,infromation_schema  (0) 2013.12.19
set character set gbk 취약점  (0) 2013.12.18
MySQL]root 비밀번호 변경방법  (0) 2013.12.09
[PHP] textarea  (0) 2013.12.09
WebShell 우회 등록  (0) 2013.12.05