Advertisement
Xaviar

Black.html

Jan 26th, 2016
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.84 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Hacked By black_oopS</title>
  4. <link href="http://i.imgur.com/HHf7kby.png" rel="icon">
  5. <link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
  6. <style type="text/css">
  7. h1 {color: #333;font-size: 100px;margin: 1px auto;text-align:center;text-transform:uppercase; font-weight:bold; font-family: Orbitron;}
  8. .neon {color: #FFFFFF;text-shadow: 0 0 5px #1ab4e7, 0 0 10px #1ab4e7, 0 0 30px #18a2d0, 0 0 45px #18a2d0, 0 0 60px #18a2d0;}
  9. </style>
  10. <script type="text/javascript" language="javascript">
  11. var rows=1;
  12. var speed=500;
  13. var reveal=2;
  14. var effectalign="center"
  15. var w3c=document.getElementById && !window.opera;;
  16. var ie45=document.all && !window.opera;
  17. var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
  18. var m_coch=new Array();
  19. var m_copo=new Array();
  20. window.onload=function() {
  21. if (!w3c && !ie45) return
  22. var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
  23. ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
  24. ma_txt=" "+ma_txt+" ";
  25. columns=ma_txt.length;
  26. if (w3c) {
  27. while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
  28. ma_tab=document.createElement("table");
  29. ma_tab.setAttribute("border", 0);
  30. ma_tab.setAttribute("align", effectalign);
  31. ma_tab.style.backgroundColor="#000000";
  32. ma_bod=document.createElement("tbody");
  33. for (x=0; x<rows; x++) {
  34. ma_row=document.createElement("tr");
  35. for (y=0; y<columns; y++) {
  36. matemp=document.createElement("td");
  37. matemp.setAttribute("id", "Mx"+x+"y"+y);
  38. matemp.className="matrix";
  39. matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
  40. ma_row.appendChild(matemp);
  41. }
  42. ma_bod.appendChild(ma_row);
  43. }
  44. ma_tab.appendChild(ma_bod);
  45. matrix.appendChild(ma_tab);
  46. } else {
  47. ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
  48. for (var x=0; x<rows; x++) {
  49. ma_tab+='<t'+'r>';
  50. for (var y=0; y<columns; y++) {
  51. ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'"> </'+'td>';
  52. }
  53. ma_tab+='</'+'tr>';
  54. }
  55. ma_tab+='</'+'table>';
  56. matrix.innerHTML=ma_tab;
  57. }
  58. ma_cho=ma_txt;
  59. for (x=0; x<columns; x++) {
  60. ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
  61. m_copo[x]=0;
  62. }
  63. ma_bod=setInterval("mytricks()", speed);
  64. }
  65. function mytricks() {
  66. x=0;
  67. for (y=0; y<columns; y++) {
  68. x=x+(m_copo[y]==100);
  69. ma_row=m_copo[y]%100;
  70. if (ma_row && m_copo[y]<100) {
  71. if (ma_row<rows+1) {
  72. if (w3c) {
  73. matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
  74. matemp.firstChild.nodeValue=m_coch[y];
  75. }
  76. else {
  77. matemp=document.all["Mx"+(ma_row-1)+"y"+y];
  78. matemp.innerHTML=m_coch[y];
  79. }
  80. matemp.style.color="#81F2FF";
  81. matemp.style.fontWeight="bold";
  82. }
  83. if (ma_row>1 && ma_row<rows+2) {
  84. matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y];
  85. matemp.style.fontWeight="normal";
  86. matemp.style.color="#00BBFF";
  87. }
  88. if (ma_row>2) {
  89. matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y];
  90. matemp.style.color="#20FFDA";
  91. }
  92. if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
  93. else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
  94. else if (ma_row<rows+2) m_copo[y]++;
  95. else if (m_copo[y]<100) m_copo[y]=0;
  96. }
  97. else if (Math.random()>0.9 && m_copo[y]<100) {
  98. m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
  99. m_copo[y]++;
  100. }
  101. }
  102. if (x==columns) clearInterval(ma_bod);
  103. }
  104. function zoomer(ycol) {
  105. var mtmp, mtem, ytmp;
  106. if (m_copo[ycol]==Math.floor(rows/2)+1) {
  107. for (ytmp=0; ytmp<rows; ytmp++) {
  108. if (w3c) {
  109. mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
  110. mtmp.firstChild.nodeValue=m_coch[ycol];
  111. }
  112. else {
  113. mtmp=document.all["Mx"+ytmp+"y"+ycol];
  114. mtmp.innerHTML=m_coch[ycol];
  115. }
  116. mtmp.style.color="#5BEEFF";
  117. mtmp.style.fontWeight="bold";
  118. }
  119. if (Math.random()<reveal) {
  120. mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
  121. ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
  122. }
  123. if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
  124. m_copo[ycol]+=199;
  125. setTimeout("zoomer("+ycol+")", speed);
  126. }
  127. else if (m_copo[ycol]>200) {
  128. if (w3c) {
  129. mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
  130. mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
  131. }
  132.  
  133. else {
  134. mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
  135. mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
  136. }
  137. mtmp.style.fontWeight="normal";
  138. mtem.style.fontWeight="normal";
  139. setTimeout("zoomer("+ycol+")", speed);
  140. }
  141. else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
  142. if (m_copo[ycol]>100 && m_copo[ycol]<200) {
  143. if (w3c) {
  144. mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
  145. mtmp.firstChild.nodeValue=String.fromCharCode(160);
  146. mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
  147. mtem.firstChild.nodeValue=String.fromCharCode(160);
  148. }
  149. else {
  150. mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
  151. mtmp.innerHTML=String.fromCharCode(160);
  152. mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
  153. mtem.innerHTML=String.fromCharCode(160);
  154. }
  155. setTimeout("zoomer("+ycol+")", speed);
  156. }
  157. var h1 = document.getElementsByTagName("h1")[0],
  158. text = h1.innerText || h1.textContent,
  159. split = [], i, lit = 0, timer = null;
  160. for(i = 0; i < text.length; ++i) {
  161. split.push("<span>" + text[i] + "</span>");
  162. }
  163. h1.innerHTML = split.join("");
  164. split = h1.childNodes;
  165. var flicker = function() {
  166. lit += 0.01;
  167. if(lit >= 1) {
  168. clearInterval(timer);
  169. }
  170. for(i = 0; i < split.length; ++i) {
  171. if(Math.random() < lit) {
  172. split[i].className = "neon";
  173. } else {
  174. split[i].className = "";
  175. }
  176. }
  177. }
  178. setInterval(flicker, 100);
  179. }
  180. </script>
  181. <style>
  182. body
  183. {
  184. background-image:url('http://s9.postimg.org/sps8r28m7/image.gif');
  185. }
  186. #wrapper
  187. {
  188. width: 800px;
  189. height: 700px;
  190. margin: auto;
  191. top: 70px;
  192. right: 0px;
  193. left: 0px;
  194. bottom: 0px;
  195. position: absolute;
  196. }
  197. h2
  198. {
  199. color: #2D87FD;
  200. font-family: Orbitron;
  201. font-size: 40px;
  202. margin-bottom: 1px;
  203. margin-left: 0px;
  204. margin-right: 0px;
  205. margin-top: 1px;
  206. text-align: center;
  207. text-shadow: #FF0000 0px 0px 15px;
  208. text-transform: uppercase;
  209. }
  210. h3
  211. {
  212. font-family: Creepster;
  213. font-size: 34px;
  214. font-style: normal;
  215. font-variant: normal;
  216. font-weight: 500;
  217. line-height: 15.4px;
  218. }
  219. </style>
  220. <SCRIPT TYPE="text/javascript">
  221. function disableselect(e){
  222. return false
  223. }
  224. function reEnable(){
  225. return true
  226. }
  227. //if IE4+
  228. document.onselectstart=new Function ("return false")
  229. //if NS6
  230. if (window.sidebar){
  231. document.onmousedown=disableselect
  232. document.onclick=reEnable
  233. }
  234. </SCRIPT>
  235. <SCRIPT TYPE="text/javascript">
  236. var message="Sorry, right-click has been disabled";
  237. ///////////////////////////////////
  238. function clickIE() {if (document.all) {(message);return false;}}
  239. function clickNS(e) {if
  240. (document.layers||(document.getElementById&&!document.all)) {
  241. if (e.which==2||e.which==3) {(message);return false;}}}
  242. if (document.layers)
  243. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  244. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  245. document.oncontextmenu=new Function("return false")
  246. </SCRIPT>
  247. <script type="text/javascript">
  248. // Title function
  249. var speed = 90; // Reverse
  250. var x = 0; // Counter
  251. function mtitle() {
  252. x++;
  253. if(x > 41) { x = 1;}
  254. if(x == 1) { document.title = '-'; }
  255. if(x == 2) { document.title = 'H'; }
  256. if(x == 3) { document.title = 'H-';}
  257. if(x == 4) { document.title = 'HA'; }
  258. if(x == 5) { document.title = 'HA-'; }
  259. if(x == 6) { document.title = 'HAC'; }
  260. if(x == 7) { document.title = 'HAC-'; }
  261. if(x == 8) { document.title = 'HACK'; }
  262. if(x == 9) { document.title = 'HACK-'; }
  263. if(x == 10) { document.title = 'HACKE'; }
  264. if(x == 11) { document.title = 'HACKE-'; }
  265. if(x == 12) { document.title = 'HACKED'; }
  266. if(x == 13) { document.title = 'HACKED-'; }
  267. if(x == 14) { document.title = 'HACKED- '; }
  268. if(x == 15) { document.title = 'HACKED -'; }
  269. if(x == 16) { document.title = 'HACKED B'; }
  270. if(x == 17) { document.title = 'HACKED B-'; }
  271. if(x == 18) { document.title = 'HACKED BY'; }
  272. if(x == 19) { document.title = 'HACKED BY-'; }
  273. if(x == 20) { document.title = 'HACKED BY -'; }
  274. if(x == 21) { document.title = 'HACKED BY B '; }
  275. if(x == 22) { document.title = 'HACKED BY BA-'; }
  276. if(x == 23) { document.title = 'HACKED BY BLA'; }
  277. if(x == 24) { document.title = 'HACKED BY BLACK-'; }
  278. setTimeout("mtitle()", speed);
  279. }
  280. mtitle();
  281. </script>
  282.  
  283. </head>
  284. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'><script type="text/javascript">ANCHORFREE_VERSION="413161526"</script><script type='text/javascript'>(function(){if(typeof(_AF2$runned)!='undefined'&&_AF2$runned==true){return}_AF2$={'SN':'HSSHIELD00ZZ','IP':'50.117.56.92','CH':'HSSCNL100773','CT':'oxm,z219','HST':'&isUpdated=0','AFH':'hss1118','RN':Math.floor(Math.random()*999),'TOP':(parent.location!=document.location||top.location!=document.location)?0:1,'AFVER':'5.0.4','FBW':'','FBWCNT':0};if(/^(.*,)?(11C)(,.*)?$/g.exec(_AF2$.CT)!=null){document.write("<scr"+"ipt src='http://box.anchorfree.net/insert/par.js?v="+ANCHORFREE_VERSION+"' type='text/javascript'></scr"+"ipt>")}document.write("<style type='text/css' title='AFc_css"+_AF2$.RN+"' >.AFc_body"+_AF2$.RN+"{} .AFc_all"+_AF2$.RN+",a.AFc_all"+_AF2$.RN+":hover,a.AFc_all"+_AF2$.RN+":visited{outline:none;background:transparent;border:none;margin:0;padding:0;top:0;left:0;text-decoration:none;overflow:hidden;display:block;z-index:666999;}</style>");})();</script><style type='text/css'>.AFhss_dpnone{display:none;width:0;height:0}</style><img src="about:blank"id="AFhss_trk"name="AFhss_trk"style="display:none"/><div id="AFhss_dfs"class="AFhss_dpnone"><div id="AFhss_adrp0"class="AFhss_dpnone"></div><div id="AFhss_adrp1"class="AFhss_dpnone"></div><div id="AFhss_adrp2"class="AFhss_dpnone"></div><div id="AFhss_adrp3"class="AFhss_dpnone"></div><div id="AFhss_adrp4"class="AFhss_dpnone"></div><div id="AFhss_adrp5"class="AFhss_dpnone"></div><div id="AFhss_adrp6"class="AFhss_dpnone"></div><div id="AFhss_adrp7"class="AFhss_dpnone"></div><div id="AFhss_adrp8"class="AFhss_dpnone"></div><div id="AFhss_adrp9"class="AFhss_dpnone"></div></div><script type='text/javascript'>(function(){if(typeof(_AF2$runned)!='undefined'&&_AF2$runned==true){return}_AF2$={'SN':'HSSHIELD00ZZ','IP':'50.117.56.92','CH':'HSSCNL100773','CT':'oxm,z219','HST':'&isUpdated=0','AFH':'hss1118','RN':Math.floor(Math.random()*999),'TOP':(parent.location!=document.location||top.location!=document.location)?0:1,'AFVER':'5.0.4','FBW':'','FBWCNT':0};if(_AF2$.TOP==1){document.write("<scr"+"ipt src='http://box.anchorfree.net/insert/41.js?v="+ANCHORFREE_VERSION+"' type='text/javascript'></scr"+"ipt>")}})()</script>
  285.  
  286. <a href="https://www.facebook.com/BD.Script.Kiddie?fref=ts" target="_blank"><img src="http://s9.postimg.org/ohxgib76n/image.png" alt="Logo"></a>
  287. <div id="wrapper">
  288. <h2>Hacked By<h2>
  289. <h1>BlAcK_oOpS</h1>
  290. <div id="matrix" class="auto-style8">|I am enough to fuck your cyber space | Expect Bangladesh, Your DADY|</div><br>
  291. <center>
  292. <img src="http://i.imgur.com/HHf7kby.png" hieght="400px" width="400px" alt="mid.png"><br><br><br>
  293. <h1 style="color: ##088A85;font-size: 120px;margin-bottom: 1px;margin-left: 0px;margin-right: 0px;margin-top: 1px;text-align: center;text-shadow: #2D87FD 0px 0px 15px;"> B.S.K.H </h1"<br><br><br>
  294. <img src="http://www.wieistmeineip.de/ip-address/?size=468x60" border="0" width="400" height="40" alt="IP" />
  295. <br>
  296. <br>
  297. <br>
  298. <br>
  299. </center>
  300.  
  301. </div>
  302. <marquee style="border-top: 1px solid green; color:white; font-family:tahoma; font-size:26px;position:fixed;left:0px;bottom:0px;" scrollamount="10" height="42px">............We are Bangladesh Script Kiddie Hacker............ We are: BlAcK_Ev!l , TH3_BL@CK_C0D3 , ManiAc_BD , Ev!l Att@ck3r , D3c0d3d 57r!n9 , Cyber_x , Mr P3rf3ct 3rror , Pr!3sT_0F_H3ll , EnC0D3D HyDr4 , Lunar eclipse , D347#LY D35457ER , D@rk sH@d0w , rootxforce
  303.  
  304. | ............We are Bangladesh Script Kiddie Hacker............ Follow us ;)!!!</marquee>
  305. </body>
  306. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement