-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
351 lines (308 loc) · 10.8 KB
/
index.php
File metadata and controls
351 lines (308 loc) · 10.8 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<?php
session_start();
if(!isset($_SESSION['LANGUAGE']) || !isset($_GET['LANGUAGE']))
{
$_SESSION['LANGUAGE'] = "EN";
require("languages/".$_SESSION['LANGUAGE'].".php");
}
else {
if($_GET['LANGUAGE'] != "EN" && $_GET['LANGUAGE'] != "ES")
{
echo "hahahahahahhahahahhaha Gaaaaary deez nuts";
echo '<meta http-equiv="refresh" content="5; url=index.php?LANGUAGE=EN">';
exit;
}
$_SESSION['LANGUAGE'] = $_GET['LANGUAGE'];
require("languages/".$_SESSION['LANGUAGE'].".php");
}
require_once("database/database.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title><?php echo $indexTitle; ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index,follow" />
<meta name="Category" content="Proxy">
<meta name="description" content="<?php echo $description; ?>">
<meta name="keywords" content="<?php echo $keywords; ?>">
<meta property="og:type" content="Proxy">
<meta property="og:url" content="<?php echo $ogUrl; ?>">
<meta property="og:title" content="<?php echo $indexTitle; ?>">
<meta property="og:description" content="<?php echo $description; ?>">
<meta property="og:image" content="<?php echo $ogImage; ?>">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="<?php echo $ogUrl; ?>">
<meta property="twitter:title" content="<?php echo $indexTitle; ?>">
<meta property="twitter:description" content="<?php echo $description; ?>">
<meta property="twitter:image" content="<?php echo $ogImage; ?>">
<link rel="shortcut icon" href="images/favicon.png">
<link rel="stylesheet" href="css/libs.css">
<script src="js/jquery.js"></script>
<script src="js/libs.js"></script>
<?php @include('analytics/index.php'); ?>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Website",
"url": "https://proxyapi.org",
"name": "Proxy Checker - Online Proxy Checker"
}
</script>
<?php
require_once("functions/indexFunction.php");
?>
</head>
<body>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="vertical-alignment-helper">
<div class="modal-dialog vertical-align-center">
<div class="modal-content">
<div class="modal-header">
</button>
<h4 class="modal-title" id="modalTitle" style='text-align:center;'>Modal title</h4>
</div>
<div class="modal-body" id="modalMessage" style='text-align:center;'>here the message</div>
<div class="modal-footer" style="text-align:center;">
<button type="button" class="btn btn-primary" id="closeModal">Save changes</button>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper">
<header class="header">
<div class="container">
<div class="row">
<div class="main-logo col-xs-12 col-md-3 col-md-2 col-lg-2 hidden-xs">
<a href="">
<img class="img-responsive" src="images/Proxy-Checker-Logo.png" alt="Proxy-Checker-Logo" title="Proxy-Checker-Logo" width="50px">
</a>
</div>
<div class="col-md-3 col-lg-10">
<ul class="unstyled user">
<?php
if(isset($_SESSION['username']))
{
echo '<li class="sign-in"><a href="Dashboard" class="btn btn-primary"><i class="fa fa-user"> </i> '.$islogged.'</a></li>';
echo '<li class="sign-up"><a href="Logout" class="btn btn-primary"><i class="fa fa-user-plus"> </i> '.$islogged2.'</a></li>';
}else {
echo '<li class="sign-in"><a href="Login" class="btn btn-primary"><i class="fa fa-user"> </i> '.$head1.'</a></li>';
echo '<li class="sign-up"><a href="Signup" class="btn btn-primary"><i class="fa fa-user-plus"> </i> '.$head2.'</a></li>';
}
?>
</ul>
</div>
</div>
</div>
<nav class="site-navigation navigation" id="site-navigation">
<div class="container">
<div class="site-nav-inner">
<a class="logo-mobile" href="index.php">
<img class="img-responsive" src="images/Proxy-Checker-Logo.png" alt="Proxy-Checker-Logo">
</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href=""><?php echo $head3;?></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo $head4;?> <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="http://proxylistfree.net"><?php echo $head4SubHeading1;?></a></li>
</ul>
</li>
<li><a href="ProxyCheckerApi"><?php echo $head5;?></a></li>
<li><a href="Support"><?php echo $head6;?></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo $head7;?> <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="EN"><?php echo $head8;?></a></li>
<li><a href="ES"><?php echo $head9;?></a></li>
</ul>
</li>
<span class="fa fa-desktop" style="font-weight:bold;"> <?php echo $head10;?>: <?= $_SERVER['REMOTE_ADDR'];?></span>
</ul>
</div>
</div>
</div>
</nav>
</header>
<div id="main-slide" >
<div class="carousel-inner" >
<div class="item active bg-parallax item-1">
<div class="slider-content">
<div class="container" style="position:relative; bottom:20px;">
<div class="col-sm-12">
<div class="form-group">
<label for="mailpass" class="control-label">
<span style="font-weight: bold;"><?php echo $mainProxyChecker1;?>: (<span style="color:red;"><?php echo $mainProxyChecker2;?></span><span style="font-weight: bold;">)</span></label>
<div>
<textarea id="IPValue" class="form-control" rows="11" placeholder="127.0.0.1:8080" style="resize: none; background-color:#78AF9F; border-color:orange"></textarea>
<div class="slider-text text-center"><button id="startChecking" class="slider btn btn-primary"><?php echo $mainProxyChecker3;?></button></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="about-us">
<div class="container" id="aboutUS">
<div class="row text-center">
<h1 class="title-head Proxy-Checker-Heading" itemprop="name"><span><?php echo $aboutProxyChecker1; ?></span></h1>
<div class="title-head-subtitle">
<p><?php echo $aboutProxyChecker2; ?></p>
</div>
</div>
<div class="row about-content">
<div class="col-sm-12 col-md-5 col-lg-6 text-center">
<img class="img-responsive img-about-us" src="images/Proxy-Checker.png" alt="Proxy-Checker" title="Proxy Checker">
</div>
<div class="col-sm-12 col-md-7 col-lg-6">
<h3 class="title-about"><?php echo $aboutProxyChecker3; ?></h3>
<?php echo $middelDescriptipn; ?>
<br />
<a class="btn btn-primary" href="" id="goTop"><?php echo $aboutProxyChecker4; ?></a>
</div>
</div>
</div>
<div class="container" id="proxyCheckerResult" style="margin-top: 60px;" hidden="hidden">
<span style="font-weight:bold;">Checking progress: (<span id="checkingProgressText">0</span>/<span id="totalCountText">0</span>) <img src="images/checkingIcon.gif" alt="Proxy-Checker" title="Proxy Checker"> </span><a href="#" style="margin-left: 60%;" id="copyAllResults"><?php echo $resultProxy4; ?></a><br/>
<table class="table table-bordered" style="background-color:#343234;">
<thead>
<tr>
<th scope="col" style="width: 10%; text-align:center;">#</th>
<th scope="col" style="width: 40%; text-align:center;"><?php echo $resultProxy1; ?></th>
<th scope="col" style="width: 25%; text-align:center;"><?php echo $resultProxy2; ?></th>
<th scope="col" style="width: 25%; text-align:center;"><?php echo $resultProxy3; ?></th>
</tr>
</thead>
<tbody id="proxyResultDisplay">
</tbody>
</table>
</div>
</section>
</div>
</div>
</section>
<section class="call-action-all">
<div class="call-action-all-overlay">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="action-text">
<h2><?php echo $proxyAPI1; ?></h2>
<p class="lead"><?php echo $proxyAPI2; ?></p>
</div>
<p class="action-btn"><a class="btn btn-primary" href="ProxyCheckerApi"><?php echo $proxyAPI3; ?></a></p>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="top-footer">
<div class="container">
<div class="row">
<div class="col-sm-4 col-md-2">
<h4><?php echo $footer1; ?></h4>
<div class="menu">
<ul>
<li><a href=""><?php echo $footer2; ?></a></li>
<li><a href="http://proxylistfree.net"><?php echo $footer3; ?></a></li>
<?php
if(isset($_SESSION['username']))
{
echo '<li><a href="Dashboard">'.$islogged.'</a></li>';
echo '<li><a href="Logout">'.$islogged2.'</a></li>';
}else {
echo '<li><a href="Login">'.$footer4.'</a></li>';
echo '<li><a href="Signup">'.$footer5.'</a></li>';
}
?>
</ul>
</div>
</div>
<div class="col-sm-4 col-md-2">
<h4><?php echo $footer6; ?></h4>
<div class="menu">
<ul>
<li><a href="Support"><?php echo $footer7; ?></a></li>
<li><a href="ProxyCheckerApi"><?php echo $footer8; ?></a></li>
<li><a href="ProxyCheckerFAQ"><?php echo $footer9; ?></a></li>
<li><a href="DataPrivacy"><?php echo $footer10; ?></a></li>
<li><a href="TermsOfService"><?php echo $footer11; ?></a></li>
</ul>
</div>
</div>
<div class="col-sm-4 col-md-3">
<h4><?php echo $footer12; ?></h4>
<div class="contacts">
<div class="menu">
<ul>
<li><a href="EN"><?php echo $head8;?></a></li>
<li><a href="ES"><?php echo $head9;?></a></li>
</ul>
</div>
</div>
<div class="social-footer">
<ul>
<li><a href="https://www.facebook.com/Cod3rMax" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/Cod3rMax" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://t.me/Cod3rAPI" target="_blank"><i class="fa fa-telegram"></i></a></li>
<li><a href="https://instagram.com/dzwxx" target="_blank"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-12 col-md-5">
<div class="facts-footer">
<div>
<h5>832</h5>
<span><?php echo $footer13; ?></span>
</div>
<div>
<h5>3K</h5>
<span><?php echo $footer14; ?></span>
</div>
<div>
<h5>398</h5>
<span><?php echo $footer15; ?></span>
</div>
<div>
<h5>195</h5>
<span><?php echo $footer16; ?></span>
</div>
</div>
<hr>
<div class="payment-logos">
<h4 class="payment-title"><?php echo $footer17; ?></h4>
<img src="images/icons/payment/american-express.png" alt="american-express">
<img src="images/icons/payment/mastercard.png" alt="mastercard">
<img src="images/icons/payment/visa.png" alt="visa">
<img src="images/icons/payment/paypal.png" alt="paypal">
<img class="last" src="images/icons/payment/maestro.png" style="width:43px; height:43px;" alt="bitcoin">
</div>
</div>
</div>
</div>
</div>
<div class="bottom-footer">
<div class="container">
<div class="row">
<div class="col-xs-12">
<p class="text-center"><?php echo $footer18; ?> <a href="http://cod3rmax.com" target="_blank">Cod3rMax</a></p>
</div>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>