Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.155.203
Cant Read [ /etc/named.conf ]
8.1.5
www-data
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
/
var /
www /
crm.oxopackaging.com /
app /
Utils /
[ HOME SHELL ]
Name
Size
Permission
Action
ArraySerializerUtil.php
562
B
-rw-r--r--
DateTimeUtil.php
5.56
KB
-rw-r--r--
FileUtil.php
1.75
KB
-rw-r--r--
Helpers.php
1.56
KB
-rw-r--r--
OpeningHours.php
1.51
KB
-rw-r--r--
ResponseUtil.php
811
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Helpers.php
<?php /** * Created by PhpStorm. * User: Ali Hassan * Date: 1/17/2019 * Time: 1:46 PM */ if (!function_exists('getSlug')) { function getSlug($title, $model) { $slug = str_slug($title); $slugCount = count($model->whereRaw("slug REGEXP '^{$slug}(-[0-9]*)?$'")->get()); return ($slugCount > 0) ? "{$slug}-{$slugCount}" : $slug; } } if (!function_exists('relationalInserts')) { function relationalInserts($objects, $model) { dd($model); } } if (!function_exists('uploadFile')) { function uploadFile($request, $location, $file_field, $file = null) { if (!$file) $file = $request->file($file_field); $extension = $file->guessExtension(); $filename = md5($file->getClientOriginalName() . microtime()) . '.' . $extension; $file->move(public_path($location), $filename); return "$location/$filename"; } } if (!function_exists('activityText')) { function activityText($activity_name , $value_arr) { $activityArr = config('constant.'.$activity_name); //dd($activityArr); $placeHolder = array(); $placeHolderValue = array(); foreach($value_arr as $key => $value){ $placeHolder[] = "%".$key."%"; $placeHolderValue[] = $value; } $activityArr['name'] = str_replace($placeHolder, $placeHolderValue, $activityArr['name']); $activityArr['description'] = str_replace($placeHolder, $placeHolderValue, $activityArr['description']); //dd($activityArr); return $activityArr; } }
Close