너도 당해봐라!
네이년!
나는 너무 화 가 낫다 ( 나는 너무 화가 났다. 가 옳은 표현 )
라는 누군가의 말이 떠오른다...
더 이상은 당할 순 없다...
너네도 한번 당해봐라!
일명 네이버 블로그 소스코드 펌질 하기
Code Type : C
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" >
<title>네이버 블로그 실제주소 알아내기</title>
<link rel= "shortcut icon" type= "image/icon" href= "../index.ico" >
<script type= "text/javascript" >
document.write( "현재 주소 : " +location.href);
str=location.href;
id=str.substr(str.indexOf( "ver.com" )+10,str.indexOf( "Redirect" )-str.indexOf( "ver.com" )-13);
document.write( "<br>id는 : " +id);
no=str.substr(str.indexOf( "logNo" )+8,str.length-1);
document.write( "<br>no는 : " +no+ "<br>" );
</script>현재 주소 : https:
네이버 블로그 주소를 쳐보세요. <input type= "text" name= "url" size= "50" >
<input type= "submit" value= "Submit" >
<input type= "reset" value= "Cancel" >
|
위의 코드를 naverurl.html 이라는 문서로 저장한뒤
네이버 블로그의 주소를 치면 실제 글의 내용만 나온다.
그뒤 배껴버리면 된다.
아... 짜증...
예를 들자면 http://blog.naver.com/ohyung?Redirect=Log&logNo=70003566757
위의 주소를 쳐 넣게 되면.
http://blog.naver.com/post/postView.jsp?blogId=ohyung&logNo=70003566757
이라는 글만의 주소가 나온다...
나머지는 알아서....