-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.php
More file actions
17 lines (17 loc) · 686 Bytes
/
run.php
File metadata and controls
17 lines (17 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
require "./cc.class.php";
echo ("###############################################\n");
echo ("# Auto Generate + Checker CC Extrap #\n");
echo ("###############################################\n");
echo ("# Create By : Kyoo #\n");
echo ("# Languange : PHP #\n");
echo ("# Special Thanks : Mari Partner #\n");
echo ("###############################################\n");
echo "[+] BIN : ";
$bin = trim(fgets(STDIN));
echo "[+] Check Status Valid ? 1/0 : ";
$check = trim(fgets(STDIN));
echo "[+] Amount/Jumlah : ";
$amount = trim(fgets(STDIN));
$new = new CC($bin, $check, $amount);
echo $new->Execute();