-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.php
174 lines (159 loc) · 5.88 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
session_start();
error_reporting(0);
// Array of Linkvertise URLs
$redirectLinks = [
"", // LinkVer1
"", // LinkVer2
"", // LinkVer3
"", // LinkVer4
"", // LinkVer5
];
$stepDelay = 5; // delay between links in seconds
// Initialize session variables if not already set
if (!isset($_SESSION['current_step'])) {
$_SESSION['current_step'] = 0;
$_SESSION['step_time'] = time();
}
$currentStep = $_SESSION['current_step'];
// If we haven't gone through all the steps, show the waiting/redirect page
if ($currentStep < count($redirectLinks)) {
$elapsed = time() - $_SESSION['step_time'];
if ($elapsed < $stepDelay) {
// Show redirect page with a meta refresh after 5 seconds
displayRedirectPage($currentStep, $redirectLinks[$currentStep], $stepDelay - $elapsed);
exit;
} else {
// Time has elapsed; move to the next step
$_SESSION['current_step']++;
$_SESSION['step_time'] = time();
header("Location: " . $redirectLinks[$currentStep]);
exit;
}
}
// Once all steps are completed, generate the license key.
$licenseResponse = genLicense();
$licenseData = json_decode($licenseResponse);
if (!$licenseData || !$licenseData->success) {
die("Error: " . ($licenseData->message ?? "Unknown error"));
}
session_unset();
session_destroy();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KeyAuth Linkvertise Example</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css">
<link rel="stylesheet" href="MainDesign.css">
</head>
<body>
<div class="keysyscontainer">
<div class="box">
<center><span class="title">KeyAuth - Enjoy your license!</span></center>
<span class="text">
Thanks for going through this Linkvertise system!<br>
Here is your Key / License: <span class="bold smool"><?php echo htmlspecialchars($licenseData->key); ?></span>
</span>
<button onclick="copyToClipboard()" class="button Copy">Copy Key</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js"></script>
<script>
function copyToClipboard() {
const key = "<?php echo htmlspecialchars($licenseData->key); ?>";
const tempInput = document.createElement('input');
tempInput.style.position = 'absolute';
tempInput.style.left = '-1000px';
tempInput.style.top = '-1000px';
tempInput.value = key;
document.body.appendChild(tempInput);
tempInput.select();
document.execCommand('copy');
document.body.removeChild(tempInput);
const notyf = new Notyf();
notyf.success({
message: "Successfully copied key to clipboard!",
duration: 3500,
dismissible: true
});
}
</script>
</body>
</html>
<?php
// Function to display the redirect page for each step.
function displayRedirectPage($step, $redirectUrl, $secondsLeft) {
$stepNumber = $step + 1;
$totalSteps = 5;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KeyAuth Linkvertise Example</title>
<link rel="stylesheet" href="MainDesign.css">
<!-- Refresh in 5 seconds or the remaining time -->
<meta http-equiv="refresh" content="<?php echo min(5, $secondsLeft); ?>; url=<?php echo $redirectUrl; ?>">
</head>
<body>
<div class="keysyscontainer">
<div class="box">
<center>
<span class="title">KeyAuth <span class="smool"><?php echo $stepNumber; ?>/<?php echo $totalSteps; ?></span></span>
</center>
<span class="text">
You will have to go through <?php echo $totalSteps; ?> Linkvertise pages. The key will last around 10 minutes.
<span class="bold">Redirecting in <?php echo min(5, $secondsLeft); ?> seconds...</span>
</span>
<span class="text">
Although advertisements are not fun, going through these will help support the app's creators.
</span>
</div>
</div>
</body>
</html>
<?php
}
// Function to generate the license key using cURL
function genLicense() {
// Configuration
$sellerKey = ""; // Your KeyAuth Seller Key - DON'T SHARE IT!
$keyMask = "*****-*****-*****-*****-*****"; // * = random characters
$format = "JSON";
$expiry = "1"; // Expiry in days
$level = "1"; // License level
$amount = "1"; // Number of licenses to generate
$owner = "Username"; // Owner of the license
$character = "1"; // 1 = upper/lowercase, 2 = uppercase, 3 = lowercase
$note = "Cool note"; // Optional note
// Build the URL with all parameters
$url = "https://keyauth.win/api/seller/?sellerkey=" . urlencode($sellerKey)
. "&type=add"
. "&expiry=" . urlencode($expiry)
. "&mask=" . urlencode($keyMask)
. "&level=" . urlencode($level)
. "&amount=" . urlencode($amount)
. "&format=" . urlencode($format)
. "&owner=" . urlencode($owner)
. "&character=" . urlencode($character)
. "¬e=" . urlencode($note);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
$result = curl_exec($ch);
if (curl_errno($ch)) {
$error_msg = curl_error($ch);
curl_close($ch);
die("cURL Error: " . $error_msg);
}
curl_close($ch);
return $result;
}
?>