Advertisement
doaemak56

Review Script

Mar 4th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.43 KB | None | 0 0
  1. <html><head>
  2. <link rel="SHORTCUT ICON" href="http://i48.servimg.com/u/f48/16/08/07/74/indone10.gif">
  3. <embed src="https://www.youtube.com/v/2VOB0i7m518&autoplay=1" type="application/x-shockwave-flash"
  4. wmode=transparent width=1 height=1>
  5. <style type="text/css">
  6.  
  7. img{opacity: 0.5;-webkit-transition: all 250ms ease;-moz-transition: all 250ms ease;-o-transition: all 250ms ease;transition: all 250ms ease;}
  8.  
  9. img:hover{opacity:1;}
  10.  
  11. textarea{resize:none;}
  12.  
  13. </style>
  14.  
  15. <title>Pwnz You!!!</title><style id="wrc-middle-css" type="text/css">.wrc_whole_window{ display: none; position: fixed; z-index: 2147483647; background-color: rgba(40, 40, 40, 0.9); word-spacing: normal; margin: 0px; padding: 0px; border: 0px; left: 0px; top: 0px; width: 100%; height: 100%; line-height: normal; letter-spacing: normal;}.wrc_middle_main { font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; font-size: 14px; width: 600px; height: auto; margin: 0px auto; margin-top: 15%; background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-body.jpg) repeat-x left top; background-color: rgb(39, 53, 62);}.wrc_middle_logo { background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/logo.jpg) no-repeat left bottom; width: 140px; height: 42px; color: orange; display: table-cell; text-align: right; vertical-align: middle;}.wrc_icon_warning { margin: 20px 10px 20px 15px; float: left; background-color: transparent;}.wrc_middle_title { color: #b6bec7; height: auto; margin: 0px auto; font-size: 2.2em; white-space: nowrap; text-align: center;}.wrc_middle_hline { height: 2px; width: 100%; display: block;}.wrc_middle_description { text-align: center; margin: 15px; font-size: 1.4em; padding: 20px; height: auto; color: white; min-height: 3.5em;}.wrc_middle_actions_main_div { margin-bottom: 15px; text-align: center;}.wrc_middle_actions_blue_button { -moz-appearance: none; border-radius: 7px; -moz-border-radius: 7px/7px; border-radius: 7px/7px; background-
  16. : rgb(0, 173, 223) !important; display: inline-block; width: auto; cursor: Pointer; border: 2px solid #00dddd;}.wrc_middle_actions_blue_button:hover { background-color: rgb(0, 159, 212) !important;}.wrc_middle_actions_blue_button:active { background-color: rgb(0, 146, 200) !important; border: 2px solid #00aaaa;}.wrc_middle_actions_blue_button div { display: inline-block; width: auto; cursor: Pointer; margin: 3px 10px 3px 10px; color: white; font-size: 1.2em; font-weight: bold;}.wrc_middle_action_low { font-size: 0.9em; white-space: nowrap; cursor: Pointer; color: grey !important; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action_low:hover { color: #aa4400 !important;}.wrc_middle_actions_rest_div { padding-top: 5px; white-space: nowrap; text-align: center;}.wrc_middle_action { white-space: nowrap; cursor: Pointer; color: red !important; font-size: 1.2em; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action:hover { color: #aa4400 !important;}</style><script id="wrc-script-middle_window" type="text/javascript" language="JavaScript">var g_inputsCnt = 0;var g_InputThis = new Array(null, null, null, null);var g_alerted = false;/* we test the input if it includes 4 digits (input is a part of 4 inputs for filling the credit-card number)*/function is4DigitsCardNumber(val){ var regExp = new RegExp('[0-9]{4}'); return (val.length == 4 && val.search(regExp) == 0);}/* testing the whole credit-card number 19 digits devided by three '-' symbols or exactly 16 digits without any dividers*/function isCreditCardNumber(val){ if(val.length == 19) { var regExp = new RegExp('[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}'); return (val.search(regExp) == 0); } else if(val.length == 16) {
  17. ar regExp = new RegExp('[0-9]{4}[0-9]{4}[0-9]{4}[0-9]{4}'); return (val.search(regExp) == 0); } return false;}function CheckInputOnCreditNumber(self){ if(g_alerted) return false; var value = self.value; if(self.type == 'text') { if(is4DigitsCardNumber(value)) { var cont = true; for(i = 0; i < g_inputsCnt; i++) if(g_InputThis[i] == self) cont = false; if(cont && g_inputsCnt < 4) { g_InputThis[g_inputsCnt] = self; g_inputsCnt++; } } g_alerted = (g_inputsCnt == 4); if(g_alerted) g_inputsCnt = 0; else g_alerted = isCreditCardNumber(value); } return g_alerted;}function CheckInputOnPassword(self){ if(g_alerted) return false; var value = self.value; if(self.type == 'password') { g_alerted = (value.length > 0); } return g_alerted;}function onInputBlur(self, bRatingOk, bFishingSite){ var bCreditNumber = CheckInputOnCreditNumber(self); var bPassword = CheckInputOnPassword(self); if((!bRatingOk || bFishingSite == 1) && (bCreditNumber || bPassword) ) { var warnDiv = document.getElementById("wrcinputdiv"); if(warnDiv) { /* show the warning div in the middle of the screen */ warnDiv.style.left = "0px"; warnDiv.style.top = "0px"; warnDiv.style.width = "100%"; warnDiv.style.height = "100%"; document.getElementById("wrc_warn_fs").style.display = 'none'; document.getElementById("wrc_warn_cn").style.display = 'none'; if(bFishingSite) document.getElementById("wrc_warn_fs").style.display = 'block'; else document.getElementById("wrc_warn_cn").style.display = 'block'; warnDiv.style.display = 'block'; } }}</script></head>
  18. <body background="http://oi63.tinypic.com/2aet7w4.jpg" onLoad="type_text()" ;="" bgcolor="black" text="#4d5e49">
  19.  
  20.  
  21. <center>
  22. <div align="center">
  23. <font face="courier new"><font size="7" color="White">Kissed By./JWFI</font></font>
  24. <font face="Arial Black" color="#FFFFFF"> </font>
  25. <div align="center"></div>
  26. <center> <div id="matrix">&nbsp;</div>
  27. </center>
  28.  
  29. <style type="text/css">
  30. .matrix { font-family: Lucida Console, Courier, Monotype; font-size:14pt; text-align:center; width:15px; padding:0px; margin:0px;}
  31. </style>
  32.  
  33. <div style="width: 1000px;height: 60px;" align="center">
  34.  
  35.  
  36.  
  37.  
  38.  
  39. <script language="Javascript">
  40.  
  41. <!--
  42.  
  43. var tl=new Array(
  44.  
  45. "",
  46.  
  47.  
  48.  
  49. "",
  50.  
  51. " ! Message For Admin ! ",
  52.  
  53.  
  54.  
  55.  
  56.  
  57. " ",
  58.  
  59.  
  60.  
  61.  
  62. " Hey Admin ........ ",
  63.  
  64. " ",
  65.  
  66.  
  67. " Don't Panic ...... ",
  68.  
  69. " ",
  70.  
  71.  
  72. " I'm Just Test You'r Security",
  73.  
  74. " ",
  75.  
  76.  
  77. " Please Patch You'r Security System ",
  78.  
  79. " ",
  80.  
  81.  
  82. " Or Contact Me = Andikakartomi@muslim.com",
  83.  
  84. " ",
  85.  
  86.  
  87. " We Are Jannina Weigel Fans Indonesian ",
  88.  
  89. " ",
  90.  
  91. " Thanks To : | Bekasi Hacker Team | Bekasi X Code | Bekasi Carder Link | All Fans Jannine parawie Weigel |",
  92. " ",
  93. " [#] Kissed By ./JWFI [#]",
  94.  
  95.  
  96. ""
  97.  
  98. );
  99.  
  100. var speed=80;
  101.  
  102. var index=0; text_pos=0;
  103.  
  104. var str_length=tl[0].length;
  105.  
  106. var contents, row;
  107.  
  108.  
  109.  
  110. function type_text()
  111.  
  112. {
  113.  
  114. contents='';
  115.  
  116. row=Math.max(0,index-20);
  117.  
  118. while(row<index)
  119.  
  120. contents += tl[row++] + '\r\n';
  121.  
  122. document.forms[0].elements[0].value = contents + tl[index].substring(0,text_pos) + "|";
  123.  
  124. if(text_pos++==str_length)
  125.  
  126. {
  127.  
  128. text_pos=0;
  129.  
  130. index++;
  131.  
  132. if(index!=tl.length)
  133.  
  134. {
  135.  
  136. str_length=tl[index].length;
  137.  
  138. setTimeout("type_text()",200);
  139.  
  140. }
  141.  
  142. } else
  143.  
  144. setTimeout("type_text()",speed);
  145.  
  146. }
  147.  
  148. //-->
  149.  
  150. </script>
  151.  
  152.  
  153.  
  154. <p align="center">
  155.  
  156. </p><form><textarea style="background-color:#000000;color:red;" name="about" readonly="readonly" rows="30" cols="125" wrap="soft">
  157.  
  158. </script>
  159. <b><div id="textDestination" style="background-color: #000000; style=" font-size: 50px; font: 50px arial; color: #FF0000; margin: 0px;"></div></b>
  160.  
  161. <script language="JavaScript">
  162. javascript:startTyping(text, 50, "textDestination");
  163. </script></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement