Advertisement
BlackmouseID

Script Credit Card Extrap

May 25th, 2016
1,958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.37 KB | None | 0 0
  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  3. <meta name="description" content="Extrap Card Credit Checker Free - Version 1.1" />
  4. <meta name="author" content="[email protected]" />
  5. <title>Extrap Credit Card</title>
  6.  
  7.  
  8.  
  9. </head>
  10. <header>
  11. <div>
  12. <div>
  13. <font size="6" color="white" style="text-shadow: red 0 0 15px;"><b>Extrap Credit Card </b></font>
  14. /><b>
  15. <body>
  16. <style>
  17. @import "http://fonts.googleapis.com/css?family=Play:400,700";
  18.  
  19.  
  20. body {
  21. background: #000000;
  22. line-height: 1;
  23. color: #bbb;
  24. font-family: "CONSOLAS";
  25. font-size: 12px;
  26. //background-color:#080808;
  27. background: url(https://images2.alphacoders.com/545/545916.jpg) no-repeat center center fixed;
  28. background-size: cover;
  29. -webkit-background-size: cover;
  30. -moz-background-size: cover;
  31. -o-background-size: cover;
  32. }
  33. textarea, input, select {
  34. border:0;
  35. BORDER-COLLAPSE:collapse;
  36. border:double 2px #000000;
  37. color:#fff;
  38. background:#000000;
  39. margin:0;
  40. padding:2px 4px;
  41. font-family: Lucida Console,Tahoma;
  42. font-size:12px;
  43. box-shadow: 0 0 15px red;
  44. -webkit-box-shadow: 0 0 15px red;
  45. -moz-box-shadow: 0 0 15px red;
  46. }
  47. .title{
  48. color: #000000;
  49. background: black;
  50. text-align: center;
  51. font-size: 120%;
  52. }
  53. .button{
  54. color:#eee;
  55. }
  56. .tool{
  57. color:gold;
  58. }
  59. header {
  60. font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
  61. font-size: 12px;
  62. text-align: center;
  63. padding-top: 10px;
  64. color: #000000;
  65. }
  66. /* Gradient 1 */
  67. .ta10 {
  68. background-color: transparent;
  69. background-repeat:no-repeat;
  70. background-size: 52% 100%;
  71. background-position: center;
  72. border:2px double red;
  73. padding:3px;
  74. margin-right:4px;
  75. margin-bottom:8px;
  76. font-family: Lucida Console,Tahoma;
  77. font-size:12px;
  78. box-shadow: 0 0 15px red;
  79. -webkit-box-shadow: 0 0 15px red;
  80. -moz-box-shadow: 0 0 15px red;
  81. border: solid 0px transparent; // or border: none;
  82. }
  83. .char {
  84. transition: all 5s; -webkit-transition: all 1s;
  85. opacity: 0.8;
  86. }
  87. .char:hover {
  88. transition: all 0.1s; -webkit-transition: all 0.1s;
  89. opacity:1.5;
  90. text-shadow: 0 0 1em white;
  91. }
  92. .chara:not(.space):hover {
  93. transform: rotateY(1440deg);
  94. -webkit-transform: rotateY(1440deg);
  95. }
  96. .chara:not(.space) {
  97. display: inline-block;
  98. transition: transform 2s ease-out;
  99. -webkit-transition: -webkit-transform 2s ease-out;
  100. }
  101. .submit {
  102. color: #FFFFFF;
  103. background-color: #111111;
  104. cursor:pointer
  105. }
  106.  
  107. @-webkit-keyframes progress {
  108. from { }
  109.  
  110. to { width: 100% }
  111. }
  112.  
  113. @-moz-keyframes progress {
  114. from { }
  115.  
  116. to { width: 100% }
  117. }
  118.  
  119. @-ms-keyframes progress {
  120. from { }
  121.  
  122. to { width: 100% }
  123. }
  124.  
  125. @keyframes progress {
  126. from { }
  127.  
  128. to { width: 100% }
  129. }
  130.  
  131. body,td,th {
  132. color: gold;
  133. }
  134.  
  135. </style>
  136. <script LANGUAGE="JavaScript" type="text/javascript">
  137. <!--------------------------------------------------------
  138. // ---------------------------------------------------------
  139. // JavaScript untuk Extrap Credit Card
  140. // (c) 2000 oleh Olga.Taufani.ST - Modified By ADI WIJAYA
  141. // ---------------------------------------------------------
  142.  
  143. //menghilangkan spasi dan "-" baik di awal, di tengah maupun di akhir string
  144. function trimSpaces(s){
  145. var res;
  146. var i;
  147. res = "";
  148. for (i = 0; i < s.length; i++){
  149. if ((s.charAt(i) != " ") && (s.charAt(i) != "-"))
  150. res += s.charAt(i);
  151. }
  152. return res;
  153. }
  154.  
  155. //mengembalikan benar jika input yang diberikan benar (semuanya angka)
  156. //string dianggap telah dilewatkan ke trimSpaces
  157. function isValidInput(s){
  158. for (i = 0; i < s.length; i++){
  159. var i;
  160. if ((s.charAt(i) < "0") || (s.charAt(i) > "9"))
  161. return false;
  162. }
  163. return true;
  164. }
  165.  
  166. //membatasi angka agar tidak lebih dari 9
  167. function fix(num){
  168. if (num <= 9) return num; else return (num - 9);
  169. }
  170.  
  171. //untuk mengecek kebenaran dengan >> luhn check digit algorithm <<
  172. function check(number){
  173. var i;
  174. var ganjil;
  175. var genap;
  176. var tanda;
  177.  
  178. genap = 0;
  179. ganjil = 0;
  180. //tanda = 1 artinya jumlah digitnya ganjil
  181. if (number.length % 2) tanda = 0; else tanda = 1;
  182. for (i = 0; i < number.length; i++) {
  183. if ((i + tanda) % 2) //ganjil
  184. ganjil += fix(2 * (number.charAt(i)));
  185. else
  186. genap += parseInt(number.charAt(i), 10);
  187. }
  188. return (((ganjil + genap) % 10) == 0);
  189. }
  190.  
  191. //fungsi utama
  192. function validateInput(inp){
  193. var tmp;
  194. var Msg;
  195. var Msg2;
  196. tmp = trimSpaces(inp.nomor.value)
  197. if ((tmp == "") || (!isValidInput(tmp))){
  198. alert("Nomor Kartu yang Anda masukkan TIDAK VALID !!");
  199. return false;
  200. }
  201. Msg = "Kartu ini ";
  202. Msg2 = "";
  203. if (check(tmp))
  204. alert(Msg + "\n\nVALID!!\n\n" + Msg2);
  205. else
  206. alert(Msg + "\n\nTIDAK VALID!!\nCek lagi Nomor Kartunya.\n\n" + Msg2);
  207. return false;
  208. }
  209.  
  210. //mencari beberapa angka valid yang dekat dengan nomor yang diberikan
  211. function findN(formName){
  212. var start;
  213. var startn;
  214. var res;
  215. var i;
  216. var exp;
  217. var cvv;
  218. var delim;
  219.  
  220. expH = trimSpaces(formName.exp.value);
  221. cvvH = trimSpaces(formName.cvv.value);
  222. delimH = trimSpaces(formName.delim.value);
  223. start = trimSpaces(formName.nomor.value);
  224. if ((start == "") || (!isValidInput(start))){
  225. alert("MASUKIN YANG BENER! ^_^");
  226. return;
  227. }
  228. res = "Hasil :\n";
  229. startn = parseInt(start,10);
  230. for (i=-50; i<9000; i++) {
  231. num = "" + (parseInt(start,10)+i);
  232. if (check(num)) {
  233. res += (startn + i) + delimH + expH + delimH + cvvH + "\n";
  234. }
  235. }
  236. formName.hasil.value = res;
  237. }
  238. //
  239. //akhir skrip di sini
  240. //
  241. //------------------------------------------------------->
  242.  
  243.  
  244. </script><b>
  245. <div align="center">
  246. <label for="mailpass" class="control-label"></label><br />
  247. <form name="InpForm" onSubmit="return validateInput(this);"><br>
  248. <center><input style="padding:7px;height:auto;width:135px;margin-bottom:0;border:1px solid #777;" type="TEXT" name="nomor" placeholder="434256499589xxxx">
  249. <input style="padding:7px;height:auto;width:135px;margin-bottom:0;border:1px solid #777;" type="TEXT" name="exp" placeholder="0115">
  250. <input style="padding:7px;height:auto;width:135px;margin-bottom:0;border:1px solid #777;" type="TEXT" name="cvv" placeholder="123">
  251. <input style="padding:7px;height:auto;width:135px;margin-bottom:0;border:1px solid #777;" type="TEXT" disabled="disabled" name="delim" value="|" size="1"><br/>
  252. <input type="BUTTON" class="submit-button" name="buat" onClick="findN(InpForm)" VALUE="Extrap Credit Card"></center>
  253. <p><textarea class="form-control" name="hasil" cols="60" rows="10" ></textarea>
  254. <div id="jumlah" style="display: none;"></div><br></form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement