Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.71 KB | None | 0 0
  1. <html><head>
  2. <meta http-equiv="Content-Language" content="vi">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <meta name="HandheldFriendly" content="true">
  5. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0">
  6. <style type="text/css">
  7. <!--
  8. a{
  9. color: blue;
  10. text-decoration: none;
  11. }
  12. a:hover{
  13. color: green;
  14. }
  15. .tip-guide
  16. {
  17. font-style: italic;
  18. display: inline-block;
  19. margin: 10px 0;
  20. }
  21. -->
  22. </style>
  23. <title>Nginx: Forbiden</title>
  24. <script type="text/javascript">
  25. <!--
  26. var onLoad=function(){
  27. try{
  28. // Begin Base64 define
  29. var Base64 = {
  30. // private property
  31. _keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
  32.  
  33. // public method for encoding
  34. encode : function (input) {
  35. var output = "";
  36. var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
  37. var i = 0;
  38.  
  39. input = Base64._utf8_encode(input);
  40.  
  41. while (i < input.length) {
  42.  
  43. chr1 = input.charCodeAt(i++);
  44. chr2 = input.charCodeAt(i++);
  45. chr3 = input.charCodeAt(i++);
  46.  
  47. enc1 = chr1 >> 2;
  48. enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
  49. enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
  50. enc4 = chr3 & 63;
  51.  
  52. if (isNaN(chr2)) {
  53. enc3 = enc4 = 64;
  54. } else if (isNaN(chr3)) {
  55. enc4 = 64;
  56. }
  57.  
  58. output = output +
  59. this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
  60. this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
  61.  
  62. }
  63.  
  64. return output;
  65. },
  66.  
  67. // public method for decoding
  68. decode : function (input) {
  69. var output = "";
  70. var chr1, chr2, chr3;
  71. var enc1, enc2, enc3, enc4;
  72. var i = 0;
  73.  
  74. input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
  75.  
  76. while (i < input.length) {
  77.  
  78. enc1 = this._keyStr.indexOf(input.charAt(i++));
  79. enc2 = this._keyStr.indexOf(input.charAt(i++));
  80. enc3 = this._keyStr.indexOf(input.charAt(i++));
  81. enc4 = this._keyStr.indexOf(input.charAt(i++));
  82.  
  83. chr1 = (enc1 << 2) | (enc2 >> 4);
  84. chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
  85. chr3 = ((enc3 & 3) << 6) | enc4;
  86.  
  87. output = output + String.fromCharCode(chr1);
  88.  
  89. if (enc3 != 64) {
  90. output = output + String.fromCharCode(chr2);
  91. }
  92. if (enc4 != 64) {
  93. output = output + String.fromCharCode(chr3);
  94. }
  95.  
  96. }
  97.  
  98. output = Base64._utf8_decode(output);
  99.  
  100. return output;
  101.  
  102. },
  103.  
  104. // private method for UTF-8 encoding
  105. _utf8_encode : function (string) {
  106. string = string.replace(/\r\n/g,"\n");
  107. var utftext = "";
  108.  
  109. for (var n = 0; n < string.length; n++) {
  110.  
  111. var c = string.charCodeAt(n);
  112.  
  113. if (c < 128) {
  114. utftext += String.fromCharCode(c);
  115. }
  116. else if((c > 127) && (c < 2048)) {
  117. utftext += String.fromCharCode((c >> 6) | 192);
  118. utftext += String.fromCharCode((c & 63) | 128);
  119. }
  120. else {
  121. utftext += String.fromCharCode((c >> 12) | 224);
  122. utftext += String.fromCharCode(((c >> 6) & 63) | 128);
  123. utftext += String.fromCharCode((c & 63) | 128);
  124. }
  125.  
  126. }
  127.  
  128. return utftext;
  129. },
  130.  
  131. // private method for UTF-8 decoding
  132. _utf8_decode : function (utftext) {
  133. var string = "";
  134. var i = 0;
  135. var c = c1 = c2 = 0;
  136.  
  137. while ( i < utftext.length ) {
  138.  
  139. c = utftext.charCodeAt(i);
  140.  
  141. if (c < 128) {
  142. string += String.fromCharCode(c);
  143. i++;
  144. }
  145. else if((c > 191) && (c < 224)) {
  146. c2 = utftext.charCodeAt(i+1);
  147. string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
  148. i += 2;
  149. }
  150. else {
  151. c2 = utftext.charCodeAt(i+1);
  152. c3 = utftext.charCodeAt(i+2);
  153. string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
  154. i += 3;
  155. }
  156.  
  157. }
  158.  
  159. return string;
  160. }
  161.  
  162. }
  163. // End Base64 define
  164.  
  165. var subject="PhimMoi.Net Báo Lỗi 403/IP 1.52.39.90";
  166. var body="";
  167. var url="mailto:phimmoi.net@gmail.com";
  168. var mailParam='?subject='+encodeURIComponent(subject);
  169.  
  170. var clientInfo=document.getElementById('client-info').innerText;
  171.  
  172. if(typeof clientInfo=="string")
  173. {
  174. mailParam+='&body='+encodeURIComponent(clientInfo);
  175. var cookie=document.getElementById('cookie').innerText;
  176. if(typeof cookie=="string")
  177. mailParam+=encodeURIComponent("\r\nCookie: "+Base64.encode(cookie));
  178. }
  179. url+=mailParam;
  180.  
  181. var linkObjs=document.getElementsByClassName('mail-link');
  182. if(typeof linkObjs=="object" && linkObjs.length>0)
  183. {
  184. for(var i=0;i<linkObjs.length;i++)
  185. {
  186. linkObjs[i].href=url;
  187. }
  188. }
  189. }
  190. catch(err)
  191. {
  192. console.error('Change link Err: '+err.message);
  193. }
  194. }
  195. -->
  196. </script>
  197. </head>
  198.  
  199. <body onload="onLoad();">
  200.  
  201. <p>
  202. <b><font size="5">Nginx: 403-Forbiden !</font></b></p><hr>
  203.  
  204. PhimMoi.Net kh&#xF4;ng th&#x1EC3; nh&#x1EAD;n di&#x1EC7;n &#x111;&#x1B0;&#x1EE3;c tr&#xEC;nh duy&#x1EC7;t c&#x1EE7;a b&#x1EA1;n. <br>
  205. &#x110;i&#x1EC1;u n&#xE0;y x&#x1EA3;y ra c&#xF3; th&#x1EC3; do b&#x1EA1;n x&#xE0;i &#x1EE9;ng d&#x1EE5;ng &#x1EA9;n danh khi duy&#x1EC7;t web ho&#x1EB7;c m&#xE1;y t&#xED;nh ho&#x1EB7;c &#x111;i&#x1EC7;n tho&#x1EA1;i c&#x1EE7;a b&#x1EA1;n c&#xF3; c&#xE0;i &#x1EE9;ng d&#x1EE5;ng &#x111;&#x1B0;&#x1EE3;c ch&#xE8;n m&#xE3; &#x111;&#x1ED9;c gi&#xFA;p hacker d&#xF9;ng m&#xE1;y c&#x1EE7;a b&#x1EA1;n &#x111;&#x1EC3; t&#x1EA5;n c&#xF4;ng phimmoi.net<br>
  206. <br>
  207. N&#x1EBF;u b&#x1EA1;n &#x111;ang s&#x1EED; d&#x1EE5;ng &#x1EE9;ng d&#x1EE5;ng &#x1EA9;n danh th&#xEC; h&#xE3;y chuy&#x1EC3;n sang tr&#xEC;nh duy&#x1EC7;t web b&#xEC;nh th&#x1B0;&#x1EDD;ng nh&#x1B0; Chrome hay Safari...
  208.  
  209.  
  210. N&#x1EBF;u b&#x1EA1;n cho r&#x1EB1;ng &#x111;&#xE2;y l&#xE0; 1 l&#x1ED7;i c&#x1EE7;a website hay Server, Vui l&#xF2;ng th&#xF4;ng b&#xE1;o cho
  211. m&#xEC;nh qua email:<font color="#0000FF"> <a class="mail-link" href="mailto:phimmoi.net@gmail.com?subject=PhimMoi.Net%20B%C3%A1o%20l%E1%BB%97i%20403/IP%201.52.39.90">phimmoi.net@gmail.com</a></font> k&#xE8;m theo nh&#x1EEF;ng th&#xF4;ng tin d&#x1B0;&#x1EDB;i &#x111;&#xE2;y:<br>
  212. <span class="tip-guide">(M&#x1EB9;o: B&#x1EA1;n c&#xF3; th&#x1EC3; click <a class="mail-link" href="mailto:phimmoi.net@gmail.com?subject=PhimMoi.Net%20B%C3%A1o%20l%E1%BB%97i%20403/IP%201.52.39.90">v&#xE0;o &#x111;&#xE2;y</a> &#x111;&#x1EC3; g&#x1EED;i email nhanh.)</span>
  213. <p>
  214. </p><hr>
  215. <div id="client-info">
  216. <b>IP:</b> 1.52.39.90<br>
  217. <b>User Agent:</b> Unknow<br>
  218. <b>Referer:</b> https://phimmoi.net/<br>
  219. <b>Server Time:</b> Sunday, 19-Nov-2017 22:20:36 +07
  220. </div>
  221. <div style="display:none;" id="cookie">Blank</div>
  222. <hr>
  223. R&#x1EA5;t c&#x1EA3;m &#x1A1;n b&#x1EA1;n &#x111;&#xE3; quan t&#xE2;m v&#xE0; &#x1EE7;ng h&#x1ED9; website !<br>
  224. Th&#xE2;n ! Ch&#xE0;o b&#x1EA1;n.<br>
  225. <a href="http://www.phimmoi.net">http://phimmoi.net</a><p></p>
  226. <p></p>
  227.  
  228.  
  229.  
  230. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement