orionshunter

new bbhh deface page

Aug 21st, 2012
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.55 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <title>-= [Hacked By OrionS-HunT3r - Bangladesh Black Hat hackers] =-</title>
  5. <meta name="generator" content="" />
  6. <meta name="author" content="OrionS HuNtEr" />
  7. <meta name="keywords" content="OrionS HuNtEr,orionshunter,BD cyber,zone-h,Bangladeshi hacker,Bangladeshi defacer" />
  8. <meta name="description" content="[ Its OrionS HuNtEr .. Bangladesh Black Hat defacer ]" />
  9. <link rel="SHORTCUT ICON" href="http://i44.tinypic.com/ap9ser.jpg">
  10.  
  11. <script>
  12.  
  13. var message=" ___ ____ ____\n ______/ \\__// \\__/_____\\\n _/ \\_/ : //_____\\\\\n /| : : .. / \\\n || :: :: \\ /\n || :| || \\ \_____/\n || || || |\\ / |\n \\| || || | / | \\\n | || || | / /_\\ \\\n | ____ || ______ || | / / \\\n \\ _-_ / \\ _-_-_ / | ______ |/_/ \\\n _\\_-_-_-_/ \\ /\n /____ /\n / \\ /\n \\______\\_________ /\n\n\n -=[ H4ck3d By OrionS-HunT3r ]=- [-]";
  14.  
  15. ///////////////////////////////////
  16.  
  17. function clickIE4(){if (event.button==2){alert(message);return false;}}
  18.  
  19. function clickNS4(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3){alert(message);return false;}}}
  20.  
  21. if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;}
  22.  
  23. else if (document.all&&!document.getElementById){document.onmousedown=clickIE4;}
  24.  
  25. document.oncontextmenu=new Function("alert(message);return false")
  26.  
  27. </script>
  28.  
  29. <script language="javascript">
  30.  
  31. function keypressed() {
  32.  
  33. alert("H4ck3d By: -=[ OrionS-HunT3r oF BD BlaCk Hat Hack3Rs ]=-");
  34.  
  35. }
  36.  
  37. document.onkeydown=keypressed;
  38.  
  39. // End -->
  40.  
  41. </script>
  42.  
  43. <script>
  44.  
  45. TypingText = function(element, interval, cursor, finishedCallback) {
  46.  
  47. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  48.  
  49. this.running = true; // Never run.
  50.  
  51. return;
  52.  
  53. }
  54.  
  55. this.element = element;
  56.  
  57. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  58.  
  59. this.interval = (typeof interval == "undefined" ? 100 : interval);
  60.  
  61. this.origText = this.element.innerHTML;
  62.  
  63. this.unparsedOrigText = this.origText;
  64.  
  65. this.cursor = (cursor ? cursor : "");
  66.  
  67. this.currentText = "";
  68.  
  69. this.currentChar = 0;
  70.  
  71. this.element.typingText = this;
  72.  
  73. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  74.  
  75. TypingText.all.push(this);
  76.  
  77. this.running = false;
  78.  
  79. this.inTag = false;
  80.  
  81. this.tagBuffer = "";
  82.  
  83. this.inHTMLEntity = false;
  84.  
  85. this.HTMLEntityBuffer = "";
  86.  
  87. }
  88.  
  89. TypingText.all = new Array();
  90.  
  91. TypingText.currentIndex = 0;
  92.  
  93. TypingText.runAll = function() {
  94.  
  95. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  96.  
  97. }
  98.  
  99. TypingText.prototype.run = function() {
  100.  
  101. if(this.running) return;
  102.  
  103. if(typeof this.origText == "undefined") {
  104.  
  105. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience. http://www.lozere.maisons-paysannes.org/media/erne.swf
  106.  
  107. return;
  108.  
  109. }
  110.  
  111. if(this.currentText == "") this.element.innerHTML = "";
  112.  
  113. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  114.  
  115. if(this.currentChar < this.origText.length) {
  116.  
  117. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  118.  
  119. this.tagBuffer = "<";
  120.  
  121. this.inTag = true;
  122.  
  123. this.currentChar++;
  124.  
  125. this.run();
  126.  
  127. return;
  128.  
  129. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  130.  
  131. this.tagBuffer += ">";
  132.  
  133. this.inTag = false;
  134.  
  135. this.currentText += this.tagBuffer;
  136.  
  137. this.currentChar++;
  138.  
  139. this.run();
  140.  
  141. return;
  142.  
  143. } else if(this.inTag) {
  144.  
  145. this.tagBuffer += this.origText.charAt(this.currentChar);
  146.  
  147. this.currentChar++;
  148.  
  149. this.run();
  150.  
  151. return;
  152.  
  153. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  154.  
  155. this.HTMLEntityBuffer = "&";
  156.  
  157. this.inHTMLEntity = true;
  158.  
  159. this.currentChar++;
  160.  
  161. this.run();
  162.  
  163. return;
  164.  
  165. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  166.  
  167. this.HTMLEntityBuffer += ";";
  168.  
  169. this.inHTMLEntity = false;
  170.  
  171. this.currentText += this.HTMLEntityBuffer;
  172.  
  173. this.currentChar++;
  174.  
  175. this.run();
  176.  
  177. return;
  178.  
  179. } else if(this.inHTMLEntity) {
  180.  
  181. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  182.  
  183. this.currentChar++;
  184.  
  185. this.run();
  186.  
  187. return;
  188.  
  189. } else {
  190.  
  191. this.currentText += this.origText.charAt(this.currentChar);
  192.  
  193. }
  194.  
  195. this.element.innerHTML = this.currentText;
  196.  
  197. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  198.  
  199. this.currentChar++;
  200.  
  201. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  202.  
  203. } else {
  204.  
  205. this.currentText = "";
  206.  
  207. this.currentChar = 0;
  208.  
  209. this.running = false;
  210.  
  211. this.finishedCallback();
  212.  
  213. }
  214.  
  215. }
  216.  
  217. </script>
  218.  
  219. <style>
  220.  
  221. body {
  222. padding:0;
  223. margin:0;
  224. background-repeat: repeat;
  225. background-position:tile;
  226. background-color: black;
  227. color: #000000;
  228. font: normal 100% Courier;
  229. margin-top: 0px;
  230. margin-left: 0px;
  231. padding: 0;
  232. margin-right: 0px;
  233. background-image: url(http://oi55.tinypic.com/2a4s7xl.jpg);
  234. }
  235.  
  236. </style>
  237. <style type="text/css">
  238. <!--
  239. .style1 {
  240. font-size: 36px;
  241. color: #00CC00;
  242. }
  243. .style2 {color: #FF0000}
  244. .style3 {color: #FFFFFF}
  245. -->
  246. </style>
  247.  
  248. </head>
  249.  
  250. <body>
  251. <div align="justify">
  252. <marquee behavior="slide" direction="left">
  253. <span class="style3"><span class="style1">ISRAEL STOP <span class="style2">KILLING</span> <span class="style2">INNOCENT CIVIALLANS</span> AND CHILDREN</span></span>
  254. </marquee>
  255. <p align="center" class="style14">=======================================================</p>
  256. </head>
  257.  
  258. <body bgcolor="black">
  259.  
  260. <!-- -->
  261. <p>
  262. <script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script>
  263. <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
  264. <script type="text/javascript">_qacct="p-44naSaXtNJt26";quantserve();</script>
  265. </p>
  266. </div>
  267. </body></noframes><body bgcolor="#000000"><center>
  268.  
  269. <h1><center><font face="abadon" size="24<center><noscript></noscript><!-- --><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script>
  270.  
  271. farbbibliothek = new Array();
  272.  
  273. farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100");
  274.  
  275. farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  276.  
  277. farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00");
  278.  
  279. farbbibliothek[3] = new Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040");
  280.  
  281. farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  282.  
  283. farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  284.  
  285. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  286.  
  287. farben = farbbibliothek[4];
  288.  
  289. function farbschrift()
  290.  
  291. {
  292.  
  293. for(var i=0 ; i<Buchstabe.length; i++)
  294.  
  295. {
  296.  
  297. document.all["a"+i].style.color=farben[i];
  298.  
  299. }
  300.  
  301. farbverlauf();
  302.  
  303. }
  304.  
  305. function string2array(text)
  306.  
  307. {
  308.  
  309. Buchstabe = new Array();
  310.  
  311. while(farben.length<text.length)
  312.  
  313. {
  314.  
  315. farben = farben.concat(farben);
  316.  
  317. }
  318.  
  319. k=0;
  320.  
  321. while(k<=text.length)
  322.  
  323. {
  324.  
  325. Buchstabe[k] = text.charAt(k);
  326.  
  327. k++;
  328.  
  329. }
  330.  
  331. }
  332.  
  333. function divserzeugen()
  334.  
  335. {
  336.  
  337. for(var i=0 ; i<Buchstabe.length; i++)
  338.  
  339. {
  340.  
  341. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  342.  
  343. }
  344.  
  345. farbschrift();
  346.  
  347. }
  348.  
  349. var a=1;
  350.  
  351. function farbverlauf()
  352.  
  353. {
  354.  
  355. for(var i=0 ; i<farben.length; i++)
  356.  
  357. {
  358.  
  359. farben[i-1]=farben[i];
  360.  
  361. }
  362.  
  363. farben[farben.length-1]=farben[-1];
  364.  
  365.  
  366.  
  367. setTimeout("farbschrift()",30);
  368.  
  369. }
  370.  
  371. // Zu Demonstrationszwecken*****************
  372.  
  373. var farbsatz=1;
  374.  
  375. function farbtauscher()
  376.  
  377. {
  378.  
  379. farben = farbbibliothek[farbsatz];
  380.  
  381. while(farben.length<text.length)
  382.  
  383. {
  384.  
  385. farben = farben.concat(farben);
  386.  
  387. }
  388.  
  389. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  390.  
  391. }
  392.  
  393. setInterval("farbtauscher()",4500);
  394.  
  395. text= "BD BlaCk HaT HacK3rS ";
  396.  
  397. //h
  398.  
  399. string2array(text);
  400.  
  401. divserzeugen();
  402.  
  403. //document.write(text);
  404.  
  405. //
  406.  
  407. /*function expand() {
  408.  
  409. for(x = 0; x < 50; x++) {
  410.  
  411. window.moveTo(screen.availWidth * -(x - 50) / 100, screen.availHeight * -(x - 50) / 100);
  412.  
  413. window.resizeTo(screen.availWidth * x / 50, screen.availHeight * x / 50);
  414.  
  415. }
  416.  
  417. window.moveTo(0,0);
  418.  
  419. window.resizeTo(screen.availWidth, screen.availHeight);
  420.  
  421. }
  422.  
  423. expand();*/
  424.  
  425. </script></font></h1><br>
  426.  
  427. <SCRIPT language=JavaScript>
  428.  
  429. msg = new Array(); //strings written in screen
  430.  
  431. msg[0] = "<h2><font face='Courier'><center> ---==[+|<FONT color=#00FF00> |+]==---</center></h2>";
  432.  
  433. msg[1] = "<b> </font> <font face='Courier' color='#00FF00'></font>";
  434.  
  435. msg[2] = "<font face='Courier' color='#00FF00'>BD BLACK Hat Hackers</font>";
  436.  
  437. msg[3] = "<font face='Courier' color='#00FF00'> <{+=================+}>";
  438.  
  439. msg[4] = "<font face='Courier' color='#00FF00'><~~~~~~~~~~~~~~~</font>";
  440.  
  441. text1 = ""; //the same as text2, only the last character is highlighted
  442.  
  443. text2 = ""; //current string, which will be written
  444.  
  445. count = 0; //char index in string text
  446.  
  447. count2 = 0; //number of strings
  448.  
  449. text = msg[0].split(""); //text - string written
  450.  
  451. function writetext() { //show strings above on screen
  452.  
  453. text1 = text2 + "<font color='#00FF00'>" + text[count] + "</font>";
  454.  
  455. text2 += text[count];
  456.  
  457. document.all["nothing"].innerHTML = text1; //where to write
  458.  
  459.  
  460.  
  461. if (count < text.length-1){
  462.  
  463. count++;
  464.  
  465. setTimeout('writetext()', 25);
  466.  
  467. }
  468.  
  469. else { //if this string is written, get the new string
  470.  
  471. count = 0;
  472.  
  473. if (count2 != 4) { //write 4 strings
  474.  
  475. count2++;
  476.  
  477. text2 += "<p>"; //a new line
  478.  
  479. text = eval('msg['+count2+'].split("")'); //get the new string to text
  480.  
  481. setTimeout('writetext()', 25);
  482.  
  483. }
  484.  
  485. }
  486.  
  487. }
  488.  
  489. </SCRIPT>
  490. <script type="text/javascript">
  491.  
  492. //Define first typing example:
  493.  
  494. new TypingText(document.getElementById("example1"), 250, function(i){
  495.  
  496. var ar = new Array("===>>","===>>","===>>","===>>"); return " " + ar[i.length %
  497.  
  498. ar.length]; });
  499.  
  500. //Define second typing example (use "slashing" cursor at the end):
  501.  
  502. new TypingText(document.getElementById("example2"), 250, function(i){
  503.  
  504. var ar = new Array("\\","|","/","-"); return " " + ar[i.length %
  505.  
  506. ar.length]; });
  507.  
  508. //Define second typing example (use "slashing" cursor at the end):
  509.  
  510. new TypingText(document.getElementById("example3"), 250, function(i){
  511.  
  512. var ar = new Array("\\","|","/","-"); return " " + ar[i.length %
  513.  
  514. ar.length]; });
  515.  
  516. //Type out examples:
  517.  
  518. TypingText.runAll();
  519.  
  520. </script>
  521.  
  522. <p align="center">
  523.  
  524. </p>
  525.  
  526. <script type="text/javascript">
  527.  
  528. <!--//
  529.  
  530. function tb9_makeArray(n){
  531.  
  532. this.length = n;
  533.  
  534. return this.length;
  535.  
  536. }
  537.  
  538. tb9_messages = new tb9_makeArray(4);
  539.  
  540. tb9_messages[0] = " <===== hacked By OrionS-HuNt3r oF BD BLaCk HaT HAcK3rS =====> ";
  541.  
  542. tb9_messages[1] = "-=BD BLaCk HaT HAcK3rS=-";
  543.  
  544. tb9_messages[2] = "BD BLaCk HaT HAcK3rS";
  545.  
  546. tb9_messages[3] = "Greetz To All Of My Facebook Friends.";
  547.  
  548. tb9_messages[4] = "<========== BD BLaCk HaT HAcK3rS ==========>";
  549.  
  550. tb9_messages[5] = " <===== hacked By OrionS-HuNt3r =====> ";
  551.  
  552. tb9_rptType = 'infinite';
  553.  
  554. tb9_rptNbr = 5;
  555.  
  556. tb9_speed = 75;
  557.  
  558. tb9_delay = 2000;
  559.  
  560. var tb9_counter=1;
  561.  
  562. var tb9_currMsg=0;
  563.  
  564. var tb9_timerID = null
  565.  
  566. var tb9_bannerRunning = false
  567.  
  568. var tb9_state = ""
  569.  
  570. tb9_clearState()
  571.  
  572. function tb9_stopBanner() {
  573.  
  574. if (tb9_bannerRunning)
  575.  
  576. clearTimeout(tb9_timerID)
  577.  
  578. tb9_timerRunning = false
  579.  
  580. }
  581.  
  582. function tb9_startBanner() {
  583.  
  584. tb9_stopBanner()
  585.  
  586. tb9_showBanner()
  587.  
  588. }
  589.  
  590. function tb9_clearState() {
  591.  
  592. tb9_state = ""
  593.  
  594. for (var i = 0; i < tb9_messages[tb9_currMsg].length; ++i) {
  595.  
  596. tb9_state += "0"
  597.  
  598. }
  599.  
  600. }
  601.  
  602. function tb9_showBanner() {
  603.  
  604. if (tb9_getString()) {
  605.  
  606. tb9_currMsg++
  607.  
  608. if (tb9_messages.length <= tb9_currMsg) {
  609.  
  610. if ((tb9_rptType == 'finite') && (tb9_counter==tb9_rptNbr)){
  611.  
  612. tb9_stopBanner();
  613.  
  614. return;
  615.  
  616. }
  617.  
  618. tb9_counter++;
  619.  
  620. tb9_currMsg=0;
  621.  
  622. }
  623.  
  624. tb9_clearState()
  625.  
  626. tb9_timerID = setTimeout("tb9_showBanner()", tb9_delay)
  627.  
  628. }
  629.  
  630. else {
  631.  
  632. var tb9_str = ""
  633.  
  634. for (var j = 0; j < tb9_state.length; ++j) {
  635.  
  636. tb9_str += (tb9_state.charAt(j) == "1") ? tb9_messages[tb9_currMsg].charAt(j) : "___"
  637.  
  638. }
  639.  
  640. document.title = tb9_str
  641.  
  642. tb9_timerID = setTimeout("tb9_showBanner()", tb9_speed)
  643.  
  644. }
  645.  
  646. }
  647.  
  648. function tb9_getString() {
  649.  
  650. var full = true
  651.  
  652. for (var j = 0; j < tb9_state.length; ++j) {
  653.  
  654. if (tb9_state.charAt(j) == 0)
  655.  
  656. full = false
  657.  
  658. }
  659.  
  660. if (full) return true
  661.  
  662. while (1) {
  663.  
  664. var num = tb9_getRandom(tb9_messages[tb9_currMsg].length)
  665.  
  666. if (tb9_state.charAt(num) == "0")
  667.  
  668. break
  669.  
  670. }
  671.  
  672. tb9_state = tb9_state.substring(0, num) + "1" + tb9_state.substring(num + 1, tb9_state.length)
  673.  
  674. return false
  675.  
  676. }
  677.  
  678. function tb9_getRandom(max) {
  679.  
  680. var now = new Date()
  681.  
  682. var num = now.getTime() * now.getSeconds() * Math.random()
  683.  
  684. return num % max
  685.  
  686. }
  687.  
  688. tb9_startBanner()
  689. </script>
  690.  
  691. <style type="text/css">
  692. <!--
  693. .style1 {
  694. font-size: 36px;
  695. color: #00CC00;
  696. }
  697. .style2 {color: #FF0000}
  698. -->
  699. </style>
  700. </head>
  701.  
  702. <body>
  703. <style type="text/css">
  704. <!--
  705. .style14 {
  706. color: #00FF00;
  707. font-size: 24px;
  708. }
  709. .style16 {
  710. color: #FF0000;
  711. font-size: 24px;
  712. }
  713. -->
  714. </style>
  715. <p align="center" class="style14">-| ------------------------------------ |-</p>
  716. <p align="center" class="style16">Stop hacking Bangladeshi websites</p>
  717. <p align="center" class="style16">Stop killing innocent Bangladeshi citizens at Borders</p>
  718. <p align="center" class="style14">-| ------------------------------------ |-</p>
  719.  
  720. <p align="center"><img src="http://i42.tinypic.com/2im1fs5.jpg" width="320" height="390"></p>
  721. <style type="text/css">
  722. <!--
  723. .style10 {font-size: 40px}
  724. .style11 {color: #00FF00}
  725. .style12 {color: #FF0000}
  726. .style13 {color: #CCCCCC}
  727. .style14 {font-size: 40px; color: #CCCCCC; }
  728. -->
  729. </style>
  730. <p align="center" class="style10 style13">\-----------------------------------------------/</p>
  731. <p align="center" class="style10"><span class="style11">&lt;== HaCk3D </span><span class="style12">By</span> <span class="style11">OrionsHunteR == &gt; </span></p>
  732. <p align="center" class="style14">/-----------------------------------------------\</p>
  733. <div align="center"><span class="style7"><a href="https://www.facebook.com/orionshunter">Contact With Me </a></span>
  734. <p align="center"><span class="style6"><a href="https://www.facebook.com/BDBLACKHAT">MY FAN PAGE</a></span></p>
  735. <p align="center" class="style6"><a href="https://www.facebook.com/groups/bangladeshcyberpolice/">MY PUBLIC GROUP</a></p>
  736. <p align="center"><span class="style6"><a href="https://www.facebook.com/groups/bangladeshcyberpolice/">MY INTERNATIONAL GROUP</a></span></p>
  737. <p align="center" class="style14">\-----------------------------------------------/</p>
  738. <p align="center"><span class="style2">-: WE ARE -:</span></p>
  739. <p align="center"><span class="style13"> - OR!ONS #UNt3R - LUG3 R4C3R - D4RK Qu4K3R - M#5 - B4K33r B#4! - N4P5t3R BD - EV4N CYB3R D4RKL0RD </span></p>
  740. <p align="center" class="style12"><span class="style3">- D#U5#0R B3DU!N - CYP#ER FOURTYF!V3 - D4rK KN!G#t - S3CUR!TY-BR3AKER - COD3 BR3AK3R</span></p>
  741. <p align="center" class="style12"><span class="style3"> - D3V!l PR!NC3 - C#3R4 P4lL - $yst3m Cra$h - N3t-C4t - 8l@ck 3xplor3r - 3xplo!t3R </span></p>
  742. <p align="center"><span class="style13">- N!5#OBDO POT#!K - D4rKN355 Of M00N - CYB3R Bl@D3R - JAK_M!6 </span>
  743. <p align="center" class="style14">_____________________________________________________</p>
  744. <marquee behavior="slide" direction="right">
  745. <span class="style3"><span class="style1">ISRAEL STOP <span class="style2">KILLING</span> <span class="style2">INNOCENT CIVIALLANS</span> AND CHILDREN</span></span>
  746. </marquee>
  747.  
  748. <embed src=www.youtube.com/v/1pD8DZ6wWuY&hl=en_US&loop=1&feature=related&autoplay=1 type="application/x-shockwave-flash" wmode="transparent" width="1" height="1"></embed>
  749. </body>
  750. </html>
  751. <script language="JavaScript">
  752. document.write(unescape("\x20\x20\x3c\x2f\x74\x64\x3e\x20\x0d\x0a\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x74\x72\x3e\x20\x0d\x0a\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x74\x61\x62\x6c\x65\x3e\x20\x0d\x0a\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x3e\x26\x6e\x62\x73\x70\x3b\x3c\x2f\x70\x3e\x20\x0d\x0a\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x3e\x20\x0d\x0a\x20\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x72\x69\x74\x65\x43\x6f\x6e\x74\x65\x6e\x74\x28\x74\x72\x75\x65\x29\x3b\x0d\x0a\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x20\x0d\x0a\x20\x0d\x0a\x3c\x62\x6f\x64\x79\x20\x62\x67\x63\x6f\x6c\x6f\x72\x20\x3d\x20\x62\x6c\x61\x63\x6b\x3e\x0d\x0a\x3c\x65\x6d\x62\x65\x64\x20\x73\x72\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x79\x6f\x75\x74\x75\x62\x65\x2e\x63\x6f\x6d\x2f\x76\x2f\x58\x59\x4b\x55\x65\x5a\x51\x62\x4d\x46\x30\x26\x61\x75\x74\x6f\x70\x6c\x61\x79\x3d\x31\x22\x20\x74\x79\x70\x65\x3d\x22\x61\x70\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x2f\x78\x2d\x73\x68\x6f\x63\x6b\x77\x61\x76\x65\x2d\x66\x6c\x61\x73\x68\x22\x20\x77\x6d\x6f\x64\x65\x3d\x22\x74\x72\x61\x6e\x73\x70\x61\x72\x65\x6e\x74\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x22\x3e\x3c\x2f\x65\x6d\x62\x65\x64\x3e\x0d\x0a\x3c\x2f\x62\x6f\x64\x79\x3e\x0d\x0a\x3c\x2f\x68\x74\x6d\x6c\x3e"))
  753. </script>
  754. <SCRIPT> alert("S0rry Adm!n UR S!t3 G0t HAck3D By OrionsHunter")</SCRIPT>
  755. <SCRIPT Language=VBScript><!--
  756. </script><script style="display: none;">
  757. <!--
  758. var snowStorm=(function(window,document){this.autoStart=true;this.flakesMax=128;this.flakesMaxActive=64;this.animationInterval=33;this.excludeMobile=true;this.flakeBottom=null;this.followMouse=true;this.snowColor='#fff';this.snowCharacter='&bull;';this.snowStick=true;this.targetElement=null;this.useMeltEffect=true;this.useTwinkleEffect=false;//
  759. this.usePositionFixed=false;this.freezeOnBlur=true;this.flakeLeftOffset=0;this.flakeRightOffset=0;this.flakeWidth=8;this.flakeHeight=8;this.vMaxX=5;this.vMaxY=4;this.zIndex=0;var s=this,storm=this,i,isIE=navigator.userAgent.match(/msie/i),isIE6=navigator.userAgent.match(/msie 6/i),isWin98=navigator.appVersion.match(/windows 98/i),isMobile=navigator.userAgent.match(/mobile|opera m(ob|in)/i),isBackCompatIE=(isIE&&document.compatMode==='BackCompat'),noFixed=(isMobile||isBackCompatIE||isIE6),screenX=null,screenX2=null,screenY=null,scrollY=null,vRndX=null,vRndY=null,windOffset=1,windMultiplier=2,flakeTypes=6,fixedForEverything=false,opacitySupported=(function(){try{document.createElement('div').style.opacity='0.5';}catch(e){return false;}
  760. return true;}()),didInit=false,docFrag=document.createDocumentFragment();this.timers=[];this.flakes=[];this.disabled=false;this.active=false;this.meltFrameCount=20;this.meltFrames=[];this.events=(function(){var old=(!window.addEventListener&&window.attachEvent),slice=Array.prototype.slice,evt={add:(old?'attachEvent':'addEventListener'),remove:(old?'detachEvent':'removeEventListener')};function getArgs(oArgs){var args=slice.call(oArgs),len=args.length;if(old){args[1]='on'+args[1];if(len>3){args.pop();}}else if(len===3){args.push(false);}
  761. return args;}
  762. function apply(args,sType){var element=args.shift(),method=[evt[sType]];if(old){element[method](args[0],args[1]);}else{element[method].apply(element,args);}}
  763. function addEvent(){apply(getArgs(arguments),'add');}
  764. function removeEvent(){apply(getArgs(arguments),'remove');}
  765. return{add:addEvent,remove:removeEvent};}());function rnd(n,min){if(isNaN(min)){min=0;}
  766. return(Math.random()*n)+min;}
  767. function plusMinus(n){return(parseInt(rnd(2),10)===1?n*-1:n);}
  768. this.randomizeWind=function(){var i;vRndX=plusMinus(rnd(s.vMaxX,0.2));vRndY=rnd(s.vMaxY,0.2);if(this.flakes){for(i=0;i<this.flakes.length;i++){if(this.flakes[i].active){this.flakes[i].setVelocities();}}}};this.scrollHandler=function(){var i;scrollY=(s.flakeBottom?0:parseInt(window.scrollY||document.documentElement.scrollTop||document.body.scrollTop,10));if(isNaN(scrollY)){scrollY=0;}
  769. if(!fixedForEverything&&!s.flakeBottom&&s.flakes){for(i=s.flakes.length;i--;){if(s.flakes[i].active===0){s.flakes[i].stick();}}}};this.resizeHandler=function(){if(window.innerWidth||window.innerHeight){screenX=window.innerWidth-16-s.flakeRightOffset;screenY=(s.flakeBottom?s.flakeBottom:window.innerHeight);}else{screenX=(document.documentElement.clientWidth||document.body.clientWidth||document.body.scrollWidth)-(!isIE?8:0)-s.flakeRightOffset;screenY=s.flakeBottom?s.flakeBottom:(document.documentElement.clientHeight||document.body.clientHeight||document.body.scrollHeight);}
  770. screenX2=parseInt(screenX/2,10);};this.resizeHandlerAlt=function(){screenX=s.targetElement.offsetLeft+s.targetElement.offsetWidth-s.flakeRightOffset;screenY=s.flakeBottom?s.flakeBottom:s.targetElement.offsetTop+s.targetElement.offsetHeight;screenX2=parseInt(screenX/2,10);};this.freeze=function(){var i;if(!s.disabled){s.disabled=1;}else{return false;}
  771. for(i=s.timers.length;i--;){clearInterval(s.timers[i]);}};this.resume=function(){if(s.disabled){s.disabled=0;}else{return false;}
  772. s.timerInit();};this.toggleSnow=function(){if(!s.flakes.length){s.start();}else{s.active=!s.active;if(s.active){s.show();s.resume();}else{s.stop();s.freeze();}}};this.stop=function(){var i;this.freeze();for(i=this.flakes.length;i--;){this.flakes[i].o.style.display='none';}
  773. s.events.remove(window,'scroll',s.scrollHandler);s.events.remove(window,'resize',s.resizeHandler);if(s.freezeOnBlur){if(isIE){s.events.remove(document,'focusout',s.freeze);s.events.remove(document,'focusin',s.resume);}else{s.events.remove(window,'blur',s.freeze);s.events.remove(window,'focus',s.resume);}}};this.show=function(){var i;for(i=this.flakes.length;i--;){this.flakes[i].o.style.display='block';}};this.SnowFlake=function(parent,type,x,y){var s=this,storm=parent;this.type=type;this.x=x||parseInt(rnd(screenX-20),10);this.y=(!isNaN(y)?y:-rnd(screenY)-12);this.vX=null;this.vY=null;this.vAmpTypes=[1,1.2,1.4,1.6,1.8];this.vAmp=this.vAmpTypes[this.type];this.melting=false;this.meltFrameCount=storm.meltFrameCount;this.meltFrames=storm.meltFrames;this.meltFrame=0;this.twinkleFrame=0;this.active=1;this.fontSize=(10+(this.type/5)*10);this.o=document.createElement('div');this.o.innerHTML=storm.snowCharacter;this.o.style.color=storm.snowColor;this.o.style.position=(fixedForEverything?'fixed':'absolute');this.o.style.width=storm.flakeWidth+'px';this.o.style.height=storm.flakeHeight+'px';this.o.style.fontFamily='arial,verdana';this.o.style.cursor='default';this.o.style.overflow='hidden';this.o.style.fontWeight='normal';this.o.style.zIndex=storm.zIndex;docFrag.appendChild(this.o);this.refresh=function(){if(isNaN(s.x)||isNaN(s.y)){return false;}
  774. s.o.style.left=s.x+'px';s.o.style.top=s.y+'px';};this.stick=function(){if(noFixed||(storm.targetElement!==document.documentElement&&storm.targetElement!==document.body)){s.o.style.top=(screenY+scrollY-storm.flakeHeight)+'px';}else if(storm.flakeBottom){s.o.style.top=storm.flakeBottom+'px';}else{s.o.style.display='none';s.o.style.top='auto';s.o.style.bottom='0px';s.o.style.position='fixed';s.o.style.display='block';}};this.vCheck=function(){if(s.vX>=0&&s.vX<0.2){s.vX=0.2;}else if(s.vX<0&&s.vX>-0.2){s.vX=-0.2;}
  775. if(s.vY>=0&&s.vY<0.2){
  776. s.vY=0.2;}};this.move=function(){var vX=s.vX*windOffset,yDiff;s.x+=vX;s.y+=(s.vY*s.vAmp);if(s.x>=screenX||screenX-s.x<storm.flakeWidth){s.x=0;}else if(vX<0&&s.x-storm.flakeLeftOffset<-storm.flakeWidth){s.x=screenX-storm.flakeWidth-1;}
  777. s.refresh();yDiff=screenY+scrollY-s.y;if(yDiff<storm.flakeHeight){s.active=0;if(storm.snowStick){s.stick();}else{s.recycle();}}else{if(storm.useMeltEffect&&s.active&&s.type<3&&!s.melting&&Math.random()>0.998){s.melting=true;s.melt();}
  778. if(storm.useTwinkleEffect){if(!s.twinkleFrame){if(Math.random()>0.9){s.twinkleFrame=parseInt(Math.random()*20,10);}}else{s.twinkleFrame--;s.o.style.visibility=(s.twinkleFrame&&s.twinkleFrame%2===0?'hidden':'visible');}}}};this.animate=function(){s.move();};this.setVelocities=function(){s.vX=vRndX+rnd(storm.vMaxX*0.12,0.1);s.vY=vRndY+rnd(storm.vMaxY*0.12,0.1);};this.setOpacity=function(o,opacity){if(!opacitySupported){return false;}
  779. o.style.opacity=opacity;};this.melt=function(){if(!storm.useMeltEffect||!s.melting){s.recycle();}else{if(s.meltFrame<s.meltFrameCount){s.setOpacity(s.o,s.meltFrames[s.meltFrame]);s.o.style.fontSize=s.fontSize-(s.fontSize*(s.meltFrame/s.meltFrameCount))+'px';s.o.style.lineHeight=storm.flakeHeight+2+(storm.flakeHeight*0.75*(s.meltFrame/s.meltFrameCount))+'px';s.meltFrame++;}else{s.recycle();}}};this.recycle=function(){s.o.style.display='none';s.o.style.position=(fixedForEverything?'fixed':'absolute');s.o.style.bottom='auto';s.setVelocities();s.vCheck();s.meltFrame=0;s.melting=false;s.setOpacity(s.o,1);s.o.style.padding='0px';s.o.style.margin='0px';s.o.style.fontSize=s.fontSize+'px';s.o.style.lineHeight=(storm.flakeHeight+2)+'px';s.o.style.textAlign='center';s.o.style.verticalAlign='baseline';s.x=parseInt(rnd(screenX-storm.flakeWidth-20),10);s.y=parseInt(rnd(screenY)*-1,10)-storm.flakeHeight;s.refresh();s.o.style.display='block';s.active=1;};this.recycle();this.refresh();};this.snow=function(){var active=0,used=0,waiting=0,flake=null,i;for(i=s.flakes.length;i--;){if(s.flakes[i].active===1){s.flakes[i].move();active++;}else if(s.flakes[i].active===0){used++;}else{waiting++;}
  780. if(s.flakes[i].melting){s.flakes[i].melt();}}
  781. if(active<s.flakesMaxActive){flake=s.flakes[parseInt(rnd(s.flakes.length),10)];if(flake.active===0){flake.melting=true;}}};this.mouseMove=function(e){if(!s.followMouse){return true;}
  782. var x=parseInt(e.clientX,10);if(x<screenX2){windOffset=-windMultiplier+(x/screenX2*windMultiplier);}else{x-=screenX2;windOffset=(x/screenX2)*windMultiplier;}};this.createSnow=function(limit,allowInactive){var i;for(i=0;i<limit;i++){s.flakes[s.flakes.length]=new s.SnowFlake(s,parseInt(rnd(flakeTypes),10));if(allowInactive||i>s.flakesMaxActive){s.flakes[s.flakes.length-1].active=-1;}}
  783. storm.targetElement.appendChild(docFrag);};this.timerInit=function(){s.timers=(!isWin98?[setInterval(s.snow,s.animationInterval)]:[setInterval(s.snow,s.animationInterval*3),setInterval(s.snow,s.animationInterval)]);};this.init=function(){var i;for(i=0;i<s.meltFrameCount;i++){s.meltFrames.push(1-(i/s.meltFrameCount));}
  784. s.randomizeWind();s.createSnow(s.flakesMax);s.events.add(window,'resize',s.resizeHandler);s.events.add(window,'scroll',s.scrollHandler);if(s.freezeOnBlur){if(isIE){s.events.add(document,'focusout',s.freeze);s.events.add(document,'focusin',s.resume);}else{s.events.add(window,'blur',s.freeze);s.events.add(window,'focus',s.resume);}}
  785. s.resizeHandler();s.scrollHandler();if(s.followMouse){s.events.add(isIE?document:window,'mousemove',s.mouseMove);}
  786. s.animationInterval=Math.max(20,s.animationInterval);s.timerInit();};this.start=function(bFromOnLoad){if(!didInit){didInit=true;}else if(bFromOnLoad){return true;}
  787. if(typeof s.targetElement==='string'){var targetID=s.targetElement;s.targetElement=document.getElementById(targetID);if(!s.targetElement){throw new Error('Snowstorm: Unable to get targetElement "'+targetID+'"');}}
  788. if(!s.targetElement){s.targetElement=(!isIE?(document.documentElement?document.documentElement:document.body):document.body);}
  789. if(s.targetElement!==document.documentElement&&s.targetElement!==document.body){s.resizeHandler=s.resizeHandlerAlt;}
  790. s.resizeHandler();s.usePositionFixed=(s.usePositionFixed&&!noFixed);fixedForEverything=s.usePositionFixed;if(screenX&&screenY&&!s.disabled){s.init();s.active=true;}};function doDelayedStart(){window.setTimeout(function(){s.start(true);},20);s.events.remove(isIE?document:window,'mousemove',doDelayedStart);}
  791. function doStart(){if(!s.excludeMobile||!isMobile){if(s.freezeOnBlur){s.events.add(isIE?document:window,'mousemove',doDelayedStart);}else{doDelayedStart();}}
  792. s.events.remove(window,'load',doStart);}
  793. if(s.autoStart){s.events.add(window,'load',doStart,false);}
  794. return this;}(window,document));
  795. //-->
  796. </script>
  797. <!--//-->
  798. <script>
  799. snowStorm.snowColor = '#FFFFFF'; // blue-ish snow!?
  800. snowStorm.flakesMaxActive = 80; // show more snow on screen at once
  801. snowStorm.useTwinkleEffect = true;
  802. snowStorm.snowCharacter = '&#7461;';
  803. snowStorm.vMaxX = 10;
  804. snowStorm.vMaxY = 10;
  805. // let the snow flicker in and out of view
  806. </script>
  807. <script type="text/javascript">
  808. $(document).ready(function() {
  809. moveBgAround();
  810. });
  811.  
  812. function moveBgAround() {
  813. var x = Math.floor(Math.random()*600);
  814. var y = Math.floor(Math.random()*400);
  815. var time = Math.floor(Math.random()*1001) + 2000;
  816. $('.scrollBg').animate({
  817. backgroundPosition: '(' + (x * -1) + 'px ' + (y * -1) + 'px)'
  818. }, time, "swing", function() {
  819. moveBgAround();
  820. });
  821. }
  822. </script>
  823. <!-- Cursor -->
  824.  
  825.  
  826. <font style="font-size: 8pt;" face="Impact" size="3">
  827. <script type="text/javascript">/*Important Function to blend the tabs in and out*/
  828. function blendoff(idname) {document.getElementById(idname).style.display
  829. = 'none';}
  830. function blendon(idname) {document.getElementById(idname).style.display
  831. = 'block';}</script>
  832. <script type="text/javascript">/*Function for our Tabmenu with 4 Tabs*/
  833. function swichtabs(wert) {
  834. if (wert=='1'){
  835. document.getElementById('tablink1').className='tab1 tabactive';
  836. document.getElementById('tablink2').className='tab2';
  837. document.getElementById('tablink3').className='tab3';
  838. document.getElementById('tablink4').className='tab4';
  839. }else if (wert=='2'){
  840. document.getElementById('tablink1').className='tab1';
  841. document.getElementById('tablink2').className='tab2 tabactive';
  842. document.getElementById('tablink3').className='tab3';
  843. document.getElementById('tablink4').className='tab4';
  844. }else if (wert=='3'){
  845. document.getElementById('tablink1').className='tab1';
  846. document.getElementById('tablink2').className='tab2';
  847. document.getElementById('tablink3').className='tab3 tabactive';
  848. document.getElementById('tablink4').className='tab4';
  849. } else if (wert=='4'){
  850. document.getElementById('tablink1').className='tab1';
  851. document.getElementById('tablink2').className='tab2';
  852. document.getElementById('tablink3').className='tab3';
  853. document.getElementById('tablink4').className='tab4 tabactive';
  854. }
  855.  
  856.  
  857. </script>
  858.  
  859.  
  860. <style type="text/css">
  861. /* Circle Text Styles */
  862. #outerCircleText {
  863. /* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
  864. font-style: italic;
  865. font-weight: bold;
  866. font-family: 'comic sans ms', verdana, arial;
  867. color: #FFF;
  868. /* End Optional */
  869.  
  870. /* Start Required - Do Not Edit */
  871. position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
  872. #outerCircleText div {position: relative;}
  873. #outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
  874. /* End Required */
  875. /* End Circle Text Styles */
  876. </style>
  877. <script type="text/javascript">
  878. ;(function(){
  879. var msg = "Hacked By OrionsHunter";
  880. var size = 24;
  881. var circleY = 0.75; var circleX = 2;
  882. var letter_spacing = 5;
  883. var diameter = 10;
  884. var rotation = 0.4;
  885. var speed = 0.3;
  886. ////////////////////// Stop Editing //////////////////////
  887. if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
  888. msg = msg.split('');
  889. var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
  890. ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
  891. o = document.createElement('div'), oi = document.createElement('div'),
  892. b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,
  893. mouse = function(e){
  894. e = e || window.event;
  895. ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
  896. xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
  897. },
  898. makecircle = function(){ // rotation/positioning
  899. if(init.nopy){
  900. o.style.top = (b || document.body).scrollTop + 'px';
  901. o.style.left = (b || document.body).scrollLeft + 'px';
  902. };
  903. currStep -= rotation;
  904. for (var d, i = n; i > -1; --i){ // makes the circle
  905. d = document.getElementById('iemsg' + i).style;
  906. d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
  907. d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
  908. };
  909. },
  910. drag = function(){ // makes the resistance
  911. y[0] = Y[0] += (ymouse - Y[0]) * speed;
  912. x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
  913. for (var i = n; i > 0; --i){
  914. y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
  915. x[i] = X[i] += (x[i-1] - X[i]) * speed;
  916. };
  917. makecircle();
  918. },
  919. init = function(){ // appends message divs, & sets initial values for positioning arrays
  920. if(!isNaN(window.pageYOffset)){
  921. ymouse += window.pageYOffset;
  922. xmouse += window.pageXOffset;
  923. } else init.nopy = true;
  924. for (var d, i = n; i > -1; --i){
  925. d = document.createElement('div'); d.id = 'iemsg' + i;
  926. d.style.height = d.style.width = a + 'px';
  927. d.appendChild(document.createTextNode(msg[i]));
  928. oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
  929. };
  930. o.appendChild(oi); document.body.appendChild(o);
  931. setInterval(drag, 25);
  932. },
  933. ascroll = function(){
  934. ymouse += window.pageYOffset;
  935. xmouse += window.pageXOffset;
  936. window.removeEventListener('scroll', ascroll, false);
  937. };
  938.  
  939. o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
  940. if (window.addEventListener){
  941. window.addEventListener('load', init, false);
  942. document.addEventListener('mouseover', mouse, false);
  943. document.addEventListener('mousemove', mouse, false);
  944. if (/Apple/.test(navigator.vendor))
  945. window.addEventListener('scroll', ascroll, false);
  946. }
  947. else if (window.attachEvent){
  948. window.attachEvent('onload', init);
  949. document.attachEvent('onmousemove', mouse);
  950. };
  951. })();
  952. </script>
  953. </body>
  954. </html>
Advertisement
Add Comment
Please, Sign In to add comment