Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="description" content="Extrap Card Credit Checker Free - Version 1.1" />
- <meta name="author" content="[email protected]" />
- <title>Extrap Credit Card</title>
- </head>
- <header>
- <div>
- <div>
- <font size="6" color="white" style="text-shadow: red 0 0 15px;"><b>Extrap Credit Card </b></font>
- /><b>
- <body>
- <style>
- @import "http://fonts.googleapis.com/css?family=Play:400,700";
- body {
- background: #000000;
- line-height: 1;
- color: #bbb;
- font-family: "CONSOLAS";
- font-size: 12px;
- //background-color:#080808;
- background: url(https://images2.alphacoders.com/545/545916.jpg) no-repeat center center fixed;
- background-size: cover;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- }
- textarea, input, select {
- border:0;
- BORDER-COLLAPSE:collapse;
- border:double 2px #000000;
- color:#fff;
- background:#000000;
- margin:0;
- padding:2px 4px;
- font-family: Lucida Console,Tahoma;
- font-size:12px;
- box-shadow: 0 0 15px red;
- -webkit-box-shadow: 0 0 15px red;
- -moz-box-shadow: 0 0 15px red;
- }
- .title{
- color: #000000;
- background: black;
- text-align: center;
- font-size: 120%;
- }
- .button{
- color:#eee;
- }
- .tool{
- color:gold;
- }
- header {
- font-family: 'Franklin Gothic Medium', 'Franklin Gothic', 'ITC Franklin Gothic', Arial, sans-serif;
- font-size: 12px;
- text-align: center;
- padding-top: 10px;
- color: #000000;
- }
- /* Gradient 1 */
- .ta10 {
- background-color: transparent;
- background-repeat:no-repeat;
- background-size: 52% 100%;
- background-position: center;
- border:2px double red;
- padding:3px;
- margin-right:4px;
- margin-bottom:8px;
- font-family: Lucida Console,Tahoma;
- font-size:12px;
- box-shadow: 0 0 15px red;
- -webkit-box-shadow: 0 0 15px red;
- -moz-box-shadow: 0 0 15px red;
- border: solid 0px transparent; // or border: none;
- }
- .char {
- transition: all 5s; -webkit-transition: all 1s;
- opacity: 0.8;
- }
- .char:hover {
- transition: all 0.1s; -webkit-transition: all 0.1s;
- opacity:1.5;
- text-shadow: 0 0 1em white;
- }
- .chara:not(.space):hover {
- transform: rotateY(1440deg);
- -webkit-transform: rotateY(1440deg);
- }
- .chara:not(.space) {
- display: inline-block;
- transition: transform 2s ease-out;
- -webkit-transition: -webkit-transform 2s ease-out;
- }
- .submit {
- color: #FFFFFF;
- background-color: #111111;
- cursor:pointer
- }
- @-webkit-keyframes progress {
- from { }
- to { width: 100% }
- }
- @-moz-keyframes progress {
- from { }
- to { width: 100% }
- }
- @-ms-keyframes progress {
- from { }
- to { width: 100% }
- }
- @keyframes progress {
- from { }
- to { width: 100% }
- }
- body,td,th {
- color: gold;
- }
- </style>
- <script LANGUAGE="JavaScript" type="text/javascript">
- <!--------------------------------------------------------
- // ---------------------------------------------------------
- // JavaScript untuk Extrap Credit Card
- // (c) 2000 oleh Olga.Taufani.ST - Modified By ADI WIJAYA
- // ---------------------------------------------------------
- //menghilangkan spasi dan "-" baik di awal, di tengah maupun di akhir string
- function trimSpaces(s){
- var res;
- var i;
- res = "";
- for (i = 0; i < s.length; i++){
- if ((s.charAt(i) != " ") && (s.charAt(i) != "-"))
- res += s.charAt(i);
- }
- return res;
- }
- //mengembalikan benar jika input yang diberikan benar (semuanya angka)
- //string dianggap telah dilewatkan ke trimSpaces
- function isValidInput(s){
- for (i = 0; i < s.length; i++){
- var i;
- if ((s.charAt(i) < "0") || (s.charAt(i) > "9"))
- return false;
- }
- return true;
- }
- //membatasi angka agar tidak lebih dari 9
- function fix(num){
- if (num <= 9) return num; else return (num - 9);
- }
- //untuk mengecek kebenaran dengan >> luhn check digit algorithm <<
- function check(number){
- var i;
- var ganjil;
- var genap;
- var tanda;
- genap = 0;
- ganjil = 0;
- //tanda = 1 artinya jumlah digitnya ganjil
- if (number.length % 2) tanda = 0; else tanda = 1;
- for (i = 0; i < number.length; i++) {
- if ((i + tanda) % 2) //ganjil
- ganjil += fix(2 * (number.charAt(i)));
- else
- genap += parseInt(number.charAt(i), 10);
- }
- return (((ganjil + genap) % 10) == 0);
- }
- //fungsi utama
- function validateInput(inp){
- var tmp;
- var Msg;
- var Msg2;
- tmp = trimSpaces(inp.nomor.value)
- if ((tmp == "") || (!isValidInput(tmp))){
- alert("Nomor Kartu yang Anda masukkan TIDAK VALID !!");
- return false;
- }
- Msg = "Kartu ini ";
- Msg2 = "";
- if (check(tmp))
- alert(Msg + "\n\nVALID!!\n\n" + Msg2);
- else
- alert(Msg + "\n\nTIDAK VALID!!\nCek lagi Nomor Kartunya.\n\n" + Msg2);
- return false;
- }
- //mencari beberapa angka valid yang dekat dengan nomor yang diberikan
- function findN(formName){
- var start;
- var startn;
- var res;
- var i;
- var exp;
- var cvv;
- var delim;
- expH = trimSpaces(formName.exp.value);
- cvvH = trimSpaces(formName.cvv.value);
- delimH = trimSpaces(formName.delim.value);
- start = trimSpaces(formName.nomor.value);
- if ((start == "") || (!isValidInput(start))){
- alert("MASUKIN YANG BENER! ^_^");
- return;
- }
- res = "Hasil :\n";
- startn = parseInt(start,10);
- for (i=-50; i<9000; i++) {
- num = "" + (parseInt(start,10)+i);
- if (check(num)) {
- res += (startn + i) + delimH + expH + delimH + cvvH + "\n";
- }
- }
- formName.hasil.value = res;
- }
- //
- //akhir skrip di sini
- //
- //------------------------------------------------------->
- </script><b>
- <div align="center">
- <label for="mailpass" class="control-label"></label><br />
- <form name="InpForm" onSubmit="return validateInput(this);"><br>
- <center><input style="padding:7px;height:auto;width:135px;margin-bottom:0;border:1px solid #777;" type="TEXT" name="nomor" placeholder="434256499589xxxx">
- <input style="padding:7px;height:auto;width:135px;margin-bottom:0;border:1px solid #777;" type="TEXT" name="exp" placeholder="0115">
- <input style="padding:7px;height:auto;width:135px;margin-bottom:0;border:1px solid #777;" type="TEXT" name="cvv" placeholder="123">
- <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/>
- <input type="BUTTON" class="submit-button" name="buat" onClick="findN(InpForm)" VALUE="Extrap Credit Card"></center>
- <p><textarea class="form-control" name="hasil" cols="60" rows="10" ></textarea>
- <div id="jumlah" style="display: none;"></div><br></form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement