webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
spatie
/
laravel-sitemap
/
src
/
Crawler
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Observer.php
1.603KB
edt
ren
Profile.php
0.43KB
edt
ren
<?php namespace Spatie\Sitemap\Crawler; use Psr\Http\Message\UriInterface; use Spatie\Crawler\CrawlProfiles\CrawlProfile; class Profile extends CrawlProfile { /** @var callable */ protected $callback; public function shouldCrawlCallback(callable $callback): void { $this->callback = $callback; } public function shouldCrawl(UriInterface $url): bool { return ($this->callback)($url); } }